AppSignal session data filtering
Session data filtering will filter out any values from specified keys in thefilter_session_data configuration option. Any filtered out value will be replaced with [FILTERED] before it leaves your application and is send to the AppSignal servers. This means that AppSignal never receives any of the filtered data.
In the session data filtering, there’s support for nested hashes and nested hashes in arrays. Any hash we encounter in your parameters will be filtered.
To use this filtering, add the following to your config/appsignal.exs file in the environment group you want it to apply. The filter_session_data value is an Array of Strings.
Skip sending session data
To filter all session data without individual key filtering, setskip_session_data to true. This means that the session data is set to nil and will not be stored for AppSignal transactions.