We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a658707 commit 6d898a1Copy full SHA for 6d898a1
plugin/metrics.go
@@ -32,4 +32,14 @@ var (
32
Name: "cache_deletes_total",
33
Help: "The total number of cache deletes",
34
})
35
+ CacheScanCounter = promauto.NewCounter(prometheus.CounterOpts{
36
+ Namespace: metrics.Namespace,
37
+ Name: "cache_scans_total",
38
+ Help: "The total number of cache scans",
39
+ })
40
+ CacheScanKeysCounter = promauto.NewCounter(prometheus.CounterOpts{
41
42
+ Name: "cache_scan_keys_total",
43
+ Help: "The total number of cache scan keys",
44
45
)
0 commit comments