Browse Source

fix(perf): Fix 'Missing instrumentation' appearing for Ember SDK (#20770)

This includes ember in the list to check if it's from a browser sdk
k-fish 4 years ago
parent
commit
dbe1c47688

+ 1 - 0
src/sentry/static/sentry/app/components/events/interfaces/spans/utils.tsx

@@ -604,6 +604,7 @@ export function isEventFromBrowserJavaScriptSDK(event: SentryTransactionEvent):
     'sentry.javascript.browser',
     'sentry.javascript.react',
     'sentry.javascript.gatsby',
+    'sentry.javascript.ember',
   ].includes(sdkName.toLowerCase());
 }