#[non_exhaustive]pub enum TelemetryNs {
Node,
Edge,
Runtime,
}Expand description
Logical namespace for telemetry keys.
Separates metrics that describe nodes, edges, and the runtime itself.
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.
Node
Node level metrics such as processed counts and latencies.
Edge
Edge level metrics such as queue depth.
Runtime
Runtime level metrics that are not tied to a particular node or edge.
Trait Implementations§
Source§impl Clone for TelemetryNs
impl Clone for TelemetryNs
Source§fn clone(&self) -> TelemetryNs
fn clone(&self) -> TelemetryNs
Returns a duplicate of the value. Read more
1.0.0 · 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 TelemetryNs
impl Debug for TelemetryNs
Source§impl Hash for TelemetryNs
impl Hash for TelemetryNs
Source§impl PartialEq for TelemetryNs
impl PartialEq for TelemetryNs
impl Copy for TelemetryNs
impl Eq for TelemetryNs
impl StructuralPartialEq for TelemetryNs
Auto Trait Implementations§
impl Freeze for TelemetryNs
impl RefUnwindSafe for TelemetryNs
impl Send for TelemetryNs
impl Sync for TelemetryNs
impl Unpin for TelemetryNs
impl UnsafeUnpin for TelemetryNs
impl UnwindSafe for TelemetryNs
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