postgres_exporter/pkg/queries/metricmaps/constants.go
Will Rouesnel 6fcfe4041a
WIP
2020-02-26 02:03:50 +11:00

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"
)