Enum opentelemetry_api::metrics::MetricsError
source · #[non_exhaustive]
pub enum MetricsError {
Other(String),
InvalidQuantile,
NaNInput,
NegativeInput,
InconsistentAggregator(String),
NoDataCollected,
MetricKindMismatch(String),
InconsistentState,
NoSubtraction,
ExportErr(Box<dyn ExportError>),
InvalidInstrumentConfiguration(&'static str),
}
Expand description
Errors returned by the metrics API.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Other(String)
Other errors not covered by specific cases.
InvalidQuantile
Errors when requesting quantiles out of the 0-1 range.
NaNInput
Errors when recording nan values.
NegativeInput
Errors when recording negative values in monotonic sums.
InconsistentAggregator(String)
Errors when merging aggregators of incompatible types.
NoDataCollected
Errors when requesting data when no data has been collected
MetricKindMismatch(String)
Errors when registering to instruments with the same name and kind
InconsistentState
Errors when processor logic is incorrect
NoSubtraction
Errors when aggregator cannot subtract
ExportErr(Box<dyn ExportError>)
Fail to export metrics
InvalidInstrumentConfiguration(&'static str)
Invalid instrument configuration such invalid instrument name, invalid instrument description, invalid instrument unit, etc. See spec for full list of requirements.
Trait Implementations§
source§impl Debug for MetricsError
impl Debug for MetricsError
source§impl Display for MetricsError
impl Display for MetricsError
source§impl Error for MetricsError
impl Error for MetricsError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<MetricsError> for Error
impl From<MetricsError> for Error
source§fn from(source: MetricsError) -> Self
fn from(source: MetricsError) -> Self
Converts to this type from the input type.
source§impl<T> From<PoisonError<T>> for MetricsError
impl<T> From<PoisonError<T>> for MetricsError
source§fn from(err: PoisonError<T>) -> Self
fn from(err: PoisonError<T>) -> Self
Converts to this type from the input type.