Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(statsd): Use symbolicator-style aggregation #4446

Merged
merged 14 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

## 25.1.0

**Internal**
**Internal**:

- Updates performance score calculation on spans and events to also store cdf values as measurements. ([#4438](https://github.com/getsentry/relay/pull/4438))
- Use symbolicator-style metrics aggregation. ([#4446](https://github.com/getsentry/relay/pull/4446))


## 24.12.2

Expand Down
19 changes: 14 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ console = "0.15.8"
cookie = "0.18.1"
criterion = "0.5.1"
crossbeam-channel = "0.5.13"
crossbeam-utils = "0.8.21"
data-encoding = "2.6.0"
debugid = "0.8.0"
dialoguer = "0.11.0"
Expand Down Expand Up @@ -148,6 +149,7 @@ regex = "1.11.1"
regex-lite = "0.1.6"
reqwest = "0.12.9"
rmp-serde = "1.3.0"
rustc-hash = "2.1.0"
sentry = "0.34.0"
sentry-core = "0.34.0"
sentry-kafka-schemas = { version = "0.1.122", default-features = false }
Expand Down Expand Up @@ -179,6 +181,7 @@ synstructure = { version = "0.13.1" }
sysinfo = { git = "https://github.com/getsentry/sysinfo.git", rev = "e2e5d530600f96bdd79652c856918da23e5dd938" }
tempfile = "3.14.0"
thiserror = "1.0.69"
thread_local = "1.1.7"
tikv-jemallocator = "0.6.0"
tokio = { version = "1.42.0", default-features = false }
tower = { version = "0.5.2", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion relay-cardinality/src/redis/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ impl Drop for LimitState<'_> {
let organization_id = self.scoping.organization_id;
let status = if self.rejections > 0 { "limited" } else { "ok" };
metric!(
set(CardinalityLimiterSets::Organizations) = organization_id.value() as i64,
set(CardinalityLimiterSets::Organizations) = organization_id.value(),
id = &self.cardinality_limit.id,
passive = passive,
status = status,
Expand Down
10 changes: 0 additions & 10 deletions relay-config/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -545,10 +545,6 @@ pub struct Metrics {
/// Setting it to `0` seconds disables the periodic metrics.
/// Defaults to 5 seconds.
pub periodic_secs: u64,
/// Whether local metric aggregation using statdsproxy should be enabled.
///
/// Defaults to `true`.
pub aggregate: bool,
}

impl Default for Metrics {
Expand All @@ -560,7 +556,6 @@ impl Default for Metrics {
hostname_tag: None,
sample_rate: 1.0,
periodic_secs: 5,
aggregate: true,
}
}
}
Expand Down Expand Up @@ -2034,11 +2029,6 @@ impl Config {
self.values.metrics.sample_rate
}

/// Returns whether local metric aggregation should be enabled.
pub fn metrics_aggregate(&self) -> bool {
self.values.metrics.aggregate
}

/// Returns the interval for periodic metrics emitted from Relay.
///
/// `None` if periodic metrics are disabled.
Expand Down
206 changes: 103 additions & 103 deletions relay-server/src/middlewares/body_timing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ fn size_category(size: usize) -> &'static str {
mod tests {
use super::*;
use axum::body::HttpBody;
use futures::task::noop_waker_ref;
use relay_statsd::with_capturing_test_client;
// use futures::task::noop_waker_ref;
// use relay_statsd::with_capturing_test_client;

struct ErrorBody;

Expand All @@ -170,107 +170,107 @@ mod tests {
}
}

#[test]
fn test_empty_body() {
let captures = with_capturing_test_client(|| {
let waker = noop_waker_ref();
let mut cx = Context::from_waker(waker);

let empty_body = Body::from(vec![]);
let mut timed_body = TimedBody::new(empty_body, None);
let pinned = Pin::new(&mut timed_body);

let _ = pinned.poll_frame(&mut cx);
});
assert_eq!(
captures,
["requests.body_read.duration:0|ms|#route:unknown,size:lt1KB,status:completed"]
);
}

#[test]
fn test_body() {
let captures = with_capturing_test_client(|| {
let waker = noop_waker_ref();
let mut cx = Context::from_waker(waker);

let body = Body::new("cool test".to_string());
let mut timed_body = TimedBody::new(body, None);
let mut pinned = Pin::new(&mut timed_body);

let _ = pinned.as_mut().poll_frame(&mut cx);
let _ = pinned.as_mut().poll_frame(&mut cx);
});
assert_eq!(
captures,
["requests.body_read.duration:0|ms|#route:unknown,size:lt1KB,status:completed"]
);
}

#[test]
fn test_dropped_while_reading() {
let captures = with_capturing_test_client(|| {
let waker = noop_waker_ref();
let mut cx = Context::from_waker(waker);

let body = Body::new("just calling this once".to_string());
let mut timed_body = TimedBody::new(body, None);
let pinned = Pin::new(&mut timed_body);

let _ = pinned.poll_frame(&mut cx);
});
assert_eq!(
captures,
["requests.body_read.duration:0|ms|#route:unknown,size:lt1KB,status:dropped"]
)
}

#[test]
fn test_dropped_before_reading() {
let captures = with_capturing_test_client(|| {
let body = Body::new("dropped".to_string());
let _ = TimedBody::new(body, None);
});
assert_eq!(captures.len(), 0);
}

#[test]
fn test_failed_body() {
let captures = with_capturing_test_client(|| {
let waker = noop_waker_ref();
let mut cx = Context::from_waker(waker);

let body = Body::new(ErrorBody {});
let mut timed_body = TimedBody::new(body, None);

let pinned = Pin::new(&mut timed_body);
let _ = pinned.poll_frame(&mut cx);
});
assert_eq!(
captures,
["requests.body_read.duration:0|ms|#route:unknown,size:lt1KB,status:failed"]
)
}

#[test]
fn test_large_body() {
let captures = with_capturing_test_client(|| {
let waker = noop_waker_ref();
let mut cx = Context::from_waker(waker);

let data = (0..2000).map(|i| i as u8).collect::<Vec<u8>>();

let body = Body::from(data);
let mut timed_body = TimedBody::new(body, None);

let mut pinned = Pin::new(&mut timed_body);
while let Poll::Ready(Some(Ok(_))) = pinned.as_mut().poll_frame(&mut cx) {}
});
assert_eq!(
captures,
["requests.body_read.duration:0|ms|#route:unknown,size:lt10KB,status:completed"]
)
}
// #[test]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will restore all tests that currently use with_capturing_test_client after we've tested the PoC.

// fn test_empty_body() {
// let captures = with_capturing_test_client(|| {
// let waker = noop_waker_ref();
// let mut cx = Context::from_waker(waker);

// let empty_body = Body::from(vec![]);
// let mut timed_body = TimedBody::new(empty_body, None);
// let pinned = Pin::new(&mut timed_body);

// let _ = pinned.poll_frame(&mut cx);
// });
// assert_eq!(
// captures,
// ["requests.body_read.duration:0|ms|#route:unknown,size:lt1KB,status:completed"]
// );
// }

// #[test]
// fn test_body() {
// let captures = with_capturing_test_client(|| {
// let waker = noop_waker_ref();
// let mut cx = Context::from_waker(waker);

// let body = Body::new("cool test".to_string());
// let mut timed_body = TimedBody::new(body, None);
// let mut pinned = Pin::new(&mut timed_body);

// let _ = pinned.as_mut().poll_frame(&mut cx);
// let _ = pinned.as_mut().poll_frame(&mut cx);
// });
// assert_eq!(
// captures,
// ["requests.body_read.duration:0|ms|#route:unknown,size:lt1KB,status:completed"]
// );
// }

// #[test]
// fn test_dropped_while_reading() {
// let captures = with_capturing_test_client(|| {
// let waker = noop_waker_ref();
// let mut cx = Context::from_waker(waker);

// let body = Body::new("just calling this once".to_string());
// let mut timed_body = TimedBody::new(body, None);
// let pinned = Pin::new(&mut timed_body);

// let _ = pinned.poll_frame(&mut cx);
// });
// assert_eq!(
// captures,
// ["requests.body_read.duration:0|ms|#route:unknown,size:lt1KB,status:dropped"]
// )
// }

// #[test]
// fn test_dropped_before_reading() {
// let captures = with_capturing_test_client(|| {
// let body = Body::new("dropped".to_string());
// let _ = TimedBody::new(body, None);
// });
// assert_eq!(captures.len(), 0);
// }

// #[test]
// fn test_failed_body() {
// let captures = with_capturing_test_client(|| {
// let waker = noop_waker_ref();
// let mut cx = Context::from_waker(waker);

// let body = Body::new(ErrorBody {});
// let mut timed_body = TimedBody::new(body, None);

// let pinned = Pin::new(&mut timed_body);
// let _ = pinned.poll_frame(&mut cx);
// });
// assert_eq!(
// captures,
// ["requests.body_read.duration:0|ms|#route:unknown,size:lt1KB,status:failed"]
// )
// }

// #[test]
// fn test_large_body() {
// let captures = with_capturing_test_client(|| {
// let waker = noop_waker_ref();
// let mut cx = Context::from_waker(waker);

// let data = (0..2000).map(|i| i as u8).collect::<Vec<u8>>();

// let body = Body::from(data);
// let mut timed_body = TimedBody::new(body, None);

// let mut pinned = Pin::new(&mut timed_body);
// while let Poll::Ready(Some(Ok(_))) = pinned.as_mut().poll_frame(&mut cx) {}
// });
// assert_eq!(
// captures,
// ["requests.body_read.duration:0|ms|#route:unknown,size:lt10KB,status:completed"]
// )
// }

#[test]
fn test_size_category() {
Expand Down
3 changes: 2 additions & 1 deletion relay-server/src/middlewares/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ pub async fn metrics(mut request: Request, next: Next) -> Response {
route = route,
method = method.as_str(),
);
let status = response.status();
relay_statsd::metric!(
counter(RelayCounters::ResponsesStatusCodes) += 1,
status_code = response.status().as_str(),
status_code = status.as_str(),
route = route,
method = method.as_str(),
);
Expand Down
3 changes: 2 additions & 1 deletion relay-server/src/services/outcome.rs
Original file line number Diff line number Diff line change
Expand Up @@ -866,9 +866,10 @@ impl FromMessage<TrackRawOutcome> for OutcomeProducer {
}

fn send_outcome_metric(message: &impl TrackOutcomeLike, to: &'static str) {
let reason = message.reason();
metric!(
counter(RelayCounters::Outcomes) += 1,
reason = message.reason().as_deref().unwrap_or(""),
reason = reason.as_deref().unwrap_or(""),
outcome = message.tag_name(),
to = to,
);
Expand Down
Loading
Loading