You've already forked postgres_exporter
mirror of
https://github.com/prometheus-community/postgres_exporter.git
synced 2025-08-09 15:42:47 +03:00
14 lines
340 B
Go
14 lines
340 B
Go
package metricmaps
|
|
|
|
// Metric name parts.
|
|
const (
|
|
// Namespace for all metrics.
|
|
namespace = "pg"
|
|
// Subsystems.
|
|
exporter = "exporter"
|
|
// Metric label used for static string data thats handy to send to Prometheus
|
|
// e.g. version
|
|
staticLabelName = "static"
|
|
// Metric label used for server identification.
|
|
serverLabelName = "server"
|
|
) |