pub struct ObservabilityHealthReport {
pub state: ObservationHealthState,
pub dropped_observations_total: u64,
pub subscriber_failures_total: u64,
pub projection_failures_total: u64,
pub logging: Option<LoggingHealthReport>,
pub telemetry: Option<TelemetryHealthReport>,
pub last_error: Option<DiagnosticSummary>,
}Expand description
Aggregate routing/runtime health report.
Fields§
§state: ObservationHealthStateAggregate routing health state.
dropped_observations_total: u64Total observations dropped because no route handled them.
subscriber_failures_total: u64Total subscriber failures recorded by the runtime.
projection_failures_total: u64Total projector failures recorded by the runtime.
logging: Option<LoggingHealthReport>Optional attached logging health.
telemetry: Option<TelemetryHealthReport>Optional attached telemetry health.
last_error: Option<DiagnosticSummary>Optional last routing error summary.
Trait Implementations§
Source§impl Clone for ObservabilityHealthReport
impl Clone for ObservabilityHealthReport
Source§fn clone(&self) -> ObservabilityHealthReport
fn clone(&self) -> ObservabilityHealthReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ObservabilityHealthReport
impl Debug for ObservabilityHealthReport
Source§impl<'de> Deserialize<'de> for ObservabilityHealthReport
impl<'de> Deserialize<'de> for ObservabilityHealthReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ObservabilityHealthReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ObservabilityHealthReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ObservabilityHealthReport
impl PartialEq for ObservabilityHealthReport
Source§fn eq(&self, other: &ObservabilityHealthReport) -> bool
fn eq(&self, other: &ObservabilityHealthReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ObservabilityHealthReport
impl Serialize for ObservabilityHealthReport
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ObservabilityHealthReport
Auto Trait Implementations§
impl Freeze for ObservabilityHealthReport
impl RefUnwindSafe for ObservabilityHealthReport
impl Send for ObservabilityHealthReport
impl Sync for ObservabilityHealthReport
impl Unpin for ObservabilityHealthReport
impl UnsafeUnpin for ObservabilityHealthReport
impl UnwindSafe for ObservabilityHealthReport
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more