From 109956ca66ecfb50e1358feac066268deb2cdcfe Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Fri, 25 Jan 2019 16:11:45 +0000 Subject: [PATCH] Update prometheus.go --- prometheus.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prometheus.go b/prometheus.go index 1336883..10fc62e 100644 --- a/prometheus.go +++ b/prometheus.go @@ -10,14 +10,14 @@ func NewHandlerWrapper() server.HandlerWrapper { opsCounter := prometheus.NewCounterVec( prometheus.CounterOpts{ Name: "micro_requests_total", - Help: "How many go-miro requests processed, partitioned by method and status", + Help: "How many go-micro requests processed, partitioned by method and status", }, []string{"method", "status"}, ) timeCounter := prometheus.NewSummaryVec( prometheus.SummaryOpts{ - Name: "micro_request_durations_microseconds", + Name: "micro_request_duration_microseconds", Help: "Service method request latencies in microseconds", }, []string{"method"},