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
15 lines
382 B
Go
15 lines
382 B
Go
package metricmaps
|
|
|
|
// Metric name parts.
|
|
const (
|
|
// Namespace for all metrics.
|
|
ExporterNamespaceLabel = "pg"
|
|
// Subsystems.
|
|
ExporterSubsystemLabel = "ExporterSubsystemLabel"
|
|
// 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"
|
|
)
|