Remove use of deprecated prometheus.Handler

Signed-off-by: beorn7 <beorn@soundcloud.com>
This commit is contained in:
beorn7 2018-09-17 13:05:43 +02:00
parent 5e4a76e66b
commit 4fb59d1e61
1 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@ import (
"github.com/gogo/protobuf/proto"
"github.com/golang/snappy"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/prometheus/common/model"
influx "github.com/influxdata/influxdb/client/v2"
@ -97,7 +98,7 @@ func init() {
func main() {
cfg := parseFlags()
http.Handle(cfg.telemetryPath, prometheus.Handler())
http.Handle(cfg.telemetryPath, promhttp.Handler())
logLevel := promlog.AllowedLevel{}
if err := logLevel.Set(cfg.logLevel); err != nil {