Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HealingDrives (0.64 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
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 03 21:13:20 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  2. cmd/metrics-v3-cluster-erasure-set.go

    			poolIDL, poolLV, setIDL, setLV)
    		m.Set(erasureSetOnlineDrivesCount, float64(h.HealthyDrives),
    			poolIDL, poolLV, setIDL, setLV)
    		m.Set(erasureSetHealingDrivesCount, float64(h.HealingDrives),
    			poolIDL, poolLV, setIDL, setLV)
    		m.Set(erasureSetHealth, b2f(h.Healthy),
    			poolIDL, poolLV, setIDL, setLV)
    	}
    
    	return nil
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 3.1K 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
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 80.1K 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(),
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
Back to top