-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[HELP NEEDED] Sentry.thirdPartyErrorFilterIntegration overwhelms my quota by not not filtering errors correctly #13835
Comments
Hi, since you said you set the behaviour to In this case, since the third-party script path doesn't seem to change you can use the Maybe with something like |
@lforst You're right that there's a frame from my code in the samples, but this frame is auto-injected by the Sentry SDK outside my control and it breaks the expectation of how I can't control the presence of this frame as it is injected automatically, nor can I easily instruct the SDK to ignore it. As a result, any error from third-party code will include this frame if it interacts with the instrumentation. To me, this looks like a design flaw in the SDK or in Yes, from a technical perspective the frame in question is from my code, but I have no control over it being there, and all of the errors I linked should have been dropped when following the intended behavior of Your suggestion of using I also want This seems like a significant issue for any Sentry customer running ads, as it undermines trust in |
From my point of view, this works as expected. The integration does as much as is technically possible. The SDK is part of your code (i.e. code you included into your bundles), and you likely wouldn't wanna throw away events if the SDK is causing bugs. As you have already correctly identified, if you really want to get rid of these events automatically, you can set You have all the possibilities |
@lforst I agree with you that, from a technical standpoint, the integration functions as expected, and I understand that events from the SDK shouldn't be discarded outright. However, this setup makes it very difficult for me to filter out errors caused by third-party code where I am neither the source nor the caller. How are your other clients handling this, particularly those with ad-heavy sites? I would be surprised if I'm the only one facing this challenge. As mentioned earlier, this issue has significant business implications for me. My options seem to be very limited:
None of these options is satisfactory. Looking again at the code in the stack trace, it appears to be glue code. Even the comment indicates this code isn't meant to be treated as part of the stack trace, but rather that an error occurred downstream after Sentry wrapped global objects with its own handlers:
I feel that no viable solution is being proposed here. I only have a choice between missing critical errors related to third-party code or severely exceeding my budget and quota by letting too many unnecessary event through the filter over a technicality. I would agree with your position if the code in the stack trace was unrelated, but it’s directly tied to the core functionality of the Sentry SDK. This piece of code causes another part of your SDK not to work as intended. You're right, the respective units of code work exactly as intended. The interaction between them is a bug with serious ramifications. |
I feel like we are aligned. Sadly there is not much more to add. We cannot exempt the SDK code, since from the perspective of the SDK it is indistinguishable from your own application code (look at the minified stack trace). The last stack frame is not "glue code" - in fact it is mission critical. It is literally what caught and reported the error you see in sentry. |
The only thing I can come ip with is to pop this stack frame from the stack - I need to review whether that is possible somehow. |
I totally understand that the code is mission critical and should not be exempt, but please understand that from my perspective as a customer of Sentry I am not interested nor involved into the decisions that go into building the SDK. The code in question is an implementation detail of the SDK itself, and for the same reason as implementation details should not be within the purview of the consumers of a piece of code, the same logic should apply here. The SDK should be intelligent enough to tag these specific instances and give me an option to opt out of them. If you will, there should be a third option |
Thanks for raising this then! Gonna backlog this as a feature request. It is uncertain whether we can figure something out. |
Thanks. In the meantime do you have any insight on how other customers with ad networks on their site handle this issue? It would be very useful to know. |
I don't have specific insights but I recommend checking whether any of the methods we provide to filter events fits your use case: https://docs.sentry.io/platforms/javascript/configuration/filtering/ Most of the time there is at least one common denominator to rule out a class of errors. |
is it safe to assume that if the frames array length is bigger than 1, then the first frame is going to be the sentry call OP is talking about? is it possible for you guys to tag these frames with something like i did some tests and best solution i can find is using beforeSend to filter based on filename, but always ignore the first frame cause its going to be the sentry call which is my own code if we can have some kind of flag in the frame it would be really nice the integration can even take advantage of this flag to implement what OP requested |
Technically impossible - if certain requirements are lifted, flakeyly. The solution I am eyeing is just popping frames in the event processing. |
How is the progress? I understand Sentry SDK is technically in my bundle thus considered my code, but it clearly is a third party script causing an error and Sentry catching it. it's like a self fulfilling prophecy :D can't you just rename the function to "__SHOULD_BE_IGNORED__sentryWrapped" and filter that out? I guess the issue is minification. |
@patroza, we haven't been looking at this recently. Thanks for linking the event - always helps in finding edge cases. You are completely right that Sentry is getting picked up as "your" code - which is hella shitty. You are also right that minification is the reason we cannot use function names as a identificator for dropping SDK frames is minification. I just had an idea though that I wanna write down for posterity: This has the possibility to be a bit flakey but we could generate a stack trace in our wrapping code, parse the stack, grab the function name off the first stack frame, and drop all frames that have the same function name and are within a window of the |
Is there an existing issue for this?
How do you use Sentry?
Sentry Saas (sentry.io)
Which SDK are you using?
@sentry/browser
SDK Version
8.32.0
Framework Version
Svelte 4.2.19
Link to Sentry event
https://2048-ip-holding-bv.sentry.io/issues/7739542/?project=4507408148856912&query=is%3Aunresolved%20issue.priority%3A%5Bhigh%2C%20medium%5D&referrer=issue-stream&statsPeriod=24h&stream_index=7
Reproduction Example/SDK Setup
No response
Steps to Reproduce
Reproduction is difficult because the issue stems from third-party ad code injected by the Ezoic Standalone SDK. The quality and error rate are unpredictable during user sessions, and we have no control over when the errors occur since the code is injected by third parties.
However, the problem should be visible through the provided event link in Sentry. If you look at the stack trace you'll notice that:
/ym.0.js
. This is a third-party scriptnode_modules/.pnpm/@[email protected]/node_modules/@sentry/browser/build/npm/esm/helpers.js
My
thirdPartyErrorFilterIntegration
is set to"drop-error-if-exclusively-contains-third-party-frames"
and it should be dropping these errors completely, but I believe it doesn't due to that one stack frame at the bottom.This is thoroughly overwhelming my quotas: within 24 hours I've blown through the 50k errors in my account and I'm at a loss for how to continue. I've switched the mode to
"drop-error-if-contains-third-party-frames"
for now but this will kill my visibility on errors that are partially related to my code. It is ok as a temporary measure, but I need a long-term fix.Here is a description of my setup:
Then, the Sentry fingerprint is set up as follows in
vite.config.ts
(this snippet is heavily altered to avoid listing the other plugins):Just to be sure, I also verified that my bundled code also contains the following bits of JS that should be identifying the modules. Notice how the app key is in there:
Dependencies:
...and a couple more
Expected Result
Errors such as the one linked, and many more in my dashboard, should have been discarded clientside, but somehow the snippet shown in the bottom stack frame, presumably causes them to be included (I say presumably because I don't know for sure this is the case but I presume so from reading the source of
thirdPartyErrorFilterIntegration
)Here's the relevant snippet being included in the stack trace, from file
node_modules/.pnpm/@[email protected]/node_modules/@sentry/browser/build/npm/esm/helpers.js
Here's a link to the file in question in this repo.
I don't know why this function is part of the stack trace.
Actual Result
Errors that should be filtered according to "
drop-error-if-exclusively-contains-third-party-frames
" are not filtered, overwhelming my quota. About 40k of the 50k errors I've received in the last 24 hours should have been dropped. It seems like a single stack frame is preventing them from being dropped.You can review the following samples. Please note how the last stack frame always originates from some Sentry code and is presumably blocking the event from being dropped.
The text was updated successfully, but these errors were encountered: