I was curious if there’s any additional configuration I need to do with Sentry to filter out sensitive data from issues. When there’s an error with a POST request, I would normally want to see the body parameters associated with the request, but there are some cases where I do not.
I’m using sentry-elixir 7.0.6.
My Phoenix config uses the following to remove sensitive data from the logs:
config :phoenix, :filter_parameters, [
"password",
"account_number",
"routing_number"
]
Is there something I need to do to ensure “account_number” and “routing_number” are never sent to Sentry?