saluki_components/config/
mod.rs

1//! Datadog-specific configuration providers.
2
3pub mod autoscaling_failover;
4pub mod cluster_agent;
5pub mod mrf;
6
7// `KEY_ALIASES` and `DatadogRemapper` moved to `datadog-agent-config` so the configuration system
8// can build its loader without depending on this crate. Keep the re-export while the binary
9// migrates its imports to the new home.
10// TODO: remove after migration to typed config.
11pub use datadog_agent_config::{DatadogRemapper, KEY_ALIASES};
12
13pub use self::autoscaling_failover::AutoscalingFailoverConfiguration;
14pub use self::cluster_agent::ClusterAgentConfiguration;
15pub use self::mrf::MrfConfiguration;