mirror of
https://github.com/prometheus-community/postgres_exporter
synced 2025-04-04 23:29:30 +00:00
Merge pull request #499 from weastur/allow_databases_param
Add ability to set allow DBs list
This commit is contained in:
commit
c51a28f5f0
10
README.md
10
README.md
@ -73,6 +73,9 @@ This will build the docker image as `prometheuscommunity/postgres_exporter:${bra
|
|||||||
* `exclude-databases`
|
* `exclude-databases`
|
||||||
A list of databases to remove when autoDiscoverDatabases is enabled.
|
A list of databases to remove when autoDiscoverDatabases is enabled.
|
||||||
|
|
||||||
|
* `include-databases`
|
||||||
|
A list of databases to only include when autoDiscoverDatabases is enabled.
|
||||||
|
|
||||||
* `log.level`
|
* `log.level`
|
||||||
Set logging level: one of `debug`, `info`, `warn`, `error`.
|
Set logging level: one of `debug`, `info`, `warn`, `error`.
|
||||||
|
|
||||||
@ -138,6 +141,10 @@ The following environment variables configure the exporter:
|
|||||||
* `PG_EXPORTER_EXCLUDE_DATABASES`
|
* `PG_EXPORTER_EXCLUDE_DATABASES`
|
||||||
A comma-separated list of databases to remove when autoDiscoverDatabases is enabled. Default is empty string.
|
A comma-separated list of databases to remove when autoDiscoverDatabases is enabled. Default is empty string.
|
||||||
|
|
||||||
|
* `PG_EXPORTER_INCLUDE_DATABASES`
|
||||||
|
A comma-separated list of databases to only include when autoDiscoverDatabases is enabled. Default is empty string,
|
||||||
|
means allow all.
|
||||||
|
|
||||||
* `PG_EXPORTER_METRIC_PREFIX`
|
* `PG_EXPORTER_METRIC_PREFIX`
|
||||||
A prefix to use for each of the default metrics exported by postgres-exporter. Default is `pg`
|
A prefix to use for each of the default metrics exported by postgres-exporter. Default is `pg`
|
||||||
|
|
||||||
@ -191,6 +198,9 @@ 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.
|
In addition, the option `--exclude-databases` adds the possibily to filter the result from the auto discovery to discard databases you do not need.
|
||||||
|
|
||||||
|
If you want to include only subset of databases, you can use option `--include-databases`. Exporter still makes request to
|
||||||
|
`pg_database` table, but do scrape from only if database is in include list.
|
||||||
|
|
||||||
### Running as non-superuser
|
### Running as non-superuser
|
||||||
|
|
||||||
To be able to collect metrics from `pg_stat_activity` and `pg_stat_replication`
|
To be able to collect metrics from `pg_stat_activity` and `pg_stat_replication`
|
||||||
|
@ -55,6 +55,7 @@ var (
|
|||||||
onlyDumpMaps = kingpin.Flag("dumpmaps", "Do not run, simply dump the maps.").Bool()
|
onlyDumpMaps = kingpin.Flag("dumpmaps", "Do not run, simply dump the maps.").Bool()
|
||||||
constantLabelsList = kingpin.Flag("constantLabels", "A list of label=value separated by comma(,).").Default("").Envar("PG_EXPORTER_CONSTANT_LABELS").String()
|
constantLabelsList = kingpin.Flag("constantLabels", "A list of label=value separated by comma(,).").Default("").Envar("PG_EXPORTER_CONSTANT_LABELS").String()
|
||||||
excludeDatabases = kingpin.Flag("exclude-databases", "A list of databases to remove when autoDiscoverDatabases is enabled").Default("").Envar("PG_EXPORTER_EXCLUDE_DATABASES").String()
|
excludeDatabases = kingpin.Flag("exclude-databases", "A list of databases to remove when autoDiscoverDatabases is enabled").Default("").Envar("PG_EXPORTER_EXCLUDE_DATABASES").String()
|
||||||
|
includeDatabases = kingpin.Flag("include-databases", "A list of databases to include when autoDiscoverDatabases is enabled").Default("").Envar("PG_EXPORTER_INCLUDE_DATABASES").String()
|
||||||
metricPrefix = kingpin.Flag("metric-prefix", "A metric prefix can be used to have non-default (not \"pg\") prefixes for each of the metrics").Default("pg").Envar("PG_EXPORTER_METRIC_PREFIX").String()
|
metricPrefix = kingpin.Flag("metric-prefix", "A metric prefix can be used to have non-default (not \"pg\") prefixes for each of the metrics").Default("pg").Envar("PG_EXPORTER_METRIC_PREFIX").String()
|
||||||
logger = log.NewNopLogger()
|
logger = log.NewNopLogger()
|
||||||
)
|
)
|
||||||
@ -1099,6 +1100,7 @@ type Exporter struct {
|
|||||||
disableDefaultMetrics, disableSettingsMetrics, autoDiscoverDatabases bool
|
disableDefaultMetrics, disableSettingsMetrics, autoDiscoverDatabases bool
|
||||||
|
|
||||||
excludeDatabases []string
|
excludeDatabases []string
|
||||||
|
includeDatabases []string
|
||||||
dsn []string
|
dsn []string
|
||||||
userQueriesPath string
|
userQueriesPath string
|
||||||
constantLabels prometheus.Labels
|
constantLabels prometheus.Labels
|
||||||
@ -1144,6 +1146,13 @@ func ExcludeDatabases(s string) ExporterOpt {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IncludeDatabases allows to filter result from AutoDiscoverDatabases
|
||||||
|
func IncludeDatabases(s string) ExporterOpt {
|
||||||
|
return func(e *Exporter) {
|
||||||
|
e.includeDatabases = strings.Split(s, ",")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// WithUserQueriesPath configures user's queries path.
|
// WithUserQueriesPath configures user's queries path.
|
||||||
func WithUserQueriesPath(p string) ExporterOpt {
|
func WithUserQueriesPath(p string) ExporterOpt {
|
||||||
return func(e *Exporter) {
|
return func(e *Exporter) {
|
||||||
@ -1678,6 +1687,10 @@ func (e *Exporter) discoverDatabaseDSNs() []string {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if len(e.includeDatabases) != 0 && !contains(e.includeDatabases, databaseName) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
if dsnURI != nil {
|
if dsnURI != nil {
|
||||||
dsnURI.Path = databaseName
|
dsnURI.Path = databaseName
|
||||||
dsn = dsnURI.String()
|
dsn = dsnURI.String()
|
||||||
@ -1822,6 +1835,7 @@ func main() {
|
|||||||
WithUserQueriesPath(*queriesPath),
|
WithUserQueriesPath(*queriesPath),
|
||||||
WithConstantLabels(*constantLabelsList),
|
WithConstantLabels(*constantLabelsList),
|
||||||
ExcludeDatabases(*excludeDatabases),
|
ExcludeDatabases(*excludeDatabases),
|
||||||
|
IncludeDatabases(*includeDatabases),
|
||||||
}
|
}
|
||||||
|
|
||||||
exporter := NewExporter(dsn, opts...)
|
exporter := NewExporter(dsn, opts...)
|
||||||
|
Loading…
Reference in New Issue
Block a user