pull/351/head
wangchuxiao 2 years ago
parent 5ce0cf1aad
commit 7e5b62377f

@ -31,3 +31,9 @@ func PromeInc(counter prometheus.Counter) {
counter.Inc()
}
}
func PromeAdd(counter prometheus.Counter, add int) {
if config.Config.Prometheus.Enable {
counter.Add(float64(add))
}
}

Loading…
Cancel
Save