pub enum SamplingStrategy {
AlwaysOn,
AlwaysOff,
Ratio(f64),
RateLimited {
max_per_second: u32,
},
ParentBased,
Custom(String),
}Expand description
Sampling strategy for traces
Variants§
AlwaysOn
Always sample
AlwaysOff
Never sample
Ratio(f64)
Sample a fixed ratio (0.0 to 1.0)
RateLimited
Sample based on rate limit (max per second)
ParentBased
Parent-based sampling (inherit from parent)
Custom(String)
Custom sampler by name
Trait Implementations§
Source§impl Clone for SamplingStrategy
impl Clone for SamplingStrategy
Source§fn clone(&self) -> SamplingStrategy
fn clone(&self) -> SamplingStrategy
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 SamplingStrategy
impl Debug for SamplingStrategy
Source§impl Default for SamplingStrategy
impl Default for SamplingStrategy
Source§impl<'de> Deserialize<'de> for SamplingStrategy
impl<'de> Deserialize<'de> for SamplingStrategy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SamplingStrategy
impl RefUnwindSafe for SamplingStrategy
impl Send for SamplingStrategy
impl Sync for SamplingStrategy
impl Unpin for SamplingStrategy
impl UnsafeUnpin for SamplingStrategy
impl UnwindSafe for SamplingStrategy
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