You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// DRAOperationsDuration tracks the duration of the DRA PrepareResources and UnprepareResources requests.
953
+
DRAOperationsDuration=metrics.NewHistogramVec(
954
+
&metrics.HistogramOpts{
955
+
Subsystem: DRASubsystem,
956
+
Name: DRAOperationsDurationKey,
957
+
Help: "Latency histogram in seconds for the duration of handling all ResourceClaims referenced by a pod when the pod starts or stops. Identified by the name of the operation (PrepareResources or UnprepareResources) and separated by the success of the operation. The number of failed operations is provided through the histogram's overall count.",
958
+
Buckets: DRADurationBuckets,
959
+
StabilityLevel: metrics.ALPHA,
960
+
},
961
+
[]string{"operation_name", "is_error"},
962
+
)
963
+
964
+
// DRAGRPCOperationsDuration tracks the duration of the DRA GRPC operations.
0 commit comments