reporter_interfaces.go 355 B

123456789
  1. package metrics
  2. // Reporter interface
  3. type Reporter interface {
  4. ReportCount(metric string, tags map[string]string, count float64) error
  5. ReportSummary(metric string, tags map[string]string, value float64) error
  6. ReportGauge(metric string, tags map[string]string, value float64) error
  7. ReportHistogram(metric string, label string, value float64) error
  8. }