Remove use of deprecated prometheus.Handler

Signed-off-by: beorn7 <beorn@soundcloud.com>
pull/4620/head
beorn7 7 years ago
parent 5e4a76e66b
commit 4fb59d1e61
  1. 3
      documentation/examples/remote_storage/remote_storage_adapter/main.go

@ -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 {

Loading…
Cancel
Save