question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

"Additional data" displays [Filtered], replaced by PII rule creditcard:filter

See original GitHub issue

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:

Zrzut ekranu 2020-02-24 o 16 54 40

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:closed
  • Created 4 years ago
  • Comments:6 (2 by maintainers)

github_iconTop GitHub Comments

9reactions
untitakercommented, Feb 24, 2020

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.

1reaction
ismeyueyuecommented, Jan 17, 2022
Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found