mirror of
https://github.com/prometheus-community/postgres_exporter
synced 2025-04-04 23:29:30 +00:00
Add --exclude-databases option (#298)
* Add exclude-databases option * Update readme to explain --exclude-databases * Add comments to ExcludeDatabases function and unexport Contains function
This commit is contained in:
parent
5f3a711ebd
commit
c768e64548
@ -166,6 +166,8 @@ To scrape metrics from all databases on a database server, the database DSN's ca
|
|||||||
`--auto-discover-databases` flag. When true, `SELECT datname FROM pg_database` is run for all configured DSN's. From the
|
`--auto-discover-databases` flag. When true, `SELECT datname FROM pg_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.
|
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.
|
||||||
|
|
||||||
### 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`
|
||||||
|
@ -39,6 +39,7 @@ var (
|
|||||||
queriesPath = kingpin.Flag("extend.query-path", "Path to custom queries to run.").Default("").Envar("PG_EXPORTER_EXTEND_QUERY_PATH").String()
|
queriesPath = kingpin.Flag("extend.query-path", "Path to custom queries to run.").Default("").Envar("PG_EXPORTER_EXTEND_QUERY_PATH").String()
|
||||||
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()
|
||||||
)
|
)
|
||||||
|
|
||||||
// Metric name parts.
|
// Metric name parts.
|
||||||
@ -883,6 +884,7 @@ type Exporter struct {
|
|||||||
|
|
||||||
disableDefaultMetrics, disableSettingsMetrics, autoDiscoverDatabases bool
|
disableDefaultMetrics, disableSettingsMetrics, autoDiscoverDatabases bool
|
||||||
|
|
||||||
|
excludeDatabases []string
|
||||||
dsn []string
|
dsn []string
|
||||||
userQueriesPath string
|
userQueriesPath string
|
||||||
constantLabels prometheus.Labels
|
constantLabels prometheus.Labels
|
||||||
@ -921,6 +923,13 @@ func AutoDiscoverDatabases(b bool) ExporterOpt {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ExcludeDatabases allows to filter out result from AutoDiscoverDatabases
|
||||||
|
func ExcludeDatabases(s string) ExporterOpt {
|
||||||
|
return func(e *Exporter) {
|
||||||
|
e.excludeDatabases = 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) {
|
||||||
@ -1315,6 +1324,9 @@ func (e *Exporter) discoverDatabaseDSNs() []string {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
for _, databaseName := range databaseNames {
|
for _, databaseName := range databaseNames {
|
||||||
|
if contains(e.excludeDatabases, databaseName) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
parsedDSN.Path = databaseName
|
parsedDSN.Path = databaseName
|
||||||
dsns[parsedDSN.String()] = struct{}{}
|
dsns[parsedDSN.String()] = struct{}{}
|
||||||
}
|
}
|
||||||
@ -1389,6 +1401,15 @@ func getDataSources() []string {
|
|||||||
return strings.Split(dsn, ",")
|
return strings.Split(dsn, ",")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func contains(a []string, x string) bool {
|
||||||
|
for _, n := range a {
|
||||||
|
if x == n {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
kingpin.Version(fmt.Sprintf("postgres_exporter %s (built with %s)\n", Version, runtime.Version()))
|
kingpin.Version(fmt.Sprintf("postgres_exporter %s (built with %s)\n", Version, runtime.Version()))
|
||||||
log.AddFlags(kingpin.CommandLine)
|
log.AddFlags(kingpin.CommandLine)
|
||||||
@ -1421,6 +1442,7 @@ func main() {
|
|||||||
AutoDiscoverDatabases(*autoDiscoverDatabases),
|
AutoDiscoverDatabases(*autoDiscoverDatabases),
|
||||||
WithUserQueriesPath(*queriesPath),
|
WithUserQueriesPath(*queriesPath),
|
||||||
WithConstantLabels(*constantLabelsList),
|
WithConstantLabels(*constantLabelsList),
|
||||||
|
ExcludeDatabases(*excludeDatabases),
|
||||||
)
|
)
|
||||||
defer func() {
|
defer func() {
|
||||||
exporter.servers.Close()
|
exporter.servers.Close()
|
||||||
|
Loading…
Reference in New Issue
Block a user