Skip to content

Commit 4821976

Browse files
phacopsjjbayer
andauthored
feat(spans): Extract metrics for file spans (#2874)
Co-authored-by: Joris Bayer <[email protected]>
1 parent c231c9f commit 4821976

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
**Internal**:
66

77
- 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))
8+
- Extract metrics for file spans. ([#2874](https://github.com/getsentry/relay/pull/2874))
89
- 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))
910
- Emit a `processor.message.duration` metric to assess the throughput of the internal CPU pool. ([#2877](https://github.com/getsentry/relay/pull/2877))
1011

relay-dynamic-config/src/defaults.rs

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ pub fn add_span_metrics(project_config: &mut ProjectConfig) {
6363
(
6464
RuleCondition::eq("span.op", "http.client")
6565
| RuleCondition::glob("span.op", MOBILE_OPS)
66+
| RuleCondition::glob("span.op", "file.*")
6667
| (RuleCondition::glob("span.op", "db*") & !is_disabled & !is_mongo)
6768
| resource_condition.clone(),
6869
resource_condition,

0 commit comments

Comments
 (0)