diff --git a/metrics/reporter.go b/metrics/reporter.go index c81da1bb..7c342447 100644 --- a/metrics/reporter.go +++ b/metrics/reporter.go @@ -7,7 +7,7 @@ type Tags map[string]string // Reporter is the standard metrics interface: type Reporter interface { - Count(metricName string, value int64, tags Tags) error - Gauge(metricName string, value float64, tags Tags) error - Timing(metricName string, value time.Duration, tags Tags) error + Count(id string, value int64, tags Tags) error + Gauge(id string, value float64, tags Tags) error + Timing(id string, value time.Duration, tags Tags) error }