Skip to content

Commit 7fc18b5

Browse files
authored
feat(sourcemaps) - Autocomplete symbolicated-in-app field in Discover and Issues search (#89686)
Field was already queryable, this just exposes it to be useable for everyone.
1 parent 97bbb2b commit 7fc18b5

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/sentry/rules/conditions/event_attribute.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ def _handle(cls, path: list[str], event: GroupEvent) -> list[str]:
6565
"app.in_foreground": Columns.APP_IN_FOREGROUND,
6666
"os.distribution_name": Columns.OS_DISTRIBUTION_NAME,
6767
"os.distribution_version": Columns.OS_DISTRIBUTION_VERSION,
68+
"symbolicated_in_app": Columns.SYMBOLICATED_IN_APP,
6869
}
6970

7071

static/app/utils/fields/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ export enum FieldKey {
107107
STACK_RESOURCE = 'stack.resource',
108108
STACK_STACK_LEVEL = 'stack.stack_level',
109109
STATUS = 'status',
110+
SYMBOLICATED_IN_APP = 'symbolicated_in_app',
110111
TIMESTAMP = 'timestamp',
111112
TIMESTAMP_TO_DAY = 'timestamp.to_day',
112113
TIMESTAMP_TO_HOUR = 'timestamp.to_hour',
@@ -1703,6 +1704,11 @@ const EVENT_FIELD_DEFINITIONS: Record<AllEventFieldKeys, FieldDefinition> = {
17031704
kind: FieldKind.FIELD,
17041705
valueType: FieldValueType.NUMBER,
17051706
},
1707+
[FieldKey.SYMBOLICATED_IN_APP]: {
1708+
desc: t('Indicates if all in-app frames are symbolicated'),
1709+
kind: FieldKind.FIELD,
1710+
valueType: FieldValueType.BOOLEAN,
1711+
},
17061712
[FieldKey.STATUS]: {
17071713
desc: t('Status of the issue'),
17081714
kind: FieldKind.FIELD,
@@ -1929,6 +1935,7 @@ export const ISSUE_EVENT_PROPERTY_FIELDS: FieldKey[] = [
19291935
FieldKey.STACK_MODULE,
19301936
FieldKey.STACK_PACKAGE,
19311937
FieldKey.STACK_STACK_LEVEL,
1938+
FieldKey.SYMBOLICATED_IN_APP,
19321939
FieldKey.TIMESTAMP,
19331940
FieldKey.TITLE,
19341941
FieldKey.TRACE,
@@ -2088,6 +2095,7 @@ export const DISCOVER_FIELDS = [
20882095
FieldKey.STACK_COLNO,
20892096
FieldKey.STACK_LINENO,
20902097
FieldKey.STACK_STACK_LEVEL,
2098+
FieldKey.SYMBOLICATED_IN_APP,
20912099
// contexts.key and contexts.value omitted on purpose.
20922100

20932101
// App context fields

0 commit comments

Comments
 (0)