relay_config/aggregator.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
//! Metrics aggregator configuration.
use relay_metrics::aggregator::AggregatorConfig;
use relay_metrics::{MetricNamespace, UnixTimestamp};
use serde::{Deserialize, Serialize};
/// Parameters used for metric aggregation.
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(default)]
pub struct AggregatorServiceConfig {
/// The config used by the internal aggregator.
#[serde(flatten)]
pub aggregator: AggregatorConfig,
/// The length the name of a metric is allowed to be.
///
/// Defaults to `200` bytes.
pub max_name_length: usize,
/// The length the tag key is allowed to be.
///
/// Defaults to `200` bytes.
pub max_tag_key_length: usize,
/// The length the tag value is allowed to be.
///
/// Defaults to `200` chars.
pub max_tag_value_length: usize,
/// The approximate maximum number of bytes submitted within one flush cycle.
///
/// This controls how big flushed batches of buckets get, depending on the number of buckets,
/// the cumulative length of their keys, and the number of raw values. Since final serialization
/// adds some additional overhead, this number is approximate and some safety margin should be
/// left to hard limits.
pub max_flush_bytes: usize,
}
impl AggregatorServiceConfig {
/// Returns the valid range for metrics timestamps.
///
/// Metrics or buckets outside of this range should be discarded.
pub fn timestamp_range(&self) -> std::ops::Range<UnixTimestamp> {
let now = UnixTimestamp::now().as_secs();
let min_timestamp =
UnixTimestamp::from_secs(now.saturating_sub(self.aggregator.max_secs_in_past));
let max_timestamp =
UnixTimestamp::from_secs(now.saturating_add(self.aggregator.max_secs_in_future));
min_timestamp..max_timestamp
}
}
impl Default for AggregatorServiceConfig {
fn default() -> Self {
Self {
aggregator: AggregatorConfig::default(),
max_name_length: 200,
max_tag_key_length: 200,
max_tag_value_length: 200,
max_flush_bytes: 5_000_000, // 5 MB
}
}
}
/// Contains an [`AggregatorServiceConfig`] for a specific scope.
///
/// For now, the only way to scope an aggregator is by [`MetricNamespace`].
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct ScopedAggregatorConfig {
/// Name of the aggregator, used to tag statsd metrics.
pub name: String,
/// Condition that needs to be met for a metric or bucket to be routed to a
/// secondary aggregator.
pub condition: Condition,
/// The configuration of the secondary aggregator.
pub config: AggregatorServiceConfig,
}
/// Condition that needs to be met for a metric or bucket to be routed to a
/// secondary aggregator.
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(tag = "op", rename_all = "lowercase")]
pub enum Condition {
/// Checks for equality on a specific field.
Eq(FieldCondition),
/// Matches if all conditions are true.
And {
/// Inner rules to combine.
inner: Vec<Condition>,
},
/// Matches if any condition is true.
Or {
/// Inner rules to combine.
inner: Vec<Condition>,
},
/// Inverts the condition.
Not {
/// Inner rule to negate.
inner: Box<Condition>,
},
}
impl Condition {
/// Checks if the condition matches the given namespace.
pub fn matches(&self, namespace: Option<MetricNamespace>) -> bool {
match self {
Condition::Eq(field) => field.matches(namespace),
Condition::And { inner } => inner.iter().all(|cond| cond.matches(namespace)),
Condition::Or { inner } => inner.iter().any(|cond| cond.matches(namespace)),
Condition::Not { inner } => !inner.matches(namespace),
}
}
}
/// Defines a field and a field value to compare to when a [`Condition`] is evaluated.
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(tag = "field", content = "value", rename_all = "lowercase")]
pub enum FieldCondition {
/// Field that allows comparison to a metric or bucket's namespace.
Namespace(MetricNamespace),
}
impl FieldCondition {
fn matches(&self, namespace: Option<MetricNamespace>) -> bool {
match (self, namespace) {
(FieldCondition::Namespace(expected), Some(actual)) => expected == &actual,
_ => false,
}
}
}
#[cfg(test)]
mod tests {
use insta::assert_debug_snapshot;
use relay_metrics::MetricNamespace;
use serde_json::json;
use super::*;
#[test]
fn condition_roundtrip() {
let json = json!({"op": "eq", "field": "namespace", "value": "spans"});
assert_debug_snapshot!(
serde_json::from_value::<Condition>(json).unwrap(),
@r###"
Eq(
Namespace(
Spans,
),
)
"###
);
}
#[test]
fn condition_multiple_namespaces() {
let json = json!({
"op": "or",
"inner": [
{"op": "eq", "field": "namespace", "value": "spans"},
{"op": "eq", "field": "namespace", "value": "custom"}
]
});
let condition = serde_json::from_value::<Condition>(json).unwrap();
assert!(condition.matches(Some(MetricNamespace::Spans)));
assert!(condition.matches(Some(MetricNamespace::Custom)));
assert!(!condition.matches(Some(MetricNamespace::Transactions)));
}
}