pub enum DynamicLabelStrategy {
ValuesList {
values: Vec<String>,
},
Counter {
prefix: Option<String>,
cardinality: u64,
},
}Expand description
Strategy for generating dynamic label values.
Determines how a DynamicLabelConfig produces per-tick values for the
label key.
Variants§
ValuesList
Cycle through an explicit list of values.
The label value at each tick is values[tick % values.len()].
Cardinality is implicit (length of the list).
Counter
Sequential counter: "{prefix}{tick % cardinality}".
Produces deterministic, predictable label values that cycle through
cardinality distinct values indefinitely.
Trait Implementations§
Source§impl Clone for DynamicLabelStrategy
impl Clone for DynamicLabelStrategy
Source§fn clone(&self) -> DynamicLabelStrategy
fn clone(&self) -> DynamicLabelStrategy
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 DynamicLabelStrategy
impl Debug for DynamicLabelStrategy
Source§impl<'de> Deserialize<'de> for DynamicLabelStrategy
impl<'de> Deserialize<'de> for DynamicLabelStrategy
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
Source§impl PartialEq for DynamicLabelStrategy
impl PartialEq for DynamicLabelStrategy
Source§fn eq(&self, other: &DynamicLabelStrategy) -> bool
fn eq(&self, other: &DynamicLabelStrategy) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DynamicLabelStrategy
impl Serialize for DynamicLabelStrategy
impl Eq for DynamicLabelStrategy
impl StructuralPartialEq for DynamicLabelStrategy
Auto Trait Implementations§
impl Freeze for DynamicLabelStrategy
impl RefUnwindSafe for DynamicLabelStrategy
impl Send for DynamicLabelStrategy
impl Sync for DynamicLabelStrategy
impl Unpin for DynamicLabelStrategy
impl UnsafeUnpin for DynamicLabelStrategy
impl UnwindSafe for DynamicLabelStrategy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.