2021-08-25 16:46:29 +00:00
|
|
|
//go:build !windows
|
2015-06-22 09:00:55 +00:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package metrics
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log/syslog"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Output each metric in the given registry to syslog periodically using
|
|
|
|
// the given syslogger.
|
|
|
|
func Syslog(r Registry, d time.Duration, w *syslog.Writer) {
|
2018-02-23 09:56:08 +00:00
|
|
|
for range time.Tick(d) {
|
2015-06-22 09:00:55 +00:00
|
|
|
r.Each(func(name string, i interface{}) {
|
|
|
|
switch metric := i.(type) {
|
|
|
|
case Counter:
|
|
|
|
w.Info(fmt.Sprintf("counter %s: count: %d", name, metric.Count()))
|
2023-03-23 13:13:50 +00:00
|
|
|
case CounterFloat64:
|
|
|
|
w.Info(fmt.Sprintf("counter %s: count: %f", name, metric.Count()))
|
2015-06-22 09:00:55 +00:00
|
|
|
case Gauge:
|
|
|
|
w.Info(fmt.Sprintf("gauge %s: value: %d", name, metric.Value()))
|
|
|
|
case GaugeFloat64:
|
|
|
|
w.Info(fmt.Sprintf("gauge %s: value: %f", name, metric.Value()))
|
2023-08-31 17:37:17 +00:00
|
|
|
case GaugeInfo:
|
|
|
|
w.Info(fmt.Sprintf("gauge %s: value: %s", name, metric.Value()))
|
2015-06-22 09:00:55 +00:00
|
|
|
case Healthcheck:
|
|
|
|
metric.Check()
|
|
|
|
w.Info(fmt.Sprintf("healthcheck %s: error: %v", name, metric.Error()))
|
|
|
|
case Histogram:
|
|
|
|
h := metric.Snapshot()
|
|
|
|
ps := h.Percentiles([]float64{0.5, 0.75, 0.95, 0.99, 0.999})
|
|
|
|
w.Info(fmt.Sprintf(
|
|
|
|
"histogram %s: count: %d min: %d max: %d mean: %.2f stddev: %.2f median: %.2f 75%%: %.2f 95%%: %.2f 99%%: %.2f 99.9%%: %.2f",
|
|
|
|
name,
|
|
|
|
h.Count(),
|
|
|
|
h.Min(),
|
|
|
|
h.Max(),
|
|
|
|
h.Mean(),
|
|
|
|
h.StdDev(),
|
|
|
|
ps[0],
|
|
|
|
ps[1],
|
|
|
|
ps[2],
|
|
|
|
ps[3],
|
|
|
|
ps[4],
|
|
|
|
))
|
|
|
|
case Meter:
|
|
|
|
m := metric.Snapshot()
|
|
|
|
w.Info(fmt.Sprintf(
|
|
|
|
"meter %s: count: %d 1-min: %.2f 5-min: %.2f 15-min: %.2f mean: %.2f",
|
|
|
|
name,
|
|
|
|
m.Count(),
|
|
|
|
m.Rate1(),
|
|
|
|
m.Rate5(),
|
|
|
|
m.Rate15(),
|
|
|
|
m.RateMean(),
|
|
|
|
))
|
|
|
|
case Timer:
|
|
|
|
t := metric.Snapshot()
|
|
|
|
ps := t.Percentiles([]float64{0.5, 0.75, 0.95, 0.99, 0.999})
|
|
|
|
w.Info(fmt.Sprintf(
|
|
|
|
"timer %s: count: %d min: %d max: %d mean: %.2f stddev: %.2f median: %.2f 75%%: %.2f 95%%: %.2f 99%%: %.2f 99.9%%: %.2f 1-min: %.2f 5-min: %.2f 15-min: %.2f mean-rate: %.2f",
|
|
|
|
name,
|
|
|
|
t.Count(),
|
|
|
|
t.Min(),
|
|
|
|
t.Max(),
|
|
|
|
t.Mean(),
|
|
|
|
t.StdDev(),
|
|
|
|
ps[0],
|
|
|
|
ps[1],
|
|
|
|
ps[2],
|
|
|
|
ps[3],
|
|
|
|
ps[4],
|
|
|
|
t.Rate1(),
|
|
|
|
t.Rate5(),
|
|
|
|
t.Rate15(),
|
|
|
|
t.RateMean(),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|