mirror of
https://github.com/distribution/distribution
synced 2024-11-06 19:35:52 +01:00
Add prometheus proxy related metrics
Signed-off-by: Dimitar Kostadinov <dimitar.kostadinov@sap.com>
This commit is contained in:
parent
708bc6f3e9
commit
9861a46d99
@ -829,8 +829,8 @@ Instead, keep the debug endpoint private or enforce authentication for it.
|
|||||||
The `debug` section takes a single required `addr` parameter, which specifies
|
The `debug` section takes a single required `addr` parameter, which specifies
|
||||||
the `HOST:PORT` on which the debug server should accept connections.
|
the `HOST:PORT` on which the debug server should accept connections.
|
||||||
|
|
||||||
If the registry is configured as a pull-through cache, the `debug` server can be used
|
If configured, `notification`, `redis`, and `proxy` statistics are exposed
|
||||||
to access proxy statistics. These statistics are exposed at `/debug/vars` in JSON format.
|
at `/debug/vars` in JSON format.
|
||||||
|
|
||||||
#### `prometheus`
|
#### `prometheus`
|
||||||
|
|
||||||
@ -843,8 +843,8 @@ prometheus:
|
|||||||
The `prometheus` option defines whether the prometheus metrics are enabled, as well
|
The `prometheus` option defines whether the prometheus metrics are enabled, as well
|
||||||
as the path to access the metrics.
|
as the path to access the metrics.
|
||||||
|
|
||||||
>**NOTE**: The prometheus metrics do **not** cover pull-through cache statistics.
|
The prometheus metrics cover `storage`, `notification` and `proxy` statistics.
|
||||||
> Proxy statistics are exposed via `expvar` only.
|
|
||||||
|
|
||||||
| Parameter | Required | Description |
|
| Parameter | Required | Description |
|
||||||
|-----------|----------|-------------------------------------------------------|
|
|-----------|----------|-------------------------------------------------------|
|
||||||
|
@ -13,4 +13,7 @@ var (
|
|||||||
|
|
||||||
// NotificationsNamespace is the prometheus namespace of notification related metrics
|
// NotificationsNamespace is the prometheus namespace of notification related metrics
|
||||||
NotificationsNamespace = metrics.NewNamespace(NamespacePrefix, "notifications", nil)
|
NotificationsNamespace = metrics.NewNamespace(NamespacePrefix, "notifications", nil)
|
||||||
|
|
||||||
|
// ProxyNamespace is the prometheus namespace of proxy related metrics
|
||||||
|
ProxyNamespace = metrics.NewNamespace(NamespacePrefix, "proxy", nil)
|
||||||
)
|
)
|
||||||
|
@ -3,6 +3,22 @@ package proxy
|
|||||||
import (
|
import (
|
||||||
"expvar"
|
"expvar"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
|
|
||||||
|
prometheus "github.com/distribution/distribution/v3/metrics"
|
||||||
|
"github.com/docker/go-metrics"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
// requests is the number of total incoming proxy request received for blob/manifest
|
||||||
|
requests = prometheus.ProxyNamespace.NewLabeledCounter("requests", "The number of total incoming proxy request received", "type")
|
||||||
|
// hits is the number of total proxy request hits for blob/manifest
|
||||||
|
hits = prometheus.ProxyNamespace.NewLabeledCounter("hits", "The number of total proxy request hits", "type")
|
||||||
|
// hits is the number of total proxy request misses for blob/manifest
|
||||||
|
misses = prometheus.ProxyNamespace.NewLabeledCounter("misses", "The number of total proxy request misses", "type")
|
||||||
|
// bytesPulled is the size of total bytes pulled from the upstream for blob/manifest
|
||||||
|
bytesPulled = prometheus.ProxyNamespace.NewLabeledCounter("bytes_pulled", "The size of total bytes pulled from the upstream", "type")
|
||||||
|
// bytesPushed is the size of total bytes pushed to the client for blob/manifest
|
||||||
|
bytesPushed = prometheus.ProxyNamespace.NewLabeledCounter("bytes_pushed", "The size of total bytes pushed to the client", "type")
|
||||||
)
|
)
|
||||||
|
|
||||||
// Metrics is used to hold metric counters
|
// Metrics is used to hold metric counters
|
||||||
@ -21,29 +37,43 @@ type proxyMetricsCollector struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// BlobPull tracks metrics about blobs pulled into the cache
|
// BlobPull tracks metrics about blobs pulled into the cache
|
||||||
func (pmc *proxyMetricsCollector) BlobPull(bytesPulled uint64) {
|
func (pmc *proxyMetricsCollector) BlobPull(bytes uint64) {
|
||||||
atomic.AddUint64(&pmc.blobMetrics.Misses, 1)
|
atomic.AddUint64(&pmc.blobMetrics.Misses, 1)
|
||||||
atomic.AddUint64(&pmc.blobMetrics.BytesPulled, bytesPulled)
|
atomic.AddUint64(&pmc.blobMetrics.BytesPulled, bytes)
|
||||||
|
|
||||||
|
misses.WithValues("blob").Inc(1)
|
||||||
|
bytesPulled.WithValues("blob").Inc(float64(bytes))
|
||||||
}
|
}
|
||||||
|
|
||||||
// BlobPush tracks metrics about blobs pushed to clients
|
// BlobPush tracks metrics about blobs pushed to clients
|
||||||
func (pmc *proxyMetricsCollector) BlobPush(bytesPushed uint64) {
|
func (pmc *proxyMetricsCollector) BlobPush(bytes uint64) {
|
||||||
atomic.AddUint64(&pmc.blobMetrics.Requests, 1)
|
atomic.AddUint64(&pmc.blobMetrics.Requests, 1)
|
||||||
atomic.AddUint64(&pmc.blobMetrics.Hits, 1)
|
atomic.AddUint64(&pmc.blobMetrics.Hits, 1)
|
||||||
atomic.AddUint64(&pmc.blobMetrics.BytesPushed, bytesPushed)
|
atomic.AddUint64(&pmc.blobMetrics.BytesPushed, bytes)
|
||||||
|
|
||||||
|
requests.WithValues("blob").Inc(1)
|
||||||
|
hits.WithValues("blob").Inc(1)
|
||||||
|
bytesPushed.WithValues("blob").Inc(float64(bytes))
|
||||||
}
|
}
|
||||||
|
|
||||||
// ManifestPull tracks metrics related to Manifests pulled into the cache
|
// ManifestPull tracks metrics related to Manifests pulled into the cache
|
||||||
func (pmc *proxyMetricsCollector) ManifestPull(bytesPulled uint64) {
|
func (pmc *proxyMetricsCollector) ManifestPull(bytes uint64) {
|
||||||
atomic.AddUint64(&pmc.manifestMetrics.Misses, 1)
|
atomic.AddUint64(&pmc.manifestMetrics.Misses, 1)
|
||||||
atomic.AddUint64(&pmc.manifestMetrics.BytesPulled, bytesPulled)
|
atomic.AddUint64(&pmc.manifestMetrics.BytesPulled, bytes)
|
||||||
|
|
||||||
|
misses.WithValues("manifest").Inc(1)
|
||||||
|
bytesPulled.WithValues("manifest").Inc(float64(bytes))
|
||||||
}
|
}
|
||||||
|
|
||||||
// ManifestPush tracks metrics about manifests pushed to clients
|
// ManifestPush tracks metrics about manifests pushed to clients
|
||||||
func (pmc *proxyMetricsCollector) ManifestPush(bytesPushed uint64) {
|
func (pmc *proxyMetricsCollector) ManifestPush(bytes uint64) {
|
||||||
atomic.AddUint64(&pmc.manifestMetrics.Requests, 1)
|
atomic.AddUint64(&pmc.manifestMetrics.Requests, 1)
|
||||||
atomic.AddUint64(&pmc.manifestMetrics.Hits, 1)
|
atomic.AddUint64(&pmc.manifestMetrics.Hits, 1)
|
||||||
atomic.AddUint64(&pmc.manifestMetrics.BytesPushed, bytesPushed)
|
atomic.AddUint64(&pmc.manifestMetrics.BytesPushed, bytes)
|
||||||
|
|
||||||
|
requests.WithValues("manifest").Inc(1)
|
||||||
|
hits.WithValues("manifest").Inc(1)
|
||||||
|
bytesPushed.WithValues("manifest").Inc(float64(bytes))
|
||||||
}
|
}
|
||||||
|
|
||||||
// proxyMetrics tracks metrics about the proxy cache. This is
|
// proxyMetrics tracks metrics about the proxy cache. This is
|
||||||
@ -70,4 +100,6 @@ func init() {
|
|||||||
pm.(*expvar.Map).Set("manifests", expvar.Func(func() interface{} {
|
pm.(*expvar.Map).Set("manifests", expvar.Func(func() interface{} {
|
||||||
return proxyMetrics.manifestMetrics
|
return proxyMetrics.manifestMetrics
|
||||||
}))
|
}))
|
||||||
|
|
||||||
|
metrics.Register(prometheus.ProxyNamespace)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user