10 lines
174 B
Go
10 lines
174 B
Go
|
package metrics
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func HTTPLatency(path string, dur time.Duration) {
|
||
|
httpReqLat.WithLabelValues(path).Observe(float64(dur) / float64(time.Millisecond))
|
||
|
}
|