summaryrefslogtreecommitdiff
path: root/admin.go
diff options
context:
space:
mode:
Diffstat (limited to 'admin.go')
-rw-r--r--admin.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/admin.go b/admin.go
index 4ce2099..b2eb542 100644
--- a/admin.go
+++ b/admin.go
@@ -36,7 +36,6 @@ import (
"time"
"github.com/prometheus/client_golang/prometheus"
- "github.com/prometheus/client_golang/prometheus/promhttp"
"go.uber.org/zap"
)
@@ -111,7 +110,7 @@ func (admin AdminConfig) newAdminHandler(addr NetworkAddress) adminHandler {
addRouteWithMetrics := func(pattern string, handlerLabel string, h http.Handler) {
labels := prometheus.Labels{"path": pattern, "handler": handlerLabel}
- h = promhttp.InstrumentHandlerCounter(
+ h = instrumentHandlerCounter(
adminMetrics.requestCount.MustCurryWith(labels),
h,
)
@@ -126,7 +125,7 @@ func (admin AdminConfig) newAdminHandler(addr NetworkAddress) adminHandler {
labels := prometheus.Labels{
"path": pattern,
"handler": handlerLabel,
- "method": r.Method,
+ "method": strings.ToUpper(r.Method),
}
adminMetrics.requestErrors.With(labels).Inc()
}