You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.6 KiB
52 lines
1.6 KiB
5 years ago
|
package redis
|
||
|
|
||
|
import "github.com/bilibili/kratos/pkg/stat/metric"
|
||
|
|
||
|
const namespace = "redis_client"
|
||
|
|
||
|
var (
|
||
|
_metricReqDur = metric.NewHistogramVec(&metric.HistogramVecOpts{
|
||
|
Namespace: namespace,
|
||
|
Subsystem: "requests",
|
||
|
Name: "duration_ms",
|
||
|
Help: "redis client requests duration(ms).",
|
||
|
Labels: []string{"name", "addr", "command"},
|
||
|
Buckets: []float64{5, 10, 25, 50, 100, 250, 500, 1000, 2500},
|
||
|
})
|
||
|
_metricReqErr = metric.NewCounterVec(&metric.CounterVecOpts{
|
||
|
Namespace: namespace,
|
||
|
Subsystem: "requests",
|
||
|
Name: "error_total",
|
||
|
Help: "redis client requests error count.",
|
||
|
Labels: []string{"name", "addr", "command", "error"},
|
||
|
})
|
||
|
_metricConnTotal = metric.NewCounterVec(&metric.CounterVecOpts{
|
||
|
Namespace: namespace,
|
||
|
Subsystem: "connections",
|
||
|
Name: "total",
|
||
|
Help: "redis client connections total count.",
|
||
|
Labels: []string{"name", "addr", "state"},
|
||
|
})
|
||
|
_metricConnCurrent = metric.NewGaugeVec(&metric.GaugeVecOpts{
|
||
|
Namespace: namespace,
|
||
|
Subsystem: "connections",
|
||
|
Name: "current",
|
||
|
Help: "redis client connections current.",
|
||
|
Labels: []string{"name", "addr", "state"},
|
||
|
})
|
||
|
_metricHits = metric.NewCounterVec(&metric.CounterVecOpts{
|
||
|
Namespace: namespace,
|
||
|
Subsystem: "",
|
||
|
Name: "hits_total",
|
||
|
Help: "redis client hits total.",
|
||
|
Labels: []string{"name", "addr"},
|
||
|
})
|
||
|
_metricMisses = metric.NewCounterVec(&metric.CounterVecOpts{
|
||
|
Namespace: namespace,
|
||
|
Subsystem: "",
|
||
|
Name: "misses_total",
|
||
|
Help: "redis client misses total.",
|
||
|
Labels: []string{"name", "addr"},
|
||
|
})
|
||
|
)
|