pub mod rate {
pub const MAX_SAMPLE_RATE: f64 = 1.0;
pub const MIN_SAMPLE_RATE: f64 = 0.0;
}
pub mod pattern {
pub const NO_RULE: &str = "";
}
pub mod numeric {
pub const KNUTH_FACTOR: u64 = 1_111_111_111_111_111_111;
pub const MAX_UINT_64BITS: u64 = u64::MAX;
}
#[allow(unused)]
pub mod attr {
pub const SERVICE_TAG: &str = "service.name";
pub const ENV_TAG: &str = "env";
pub const RESOURCE_TAG: &str = "resource.name";
}
#[allow(unused)]
pub mod provenance {
pub const CUSTOMER: &str = "customer";
pub const DYNAMIC: &str = "dynamic";
pub const DEFAULT: &str = "default";
}