From 7b500e74b40714874278816dcce128a4b8e7389d Mon Sep 17 00:00:00 2001 From: Dave Henderson Date: Fri, 4 Jun 2021 00:19:16 -0400 Subject: metrics: use buildinfo collector from new collectors pkg (#4187) Signed-off-by: Dave Henderson --- metrics.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'metrics.go') diff --git a/metrics.go b/metrics.go index 55fb0a3..ab9d797 100644 --- a/metrics.go +++ b/metrics.go @@ -6,12 +6,13 @@ import ( "strings" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/collectors" "github.com/prometheus/client_golang/prometheus/promauto" ) // define and register the metrics used in this package. func init() { - prometheus.MustRegister(prometheus.NewBuildInfoCollector()) + prometheus.MustRegister(collectors.NewBuildInfoCollector()) const ns, sub = "caddy", "admin" -- cgit v1.2.3