NAME
Sentry::Raven::Processor::RemoveStackVariables - Remove stack variables from stack traces in events
SYNOPSIS
use Sentry::Raven;
use Sentry::Raven::Processor::RemoveStackVariables;
my $raven = Sentry::Raven->new(
processors => [ Sentry::Raven::Processor::RemoveStackVariables ],
);
DESCRIPTION
This processor removes variables from stack traces before they are posted to the sentry service. This prevents sensitive values from being exposed, such as passwords or credit card numbers.
METHODS
my $processed_event = Sentry::Raven::Processor::RemoveStackVariables->process( $event )
Process an event.