Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HealingDrives (0.09 sec)

  1. cmd/healthcheck-handler.go

    	w.Header().Set(xhttp.MinIOStorageClassDefaults, strconv.FormatBool(result.UsingDefaults))
    	// return how many drives are being healed if any
    	if result.HealingDrives > 0 {
    		w.Header().Set(xhttp.MinIOHealingDrives, strconv.Itoa(result.HealingDrives))
    	}
    	if !result.Healthy {
    		// As a maintenance call we are purposefully asked to be taken
    		// down, this is for orchestrators to know if we can safely
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jun 26 07:44:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. cmd/metrics-v3-cluster-erasure-set.go

    		m.Set(erasureSetWriteQuorum, float64(h.WriteQuorum), labels...)
    		m.Set(erasureSetOnlineDrivesCount, float64(h.HealthyDrives), labels...)
    		m.Set(erasureSetHealingDrivesCount, float64(h.HealingDrives), labels...)
    		m.Set(erasureSetHealth, b2f(h.Healthy), labels...)
    
    		readHealthy := true
    		readTolerance := float64(h.HealthyDrives - h.ReadQuorum)
    		if readTolerance < 0 {
    			readHealthy = false
    		}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue May 14 07:25:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    // was queried
    type HealthResult struct {
    	Healthy       bool
    	HealthyRead   bool
    	HealingDrives int
    	ESHealth      []struct {
    		Maintenance   bool
    		PoolID, SetID int
    		Healthy       bool
    		HealthyRead   bool
    		HealthyDrives int
    		HealingDrives int
    		ReadQuorum    int
    		WriteQuorum   int
    	}
    	WriteQuorum   int
    	ReadQuorum    int
    	UsingDefaults bool
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 29 22:40:36 UTC 2024
    - 89.8K bytes
    - Viewed (0)
  4. cmd/metrics-v2.go

    				Value:          float64(h.HealthyDrives),
    			})
    			metrics = append(metrics, MetricV2{
    				Description:    getClusterErasureSetHealingDrivesMD(),
    				VariableLabels: labels,
    				Value:          float64(h.HealingDrives),
    			})
    
    			health := 1
    			if !h.Healthy {
    				health = 0
    			}
    
    			metrics = append(metrics, MetricV2{
    				Description:    getClusterErasureSetHealthStatusMD(),
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 131.9K bytes
    - Viewed (0)
Back to top