Skip to content

Commit

Permalink
ref(tracing): Remove sentry_reportAllChanges tag (#6360)
Browse files Browse the repository at this point in the history
The SDK should avoid setting tags when possible. This PR makes sure we remove this tag, which isn't really useful anymore. We were using this to track metadata when we were tracking improvements to `idleTimeout`, but now that we've shipped that with v7, we can remove this tag.
  • Loading branch information
AbhiPrasad authored Dec 1, 2022
1 parent 7c5aab3 commit 8139853
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/tracing/src/browser/browsertracing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,6 @@ export class BrowserTracing implements Integration {
);
idleTransaction.registerBeforeFinishCallback(transaction => {
addPerformanceEntries(transaction);
transaction.setTag(
'sentry_reportAllChanges',
Boolean(this.options._metricOptions && this.options._metricOptions._reportAllChanges),
);
});

return idleTransaction as Transaction;
Expand Down

0 comments on commit 8139853

Please sign in to comment.