Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for volume_operation_total_errors (0.37 sec)

  1. pkg/controller/volume/persistentvolume/metrics/metrics.go

    		[]string{namespaceLabel}, nil,
    		metrics.ALPHA, "")
    
    	volumeOperationErrorsMetric = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Name:           "volume_operation_total_errors",
    			Help:           "Total volume operation errors",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"plugin_name", "operation_name"})
    
    	retroactiveStorageClassMetric = metrics.NewCounter(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 13:09:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller.go

    		ctrl.scheduleOperation(logger, opName, func() error {
    			_, err := ctrl.deleteVolumeOperation(ctx, volume)
    			if err != nil {
    				// only report error count to "volume_operation_total_errors"
    				// latency reporting will happen when the volume get finally
    				// deleted and a volume deleted event is captured
    				metrics.RecordMetric(volume.Name, &ctrl.operationTimestamps, err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top