Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for queue_length (0.13 sec)

  1. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    		for {
    			if time.Now().After(timeout) {
    				t.Errorf("Test %q: timed out", test.name)
    				break
    			}
    			if ctrl.queue.Len() > 0 {
    				logger.V(5).Info("Non-empty queue, processing one", "test", test.name, "queueLength", ctrl.queue.Len())
    				ctrl.processNextWorkItem(context.TODO())
    			}
    			if ctrl.queue.Len() > 0 {
    				// There is still some work in the queue, process it now
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    					Help:      "Number of unsent messages in queue for target",
    					Type:      gaugeMetric,
    				},
    				VariableLabels: map[string]string{"target_id": id},
    				Value:          float64(st.QueueLength),
    			})
    			metrics = append(metrics, MetricV2{
    				Description: MetricDescription{
    					Namespace: minioNamespace,
    					Subsystem: auditSubsystem,
    					Name:      "total_messages",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
Back to top