Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TotalErrorsTimeout (0.24 sec)

  1. cmd/xl-storage-disk-id-check.go

    			}
    			return diskMetric, nil
    		},
    	)
    
    	diskMetric, _ := p.metricsCache.GetWithCtx(context.Background())
    	// Do not need this value to be cached.
    	diskMetric.TotalErrorsTimeout = p.totalErrsTimeout.Load()
    	diskMetric.TotalErrorsAvailability = p.totalErrsAvailability.Load()
    
    	return diskMetric
    }
    
    // lockedLastMinuteLatency accumulates totals lockless for each second.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. cmd/storage-datatypes_gen.go

    			if err != nil {
    				err = msgp.WrapError(err, "TotalErrorsAvailability")
    				return
    			}
    		case "TotalErrorsTimeout":
    			z.TotalErrorsTimeout, err = dc.ReadUint64()
    			if err != nil {
    				err = msgp.WrapError(err, "TotalErrorsTimeout")
    				return
    			}
    		case "TotalWrites":
    			z.TotalWrites, err = dc.ReadUint64()
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  3. cmd/storage-datatypes.go

    	APICalls                map[string]uint64  `json:"apiCalls,omitempty"`
    	TotalWaiting            uint32             `json:"totalWaiting,omitempty"`
    	TotalErrorsAvailability uint64             `json:"totalErrsAvailability"`
    	TotalErrorsTimeout      uint64             `json:"totalErrsTimeout"`
    	TotalWrites             uint64             `json:"totalWrites"`
    	TotalDeletes            uint64             `json:"totalDeletes"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. cmd/metrics-v2.go

    					Value:          float64(disk.Metrics.TotalErrorsTimeout),
    					VariableLabels: map[string]string{"drive": disk.DrivePath},
    				})
    
    				metrics = append(metrics, MetricV2{
    					Description:    getNodeDriveIOErrorsMD(),
    					Value:          float64(disk.Metrics.TotalErrorsAvailability - disk.Metrics.TotalErrorsTimeout),
    					VariableLabels: map[string]string{"drive": disk.DrivePath},
    				})
    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