"Additional data" displays [Filtered], replaced by PII rule creditcard:filter
See original GitHub issue- Review the documentation: https://docs.sentry.io/
- Search for existing issues: https://github.com/getsentry/sentry-javascript/issues
- Use the latest release: https://github.com/getsentry/sentry-javascript/releases
- Provide a link to the affected event from your Sentry account
Package + Version
-
@sentry/browser
-
@sentry/node
-
raven-js
-
raven-node
(raven for node) - other:
Version:
5.12.1
Description
I’m trying to integrate fullstory with sentry by sending fullstory session url to sentry as additional data, like below:
/**
* https://help.fullstory.com/hc/en-us/articles/360020828073-FS-getCurrentSessionURL-Retrieving-a-session-URL-at-time-of-recording
* https://help.fullstory.com/hc/en-us/articles/360020624234-Roll-Your-Own-Integration
*/
// eslint-disable-next-line no-underscore-dangle
window._fs_ready = () => {
Sentry.configureScope((scope) => {
scope.setExtra('fullstoryUrl', window.FS.getCurrentSessionURL());
});
};
In the sentry web application, the fullstoryUrl
appears but has filtered out some parts by PII creditcard:filter
rule, like below:
fullstoryUrl
looks like that:
https://app.fullstory.com/ui/<accountId>/session/5472936014675968%3A4548674178482176"
It seems that sentry recognize this part
5472936014675968
as credit card number…
Is there any way to disable these filtering rules or maybe should I somehow send that url by using different method?
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
PII and Data Scrubbing | Sentry Developer Documentation
It reads as "replace all IP addresses in all strings", or "apply @ip:replace to all $string fields". @ip:replace is called a rule, and...
Read more >Why am I seeing "[Filtered]" in my event data? - Sentry Support
If you feel Sentry is filtering values too aggressively, you have three options: Disable data scrubbing entirely. Go to Your Project → Settings...
Read more >How to Query Personally Identifiable Information with Amazon ...
Screenshot showing the events where PII classified data has been uploaded ... The query looks for all files matching the credit card filter...
Read more >sentry scrubbing sensitive data
In the sentry web application, the fullstoryUrl appears but has filtered out some parts by PII creditcard:filter rule, like below:. Basic Options for...
Read more >philter | Mountain Fog, Inc.
Philter is now certified for Cloudera Dataflow (CDF). You can now redact PHI, PII, and other types of sensitive information in your data...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Please add
fullstoryUrl
to your Safe Fields in your project settings. More information about server-side scrubbing can be found at https://docs.sentry.io/data-management/sensitive-data/#server-side-scrubbing.Thks !