mirror of
https://github.com/go-kratos/kratos.git
synced 2025-02-03 13:11:42 +02:00
51 lines
1.1 KiB
Go
51 lines
1.1 KiB
Go
package metric
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
// HistogramVecOpts is histogram vector opts.
|
|
type HistogramVecOpts struct {
|
|
Namespace string
|
|
Subsystem string
|
|
Name string
|
|
Help string
|
|
Labels []string
|
|
Buckets []float64
|
|
}
|
|
|
|
// HistogramVec gauge vec.
|
|
type HistogramVec interface {
|
|
// Observe adds a single observation to the histogram.
|
|
Observe(v int64, labels ...string)
|
|
}
|
|
|
|
// Histogram prom histogram collection.
|
|
type promHistogramVec struct {
|
|
histogram *prometheus.HistogramVec
|
|
}
|
|
|
|
// NewHistogramVec new a histogram vec.
|
|
func NewHistogramVec(cfg *HistogramVecOpts) HistogramVec {
|
|
if cfg == nil {
|
|
return nil
|
|
}
|
|
vec := prometheus.NewHistogramVec(
|
|
prometheus.HistogramOpts{
|
|
Namespace: cfg.Namespace,
|
|
Subsystem: cfg.Subsystem,
|
|
Name: cfg.Name,
|
|
Help: cfg.Help,
|
|
Buckets: cfg.Buckets,
|
|
}, cfg.Labels)
|
|
prometheus.MustRegister(vec)
|
|
return &promHistogramVec{
|
|
histogram: vec,
|
|
}
|
|
}
|
|
|
|
// Timing adds a single observation to the histogram.
|
|
func (histogram *promHistogramVec) Observe(v int64, labels ...string) {
|
|
histogram.histogram.WithLabelValues(labels...).Observe(float64(v))
|
|
}
|