# opengauss_exporter **Repository Path**: kixiong/opengauss_exporter ## Basic Information - **Project Name**: opengauss_exporter - **Description**: Prometheus exporter for openGauss server metrics. - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 6 - **Created**: 2021-03-02 - **Last Updated**: 2022-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # openGauss Server Exporter Prometheus exporter for openGauss server metrics. ## Limit - openGauss Password authentication method must be md5 ## Quick Start This package is available for Docker: ``` # Start an example database docker run --net=host -it --rm -e GS_PASSWOR=password enmotech/opengauss # Connect to it docker run --net=host -e DATA_SOURCE_NAME="postgresql://postgres:password@localhost:5432/postgres?sslmode=disable" mogdb/opengauss_exporter ``` ## Building and running ### github The default make file behavior is to build the binary: ``` $ go get github.com/enmotech/opengauss_exporter $ cd ${GOPATH-$HOME/go}/src/github.com/enmotech/opengauss_exporter $ make build $ export DATA_SOURCE_NAME="postgresql://login:password@hostname:port/dbname" $ ./bin/opengauss_exporter ``` ### gitee The default make file behavior is to build the binary: ``` $ go get gitee.com/enmotech/opengauss_exporter $ cd ${GOPATH-$HOME/go}/src/gitee.com/enmotech/opengauss_exporter $ make build $ export DATA_SOURCE_NAME="postgresql://login:password@hostname:port/dbname" $ ./bin/opengauss_exporter ``` To build the docker, run `make docker`. ### Flags * `help` Show context-sensitive help (also try --help-long and --help-man). * `web.listen-address` Address to listen on for web interface and telemetry. Default is `:9187`. * `web.telemetry-path` Path under which to expose metrics. Default is `/metrics`. * `disable-settings-metrics` Use the flag if you don't want to scrape `pg_settings`. * `auto-discover-databases` Whether to discover the databases on a server dynamically. * `config` Path to a YAML file containing queries to run. Check out [`og_exporter.yaml`](og_exporter_default.yaml) for examples of the format. * `--dry-run` Do not run - print the internal representation of the metric maps. Useful when debugging a custom queries file. * `constantLabels` Labels to set in all metrics. A list of `label=value` pairs, separated by commas. * `version` Show application version. * `exclude-databases` A list of databases to remove when autoDiscoverDatabases is enabled. * `log.level` Set logging level: one of `debug`, `info`, `warn`, `error`, `fatal` * `log.format` Set the log output target and format. e.g. `logger:syslog?appname=bob&local=7` or `logger:stdout?json=true` Defaults to `logger:stderr`. ### Environment Variables The following environment variables configure the exporter: * `DATA_SOURCE_NAME` `PG_EXPORTER_URL` the default legacy format. Accepts URI form and key=value form arguments. The URI may contain the username and password to connect with. * `OG_EXPORTER_WEB_LISTEN_ADDRESS` Address to listen on for web interface and telemetry. Default is `:9187`. * `OG_EXPORTER_WEB_TELEMETRY_PATH` Path under which to expose metrics. Default is `/metrics`. * `OG_EXPORTER_DISABLE_SETTINGS_METRICS` Use the flag if you don't want to scrape `pg_settings`. Value can be `true` or `false`. Default is `false`. * `OG_EXPORTER_AUTO_DISCOVER_DATABASES` Whether to discover the databases on a server dynamically. Value can be `true` or `false`. Default is `false`. * `OG_EXPORTER_CONSTANT_LABELS` Labels to set in all metrics. A list of `label=value` pairs, separated by commas. * `OG_EXPORTER_EXCLUDE_DATABASES` A comma-separated list of databases to remove when autoDiscoverDatabases is enabled. Default is empty string. Settings set by environment variables starting with `OG_` will be overwritten by the corresponding CLI flag if given. ### Setting the openGauss server's data source name The openGauss server's [data source name](http://en.wikipedia.org/wiki/Data_source_name) must be set via the `DATA_SOURCE_NAME` environment variable. For running it locally on a default Debian/Ubuntu install, this will work (transpose to init script as appropriate): DATA_SOURCE_NAME="user=postgres host=/var/run/postgresql/ sslmode=disable" opengauss_exporter Also, you can set a list of sources to scrape different instances from the one exporter setup. Just define a comma separated string. DATA_SOURCE_NAME="port=5432,port=6432" opengauss_exporter See the [github.com/lib/pq](http://github.com/lib/pq) module for other ways to format the connection string. ### Adding new metrics via a config file The --config command-line argument specifies a YAML file containing additional queries to run. Some examples are provided in [og_exporter.yaml](og_exporter_default.yaml). ### Automatically discover databases To scrape metrics from all databases on a database server, the database DSN's can be dynamically discovered via the `--auto-discover-databases` flag. When true, `SELECT datname FROM pg_database WHERE datallowconn = true AND datistemplate = false and datname != current_database()` is run for all configured DSN's. From the result a new set of DSN's is created for which the metrics are scraped. In addition, the option `--exclude-databases` adds the possibily to filter the result from the auto discovery to discard databases you do not need. ### run test ```shell make build cd test;sh test.sh ../bin/opengauss_exporter ```