mirror of
https://github.com/distribution/distribution.git
synced 2025-07-04 19:16:45 +00:00
Initialize proxy prometheus counters values to 0 (#4283)
This commit is contained in:
commit
3cb985cac0
@ -62,6 +62,16 @@ func init() {
|
||||
}))
|
||||
|
||||
metrics.Register(prometheus.ProxyNamespace)
|
||||
initPrometheusMetrics("blob")
|
||||
initPrometheusMetrics("manifest")
|
||||
}
|
||||
|
||||
func initPrometheusMetrics(value string) {
|
||||
requests.WithValues(value).Inc(0)
|
||||
hits.WithValues(value).Inc(0)
|
||||
misses.WithValues(value).Inc(0)
|
||||
pulledBytes.WithValues(value).Inc(0)
|
||||
pushedBytes.WithValues(value).Inc(0)
|
||||
}
|
||||
|
||||
// BlobPull tracks metrics about blobs pulled into the cache
|
||||
|
Loading…
Reference in New Issue
Block a user