Documentation ¶
Index ¶
Constants ¶
View Source
const ( // CRIOOperationsKey is the key for CRI-O operation metrics. CRIOOperationsKey = "crio_operations" // CRIOOperationsLatencyTotalKey is the key for the operation latency metrics. CRIOOperationsLatencyTotalKey = "crio_operations_latency_microseconds_total" // CRIOOperationsLatencyKey is the key for the operation latency metrics for each CRI call. CRIOOperationsLatencyKey = "crio_operations_latency_microseconds" // CRIOOperationsErrorsKey is the key for the operation error metrics. CRIOOperationsErrorsKey = "crio_operations_errors" // CRIOImagePullsByDigestKey is the key for CRI-O image pull metrics by digest. CRIOImagePullsByDigestKey = "crio_image_pulls_by_digest" // CRIOImagePullsByNameKey is the key for CRI-O image pull metrics by name. CRIOImagePullsByNameKey = "crio_image_pulls_by_name" // CRIOImagePullsByNameSkippedKey is the key for CRI-O skipped image pull metrics by name (skipped). CRIOImagePullsByNameSkippedKey = "crio_image_pulls_by_name_skipped" // CRIOImagePullsFailuresKey is the key for failed image downloads in CRI-O. CRIOImagePullsFailuresKey = "crio_image_pulls_failures" // CRIOImagePullsSuccessesKey is the key for successful image downloads in CRI-O. CRIOImagePullsSuccessesKey = "crio_image_pulls_successes" // CRIOImageLayerReuseKey is the key for the CRI-O image layer reuse metrics. CRIOImageLayerReuseKey = "crio_image_layer_reuse" // CRIOContainersOOMTotalKey is the key for the total CRI-O container out of memory metrics. CRIOContainersOOMTotalKey = "crio_containers_oom_total" // CRIOContainersOOMKey is the key for the CRI-O container out of memory metrics per container name. CRIOContainersOOMKey = "crio_containers_oom" )
Variables ¶
View Source
var ( // CRIOOperations collects operation counts by operation type. CRIOOperations = prometheus.NewCounterVec( prometheus.CounterOpts{ Subsystem: subsystem, Name: CRIOOperationsKey, Help: "Cumulative number of CRI-O operations by operation type.", }, []string{"operation_type"}, ) // CRIOOperationsLatencyTotal collects operation latency numbers by operation // type. CRIOOperationsLatencyTotal = prometheus.NewSummaryVec( prometheus.SummaryOpts{ Subsystem: subsystem, Name: CRIOOperationsLatencyTotalKey, Help: "Latency in microseconds of CRI-O operations. Broken down by operation type.", Objectives: map[float64]float64{0.5: 0.05, 0.9: 0.01, 0.99: 0.001}, }, []string{"operation_type"}, ) // CRIOOperationsLatency collects operation latency numbers for each CRI call by operation // type. CRIOOperationsLatency = prometheus.NewGaugeVec( prometheus.GaugeOpts{ Subsystem: subsystem, Name: CRIOOperationsLatencyKey, Help: "Latency in microseconds of individual CRI calls for CRI-O operations. Broken down by operation type.", }, []string{"operation_type"}, ) // CRIOOperationsErrors collects operation errors by operation // type. CRIOOperationsErrors = prometheus.NewCounterVec( prometheus.CounterOpts{ Subsystem: subsystem, Name: CRIOOperationsErrorsKey, Help: "Cumulative number of CRI-O operation errors by operation type.", }, []string{"operation_type"}, ) // CRIOImagePullsByDigest collects image pull metrics for every image digest CRIOImagePullsByDigest = prometheus.NewCounterVec( prometheus.CounterOpts{ Subsystem: subsystem, Name: CRIOImagePullsByDigestKey, Help: "Bytes transferred by CRI-O image pulls by digest", }, []string{"name", "digest", "mediatype", "size"}, ) // CRIOImagePullsByName collects image pull metrics for every image name CRIOImagePullsByName = prometheus.NewCounterVec( prometheus.CounterOpts{ Subsystem: subsystem, Name: CRIOImagePullsByNameKey, Help: "Bytes transferred by CRI-O image pulls by name", }, []string{"name", "size"}, ) // CRIOImagePullsByNameSkipped collects image pull metrics for every image name (skipped) CRIOImagePullsByNameSkipped = prometheus.NewCounterVec( prometheus.CounterOpts{ Subsystem: subsystem, Name: CRIOImagePullsByNameSkippedKey, Help: "Bytes skipped by CRI-O image pulls by name", }, []string{"name"}, ) // CRIOImagePullsFailures collects image pull failures CRIOImagePullsFailures = prometheus.NewCounterVec( prometheus.CounterOpts{ Subsystem: subsystem, Name: CRIOImagePullsFailuresKey, Help: "Cumulative number of CRI-O image pull failures by error.", }, []string{"name", "error"}, ) // CRIOImagePullsSuccesses collects image pull successes CRIOImagePullsSuccesses = prometheus.NewCounterVec( prometheus.CounterOpts{ Subsystem: subsystem, Name: CRIOImagePullsSuccessesKey, Help: "Cumulative number of CRI-O image pull successes.", }, []string{"name"}, ) // CRIOImageLayerReuse collects image pull metrics for every resused image layer CRIOImageLayerReuse = prometheus.NewCounterVec( prometheus.CounterOpts{ Subsystem: subsystem, Name: CRIOImageLayerReuseKey, Help: "Reused (not pulled) local image layer count by name", }, []string{"name"}, ) // CRIOContainersOOMTotal collects container out of memory (oom) metrics for every container and sandboxes. CRIOContainersOOMTotal = prometheus.NewCounter( prometheus.CounterOpts{ Subsystem: subsystem, Name: CRIOContainersOOMTotalKey, Help: "Amount of containers killed because they ran out of memory (OOM)", }, ) // CRIOContainersOOM collects container out of memory (oom) metrics per container and sandbox name. CRIOContainersOOM = prometheus.NewCounterVec( prometheus.CounterOpts{ Subsystem: subsystem, Name: CRIOContainersOOMKey, Help: "Amount of containers killed because they ran out of memory (OOM) by their name", }, []string{"name"}, ) )
Functions ¶
func SinceInMicroseconds ¶
SinceInMicroseconds gets the time since the specified start in microseconds.
func UnaryInterceptor ¶ added in v1.17.0
func UnaryInterceptor() grpc.UnaryServerInterceptor
UnaryInterceptor adds all necessary metrics to incoming gRPC requests
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.