Skip to content

Commit

Permalink
feat(spans): Extract metrics for file spans (#2874)
Browse files Browse the repository at this point in the history
Co-authored-by: Joris Bayer <joris.bayer@sentry.io>
  • Loading branch information
phacops and jjbayer authored Dec 20, 2023
1 parent c231c9f commit 4821976
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
**Internal**:

- Use a Lua script and in-memory cache for the cardinality limiting to reduce load on Redis. ([#2849](https://github.com/getsentry/relay/pull/2849))
- Extract metrics for file spans. ([#2874](https://github.com/getsentry/relay/pull/2874))
- Add an internal endpoint that allows Relays to submit metrics from multiple projects in a single request. ([#2869](https://github.com/getsentry/relay/pull/2869))
- Emit a `processor.message.duration` metric to assess the throughput of the internal CPU pool. ([#2877](https://github.com/getsentry/relay/pull/2877))

Expand Down
1 change: 1 addition & 0 deletions relay-dynamic-config/src/defaults.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ pub fn add_span_metrics(project_config: &mut ProjectConfig) {
(
RuleCondition::eq("span.op", "http.client")
| RuleCondition::glob("span.op", MOBILE_OPS)
| RuleCondition::glob("span.op", "file.*")
| (RuleCondition::glob("span.op", "db*") & !is_disabled & !is_mongo)
| resource_condition.clone(),
resource_condition,
Expand Down

0 comments on commit 4821976

Please sign in to comment.