metrics

package
v0.12.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 14, 2024 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (

	// CacheHit is label value for cache hit metrics.
	CacheHit = "hit"
	// CacheMiss is label value for cache miss metrics.
	CacheMiss = "miss"
)

Variables

View Source
var (
	// Factory is used for registering metrics in the controller-runtime metrics registry.
	Factory = promauto.With(runtimemetrics.Registry)

	// ResolvedTag defines the counter resolved_tags_total.
	ResolvedTag = Factory.NewCounterVec(
		prometheus.CounterOpts{
			Namespace: namespace,
			Subsystem: resolvedTagsSubsystem,
			Name:      "total",
			Help:      "Total number of successfully resolved OCI image tags to digests.",
		},
		[]string{},
	)

	// ResolvedTagErrors defines the counter resolved_tags_errors_total.
	ResolvedTagErrors = Factory.NewCounterVec(
		prometheus.CounterOpts{
			Namespace: namespace,
			Subsystem: resolvedTagsSubsystem,
			Name:      "errors_total",
			Help:      "Total number of failures OCI image tags to be resolved to digests.",
		},
		[]string{},
	)

	// ResolvedTagCache defines the counter resolved_tags_cache_total.
	ResolvedTagCache = Factory.NewCounterVec(
		prometheus.CounterOpts{
			Namespace: namespace,
			Subsystem: resolvedTagsSubsystem,
			Name:      "cache_total",
			Help:      "Total number of cache  when resolving OCI image tags to digests.",
		},
		[]string{"status"},
	)

	// ImageSignature defines the counter image_signature_check_total.
	ImageSignature = Factory.NewCounterVec(
		prometheus.CounterOpts{
			Namespace: namespace,
			Subsystem: imageSignatureSubsystem,
			Name:      "total",
			Help:      "Total number of successful OCI image signatures checks.",
		},
		[]string{"verified"},
	)

	// ImageSignatureErrors defines the counter image_signature_check_errors_total.
	ImageSignatureErrors = Factory.NewCounterVec(
		prometheus.CounterOpts{
			Namespace: namespace,
			Subsystem: imageSignatureSubsystem,
			Name:      "errors_total",
			Help:      "Total number of failed OCI image signatures checks.",
		},
		[]string{},
	)

	// ImageSignatureCache defines the counter image_signature_check_cache_total.
	ImageSignatureCache = Factory.NewCounterVec(
		prometheus.CounterOpts{
			Namespace: namespace,
			Subsystem: imageSignatureSubsystem,
			Name:      "cache_total",
			Help:      "Total number of cache when checking image signatures.",
		},
		[]string{"status"},
	)
)

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL