Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for action_count_ (0.33 sec)

  1. cmd/metrics-v2.go

    				continue
    			}
    			metrics = append(metrics, MetricV2{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: ilmSubsystem,
    					Name:      MetricName("action_count_" + toSnake(action.String())),
    					Help:      "Total action outcome of lifecycle checks since server uptime",
    					Type:      counterMetric,
    				},
    				Value: float64(v),
    			})
    		}
    		return metrics
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. cmd/data-scanner-metric.go

    	operations [scannerMetricLast]uint64
    	latency    [scannerMetricLastRealtime]lockedLastMinuteLatency
    
    	// actions records actions performed.
    	actions        [lifecycle.ActionCount]uint64
    	actionsLatency [lifecycle.ActionCount]lockedLastMinuteLatency
    
    	// currentPaths contains (string,*currentPathTracker) for each disk processing.
    	// Alignment not required.
    	currentPaths sync.Map
    
    	cycleInfoMu sync.Mutex
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 25 05:15:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/action_string.go

    	_ = x[TransitionAction-3]
    	_ = x[TransitionVersionAction-4]
    	_ = x[DeleteRestoredAction-5]
    	_ = x[DeleteRestoredVersionAction-6]
    	_ = x[DeleteAllVersionsAction-7]
    	_ = x[DelMarkerDeleteAllVersionsAction-8]
    	_ = x[ActionCount-9]
    }
    
    const _Action_name = "NoneActionDeleteActionDeleteVersionActionTransitionActionTransitionVersionActionDeleteRestoredActionDeleteRestoredVersionActionDeleteAllVersionsActionDelMarkerDeleteAllVersionsActionActionCount"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/service.go

    	NotificationTriggered uint32
    	ServiceNames          *uint16
    }
    
    type SERVICE_FAILURE_ACTIONS struct {
    	ResetPeriod  uint32
    	RebootMsg    *uint16
    	Command      *uint16
    	ActionsCount uint32
    	Actions      *SC_ACTION
    }
    
    type SERVICE_FAILURE_ACTIONS_FLAG struct {
    	FailureActionsOnNonCrashFailures int32
    }
    
    type SC_ACTION struct {
    	Type  uint32
    	Delay uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. internal/bucket/lifecycle/lifecycle.go

    	DeleteAllVersionsAction
    	// DelMarkerDeleteAllVersionsAction deletes all versions when an object with delete marker as latest version expires
    	DelMarkerDeleteAllVersionsAction
    	// ActionCount must be the last action and shouldn't be used as a regular action.
    	ActionCount
    )
    
    // DeleteRestored - Returns true if action demands delete on restored objects
    func (a Action) DeleteRestored() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top