seaweedfs/weed/stats/metrics.go

90 lines
2.6 KiB
Go
Raw Normal View History

2019-06-15 19:21:44 +00:00
package stats
2019-06-14 20:06:01 +00:00
import (
"time"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/push"
)
var (
2019-06-15 19:21:44 +00:00
FilerGather = prometheus.NewRegistry()
VolumeServerGather = prometheus.NewRegistry()
2019-06-14 07:54:56 +00:00
2019-06-15 19:21:44 +00:00
FilerRequestCounter = prometheus.NewCounterVec(
prometheus.CounterOpts{
Namespace: "SeaweedFS",
Subsystem: "filer",
Name: "request_total",
Help: "Counter of filer requests.",
}, []string{"type"})
2019-06-15 19:21:44 +00:00
FilerRequestHistogram = prometheus.NewHistogramVec(
prometheus.HistogramOpts{
Namespace: "SeaweedFS",
Subsystem: "filer",
Name: "request_seconds",
Help: "Bucketed histogram of filer request processing time.",
2019-06-14 07:54:56 +00:00
Buckets: prometheus.ExponentialBuckets(0.0001, 2, 24),
}, []string{"type"})
2019-06-15 19:21:44 +00:00
VolumeServerRequestCounter = prometheus.NewCounterVec(
2019-06-14 07:54:56 +00:00
prometheus.CounterOpts{
Namespace: "SeaweedFS",
Subsystem: "volumeServer",
Name: "request_total",
Help: "Counter of filer requests.",
}, []string{"type"})
2019-06-15 19:21:44 +00:00
VolumeServerRequestHistogram = prometheus.NewHistogramVec(
2019-06-14 07:54:56 +00:00
prometheus.HistogramOpts{
Namespace: "SeaweedFS",
Subsystem: "volumeServer",
Name: "request_seconds",
Help: "Bucketed histogram of filer request processing time.",
Buckets: prometheus.ExponentialBuckets(0.0001, 2, 24),
}, []string{"type"})
2019-06-14 20:06:01 +00:00
2019-06-15 19:21:44 +00:00
VolumeServerVolumeCounter = prometheus.NewGauge(
2019-06-14 20:06:01 +00:00
prometheus.GaugeOpts{
Namespace: "SeaweedFS",
Subsystem: "volumeServer",
Name: "volumes",
Help: "Number of volumes.",
})
)
func init() {
2019-06-14 07:54:56 +00:00
2019-06-15 19:21:44 +00:00
FilerGather.MustRegister(FilerRequestCounter)
FilerGather.MustRegister(FilerRequestHistogram)
2019-06-14 07:54:56 +00:00
2019-06-15 19:21:44 +00:00
VolumeServerGather.MustRegister(VolumeServerRequestCounter)
VolumeServerGather.MustRegister(VolumeServerRequestHistogram)
VolumeServerGather.MustRegister(VolumeServerVolumeCounter)
2019-06-14 20:06:01 +00:00
}
2019-06-15 19:21:44 +00:00
func StartPushingMetric(name, instance string, gatherer *prometheus.Registry, addr string, intervalSeconds int) {
2019-06-14 20:06:01 +00:00
if intervalSeconds == 0 || addr == "" {
glog.V(0).Info("disable metrics reporting")
return
}
glog.V(0).Infof("push metrics to %s every %d seconds", addr, intervalSeconds)
2019-06-15 19:21:44 +00:00
go loopPushMetrics(name, instance, gatherer, addr, intervalSeconds)
2019-06-14 20:06:01 +00:00
}
2019-06-15 19:21:44 +00:00
func loopPushMetrics(name, instance string, gatherer *prometheus.Registry, addr string, intervalSeconds int) {
2019-06-14 20:06:01 +00:00
2019-06-15 19:21:44 +00:00
pusher := push.New(addr, name).Gatherer(gatherer).Grouping("instance", instance)
2019-06-14 07:54:56 +00:00
2019-06-14 20:06:01 +00:00
for {
err := pusher.Push()
if err != nil {
glog.V(0).Infof("could not push metrics to prometheus push gateway %s: %v", addr, err)
}
time.Sleep(time.Duration(intervalSeconds) * time.Second)
}
}