We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f889dc5 commit e8988b6Copy full SHA for e8988b6
relay-dynamic-config/src/defaults.rs
@@ -112,7 +112,7 @@ pub fn add_span_metrics(project_config: &mut ProjectConfig) {
112
/// These metrics are added to [`crate::GlobalConfig`] by the service and enabled
113
/// by project configs in sentry.
114
pub fn hardcoded_span_metrics() -> Vec<(GroupKey, Vec<MetricSpec>, Vec<TagMapping>)> {
115
- let is_ai = RuleCondition::glob("span.op", "ai.*");
+ let is_ai = RuleCondition::glob("span.op", "ai.*") | RuleCondition::glob("span.op", "gen_ai.*");
116
117
let is_db = RuleCondition::eq("span.sentry_tags.category", "db")
118
& !RuleCondition::glob("span.op", DISABLED_DATABASES)
0 commit comments