pub struct ConfigValues {Show 20 fields
pub relay: Relay,
pub http: Http,
pub cache: Cache,
pub spool: Spool,
pub limits: Limits,
pub logging: LogConfig,
pub routing: Routing,
pub metrics: Metrics,
pub sentry: SentryConfig,
pub processing: Processing,
pub outcomes: Outcomes,
pub aggregator: AggregatorServiceConfig,
pub secondary_aggregators: Vec<ScopedAggregatorConfig>,
pub auth: AuthConfig,
pub geoip: GeoIpConfig,
pub normalization: Normalization,
pub cardinality_limiter: CardinalityLimiter,
pub health: Health,
pub cogs: Cogs,
pub upload: Upload,
}Expand description
All configuration values that can be deserialized from config.yml.
Fields§
§relay: Relay§http: Http§cache: Cache§spool: Spool§limits: Limits§logging: LogConfig§routing: Routing§metrics: Metrics§sentry: SentryConfig§processing: Processing§outcomes: Outcomes§aggregator: AggregatorServiceConfig§secondary_aggregators: Vec<ScopedAggregatorConfig>§auth: AuthConfig§geoip: GeoIpConfig§normalization: Normalization§cardinality_limiter: CardinalityLimiter§health: Health§cogs: Cogs§upload: UploadTrait Implementations§
Source§impl Debug for ConfigValues
impl Debug for ConfigValues
Source§impl Default for ConfigValues
impl Default for ConfigValues
Source§fn default() -> ConfigValues
fn default() -> ConfigValues
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigValues
impl<'de> Deserialize<'de> for ConfigValues
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 ConfigValues
impl RefUnwindSafe for ConfigValues
impl Send for ConfigValues
impl Sync for ConfigValues
impl Unpin for ConfigValues
impl UnwindSafe for ConfigValues
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