Skip to content

Metrics

The drop operator exposes the following metrics:

MetricTypeDescription
drop_images_cached_totalcounterTotal number of images successfully cached on nodes.
drop_pull_duration_secondshistogramDuration of image pull operations in seconds.
drop_pull_errors_totalcounterTotal number of failed image pull attempts.
drop_discovery_images_foundgaugeNumber of images found by a discovery policy.
drop_active_pullsgaugeCurrent number of active image pull Pods.
drop_reconcile_totalcounterTotal number of reconciliation attempts.
drop_discovery_source_healthgaugeWhether a discovery source is reachable and queryable (1=healthy, 0=unhealthy).
drop_discovery_source_latency_secondshistogramLatency of discovery source queries in seconds.
drop_nodes_targetedgaugeNumber of nodes targeted by each CachedImage resource.
drop_nodes_cachedgaugeNumber of nodes where the image is successfully cached.
drop_consecutive_failuresgaugeCurrent number of consecutive pull failures for a CachedImage.

Useful Queries

# Images cached per node
sum by (node) (drop_images_cached_total)

# Pull error rate
rate(drop_pull_errors_total[5m])

# Average pull duration
histogram_quantile(0.95, rate(drop_pull_duration_seconds_bucket[10m]))

# Discovery coverage
drop_discovery_images_found
Last updated on