Adds request latency tracking

Fixes #1
This commit is contained in:
sm
2018-01-24 21:25:15 -08:00
parent 6fa26ec095
commit 70288014ea
4 changed files with 87 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
package metrics
import (
"time"
)
func HTTPLatency(path string, dur time.Duration) {
httpReqLat.WithLabelValues(path).Observe(float64(dur) / float64(time.Millisecond))
}
+23
View File
@@ -0,0 +1,23 @@
package metrics
import (
"github.com/pkg/errors"
"github.com/prometheus/client_golang/prometheus"
)
var (
httpReqLat = prometheus.NewSummaryVec(
prometheus.SummaryOpts{
Name: "hwt_request_latency_ms",
Help: "Latency in ms of http requests grouped by req path",
},
[]string{"path"},
)
)
func RegisterPromMetrics() error {
if err := prometheus.Register(httpReqLat); err != nil {
return errors.Wrap(err, "registering http request latency")
}
return nil
}