Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NoError (0.18 sec)

  1. cmd/api-errors.go

    		}
    	}
    
    	return apiErr
    }
    
    var noError = APIError{}
    
    // toAPIError - Converts embedded errors. Convenience
    // function written to handle all cases where we have known types of
    // errors returned by underlying layers.
    func toAPIError(ctx context.Context, err error) APIError {
    	if err == nil {
    		return noError
    	}
    
    	apiErr := errorCodes.ToAPIErr(toAPIErrorCode(ctx, err))
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 90.6K bytes
    - Viewed (6)
  2. cmd/site-replication.go

    		if err != nil {
    			return err
    		}
    		sameTarget, apiErr := validateReplicationDestination(ctx, bucket, newReplicationConfig, true)
    		if apiErr != noError {
    			return fmt.Errorf("bucket replication config validation error: %#v", apiErr)
    		}
    		err = newReplicationConfig.Validate(bucket, sameTarget)
    		if err != nil {
    			return err
    		}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
  3. docs/metrics/prometheus/list.md

    | `minio_node_drive_errors_timeout`      | Total number of drive timeout errors since server start             |
    | `minio_node_drive_errors_ioerror`      | Total number of drive I/O errors since server start                 |
    | `minio_node_drive_errors_availability` | Total number of drive I/O errors, timeouts since server start       |
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 43.4K bytes
    - Viewed (2)
  4. cmd/metrics-v2.go

    		Type:      counterMetric,
    	}
    }
    
    func getNodeDriveIOErrorsMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: driveSubsystem,
    		Name:      "errors_ioerror",
    		Help:      "Total number of drive I/O errors since server start",
    		Type:      counterMetric,
    	}
    }
    
    func getNodeDriveAvailabilityErrorsMD() MetricDescription {
    	return MetricDescription{
    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