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 3ab67c0 commit d821fbeCopy full SHA for d821fbe
static/app/views/explore/constants.tsx
@@ -55,6 +55,8 @@ export const SENTRY_SPAN_STRING_TAGS: string[] = [
55
SpanIndexedField.NORMALIZED_DESCRIPTION,
56
SpanIndexedField.RELEASE, // temporary as orgs with >1k keys still want releases
57
SpanFields.PROJECT_ID,
58
+ SpanFields.SPAN_SYSTEM,
59
+ SpanFields.SPAN_CATEGORY,
60
];
61
62
export const SENTRY_SPAN_NUMBER_TAGS: string[] = [...SENTRY_SEARCHABLE_SPAN_NUMBER_TAGS];
static/app/views/insights/types.tsx
@@ -93,6 +93,8 @@ export enum SpanFields {
93
PROJECT_ID = 'project.id',
94
RESPONSE_CODE = 'span.status_code',
95
DEVICE_CLASS = 'device.class',
96
+ SPAN_SYSTEM = 'span.system',
97
+ SPAN_CATEGORY = 'span.category',
98
}
99
100
type WebVitalsMeasurements =
0 commit comments