HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: //opt/cpanel/perl5/530/site_lib/Sentry/Raven/Processor.pod
=head1 NAME

Sentry::Raven::Processor - Sentry event processors

=head1 SYNOPSIS

  use Sentry::Raven;
  use Sentry::Raven::Processor::RemoveStackVariables;

  my $raven = Sentry::Raven->new(
    processors => [ Sentry::Raven::Processor::RemoveStackVariables ],
  );

=head1 DESCRIPTION

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

=head1 STANDARD PROCESSORS

=head1 IMPLEMENTING A PROCESSOR

Processors must have the following class methods:

=head2 $processed_event = My::Processor->process($event)

This is the interface for processing events.  Returns a modified version of the event.