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 3abb12a commit 0400ed7Copy full SHA for 0400ed7
src/sentry/sentry_metrics/use_case_id_registry.py
@@ -10,13 +10,15 @@ class UseCaseID(Enum):
10
SPANS = "spans"
11
TRANSACTIONS = "transactions"
12
SESSIONS = "sessions"
13
+ ESCALATING_ISSUES = "escalating_issues"
14
15
16
# UseCaseKey will be renamed to MetricPathKey
17
METRIC_PATH_MAPPING: Mapping[UseCaseID, UseCaseKey] = {
18
UseCaseID.SPANS: UseCaseKey.PERFORMANCE,
19
UseCaseID.TRANSACTIONS: UseCaseKey.PERFORMANCE,
20
UseCaseID.SESSIONS: UseCaseKey.RELEASE_HEALTH,
21
+ UseCaseID.ESCALATING_ISSUES: UseCaseKey.PERFORMANCE,
22
}
23
24
# TODO: Remove this as soon as the entire indexer system is use case aware
0 commit comments