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 122126a commit b6ea280Copy full SHA for b6ea280
.changeset/fresh-sheep-remain.md
@@ -0,0 +1,5 @@
1
+---
2
+"@commercetools-frontend/sentry": patch
3
4
+
5
+Add service tag to be sent to sentry.
packages/sentry/src/sentry.ts
@@ -110,6 +110,10 @@ export const boot = () => {
110
const sentryScope = Sentry.getCurrentScope();
111
sentryScope.setTag('role', 'frontend');
112
sentryScope.setTag('applicationName', window.app.applicationName);
113
+ sentryScope.setTag(
114
+ 'service',
115
+ `merchant-center-frontend-${window.app.applicationName}`
116
+ );
117
}
118
};
119
0 commit comments