diff --git a/documentation/examples/remote_storage/remote_storage_adapter/main.go b/documentation/examples/remote_storage/remote_storage_adapter/main.go index 8a48cf8777..e2f2bc488a 100644 --- a/documentation/examples/remote_storage/remote_storage_adapter/main.go +++ b/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 {