1Sentry::Raven::ProcessoUrs(e3r)Contributed Perl DocumentSaetnitorny::Raven::Processor(3)
2
3
4

NAME

6       Sentry::Raven::Processor - Sentry event processors
7

SYNOPSIS

9         use Sentry::Raven;
10         use Sentry::Raven::Processor::RemoveStackVariables;
11
12         my $raven = Sentry::Raven->new(
13           processors => [ Sentry::Raven::Processor::RemoveStackVariables ],
14         );
15

DESCRIPTION

17       Processors are a mechanism for modifying events after they are
18       generated but before they are posted to the sentry service.  They are
19       useful for scrubbing sensitive data, such as passwords, as well as
20       adding additional context.
21

STANDARD PROCESSORS

IMPLEMENTING A PROCESSOR

24       Processors must have the following class methods:
25
26   $processed_event = My::Processor->process($event)
27       This is the interface for processing events.  Returns a modified
28       version of the event.
29
30
31
32perl v5.32.0                      2020-07-28       Sentry::Raven::Processor(3)
Impressum