pub struct BasicTelemetry {
pub add_container_tags: bool,
}Expand description
Tagging options for basic liveness telemetry.
Fields§
Whether liveness signals include the process container’s low-cardinality tags.
Defaults to false. Enable this for containerized deployments that need to associate basic
telemetry with the running container. If the container cannot be resolved, liveness signals
are emitted without these tags.
Trait Implementations§
Source§impl Clone for BasicTelemetry
impl Clone for BasicTelemetry
Source§fn clone(&self) -> BasicTelemetry
fn clone(&self) -> BasicTelemetry
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 BasicTelemetry
impl Debug for BasicTelemetry
Source§impl Default for BasicTelemetry
impl Default for BasicTelemetry
Source§fn default() -> BasicTelemetry
fn default() -> BasicTelemetry
Returns the “default value” for a type. Read more
Source§impl PartialEq for BasicTelemetry
impl PartialEq for BasicTelemetry
Source§impl Serialize for BasicTelemetry
impl Serialize for BasicTelemetry
impl StructuralPartialEq for BasicTelemetry
Auto Trait Implementations§
impl Freeze for BasicTelemetry
impl RefUnwindSafe for BasicTelemetry
impl Send for BasicTelemetry
impl Sync for BasicTelemetry
impl Unpin for BasicTelemetry
impl UnwindSafe for BasicTelemetry
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