Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for ActiveTasks (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/bucket-lifecycle.go

    // goroutine.
    func (t *transitionState) PendingTasks() int {
    	return len(t.transitionCh)
    }
    
    // ActiveTasks returns the number of active (ongoing) ILM transition tasks.
    func (t *transitionState) ActiveTasks() int64 {
    	return t.activeTasks.Load()
    }
    
    // MissedImmediateTasks returns the number of tasks - deferred to scanner due
    // to tasks channel being backlogged.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 33.7K bytes
    - Click Count (0)
  2. cmd/metrics-v3-ilm.go

    	if globalExpiryState != nil {
    		m.Set(expiryPendingTasks, float64(globalExpiryState.PendingTasks()))
    	}
    	if globalTransitionState != nil {
    		m.Set(transitionActiveTasks, float64(globalTransitionState.ActiveTasks()))
    		m.Set(transitionPendingTasks, float64(globalTransitionState.PendingTasks()))
    		m.Set(transitionMissedImmediateTasks, float64(globalTransitionState.MissedImmediateTasks()))
    	}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Jun 06 09:36:25 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  3. cmd/metrics-v2.go

    		}
    		if globalTransitionState != nil {
    			trPendingTasks.Value = float64(globalTransitionState.PendingTasks())
    			trActiveTasks.Value = float64(globalTransitionState.ActiveTasks())
    			trMissedTasks.Value = float64(globalTransitionState.MissedImmediateTasks())
    		}
    		return []MetricV2{
    			expPendingTasks,
    			expMissedTasks,
    			expMissedFreeVersions,
    			expMissedTierJournalTasks,
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 133.6K bytes
    - Click Count (0)
Back to Top