mirror of
https://github.com/prometheus-community/postgres_exporter
synced 2025-04-23 15:35:28 +00: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"
|
|
) |