Ignoring sensitive data
Crunch provides certain data attributes that can be passed to your elements directly. These data attributes will help you control what we capture and how we capture is.
By default, everything is tracked i.e. all the associated texts are captured for the best analysis possible.
By default, no input element values are captured to maintain the privacy.
You can give a data-crunch-capture-input attribute on input elements on which you want the input data to be captured.
This data will be attributed to the current user on your application.
Use case: If you have a search bar in your application in which users are searching for various keywords for your application, you can capture this data and we will analyze it for you to gain insights into user activity.
By default password type of input fields will never be captured even if you pass data-crunch-capture-input
You can give a data-crunch-ignore-content attribute to not capture the data within that particular element. Any activity inside this element with data-crunch-ignore-content will not be captured unless it has data-crunch-capture-content provided on a certain element within the ignored parent.
Note: In case an input element does not contain the placeholder value, we will capture the nearest text available and set it as the placeholder value. Data-crunch-ignore-content will be discarded in this particular case only to get the placeholder value. The content for other events (apart from input clicks) will still not be captured inside data-crunch-ignore-content.
Last updated