[][src]Struct statsrelay::config::StatsdDuplicateTo

pub struct StatsdDuplicateTo {
    pub shard_map: Vec<String>,
    pub suffix: Option<String>,
    pub prefix: Option<String>,
    pub input_blacklist: Option<String>,
    pub input_filter: Option<String>,
    pub counter_cardinality: Option<u32>,
    pub sampling_threshold: Option<u32>,
    pub sampling_window: Option<u32>,
    pub gauge_cardinality: Option<u32>,
    pub gauge_sampling_threshold: Option<u32>,
    pub gauge_sampling_window: Option<u32>,
    pub timer_cardinality: Option<u32>,
    pub timer_sampling_threshold: Option<u32>,
    pub timer_sampling_window: Option<u32>,
    pub reservoir_size: Option<u32>,
}

Fields

shard_map: Vec<String>suffix: Option<String>prefix: Option<String>input_blacklist: Option<String>input_filter: Option<String>

Apologies for the name, need to preserve backwards compatibility

counter_cardinality: Option<u32>sampling_threshold: Option<u32>sampling_window: Option<u32>gauge_cardinality: Option<u32>gauge_sampling_threshold: Option<u32>gauge_sampling_window: Option<u32>timer_cardinality: Option<u32>timer_sampling_threshold: Option<u32>timer_sampling_window: Option<u32>reservoir_size: Option<u32>

Implementations

impl StatsdDuplicateTo[src]

pub fn from_shards(shards: Vec<String>) -> Self[src]

Trait Implementations

impl Clone for StatsdDuplicateTo[src]

impl Debug for StatsdDuplicateTo[src]

impl<'de> Deserialize<'de> for StatsdDuplicateTo[src]

impl Serialize for StatsdDuplicateTo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.