Initialize proxy prometheus counters values to 0 to prevent gaps after registry restart
Signed-off-by: Dimitar Kostadinov <dimitar.kostadinov@sap.com>
This commit is contained in:
parent
62aa44edfd
commit
6ca646caad
1 changed files with 10 additions and 0 deletions
|
@ -62,6 +62,16 @@ func init() {
|
||||||
}))
|
}))
|
||||||
|
|
||||||
metrics.Register(prometheus.ProxyNamespace)
|
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
|
// BlobPull tracks metrics about blobs pulled into the cache
|
||||||
|
|
Loading…
Reference in a new issue