Giter Site home page Giter Site logo

Comments (4)

shawbruno avatar shawbruno commented on May 23, 2024

Hey how to install sql_Exporter in linux , i can't install in linux with command in readme.. do u like help me ?

from sql_exporter.

tangxiaoran avatar tangxiaoran commented on May 23, 2024

from sql_exporter.

shawbruno avatar shawbruno commented on May 23, 2024

i receive that of line command :

go build github.com/Corundex/database_exporter
can't load package: package github.com/Corundex/database_exporter: cannot find package "github.com/Corundex/database_exporter" in any of:
/usr/lib/go-1.10/src/github.com/Corundex/database_exporter (from $GOROOT)
/home/ana-aeroportos/go/src/github.com/Corundex/database_exporter (from $GOPATH)

from sql_exporter.

free avatar free commented on May 23, 2024

@shawbruno, please do not hijack threads, I've tried to answer your issue directly.

@tangxiaoran, the answer to your question is in the error message: "value_label must be defined for metric with multiple values".

As is, you would get one oracle_tablespace_detail{tablespace_name="foo",autoextend="bar"} value (with no extra label) for each of free, usage and total. I.e. 3 instances of the exact same metric. You need a type (or something) label with the value label set to free/usage/total in order to differentiate between the three. E.g.

oracle_tablespace_detail{tablespace_name="foo",autoextend="bar",type="free"} 1
oracle_tablespace_detail{tablespace_name="foo",autoextend="bar",type="usage"} 2
oracle_tablespace_detail{tablespace_name="foo",autoextend="bar",type="total"} 3

But you need to tell SQL Exporter what name to use for that label, which is where the value_label comes in. See for example the mssql_io_stall_seconds metric in mssql_standard.collector.yml. So you would need to rewrite your config to something like this instead (you can use something more informative instead of "type"):

 - metric_name: oracle_tablespace_detail
    type: gauge
    help: 'oracle_tablespace_detail.'
    value_label: type
    values:
      - free
      - usage
      - total
    key_labels:
      - tablespace_name
      - autoextend
    query: |
        [...]

from sql_exporter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.