micro/metrics/reporter.go

19 lines
451 B
Go
Raw Normal View History

2020-08-18 10:30:29 +03:00
// Package metrics is for instrumentation and debugging
package metrics
import "time"
// Tags is a map of fields to add to a metric:
type Tags map[string]string
var (
Defaultreporter Reporter
)
2020-08-18 10:30:29 +03:00
// Reporter is an interface for collecting and instrumenting metrics
type Reporter interface {
2020-08-18 10:29:26 +03:00
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
}