The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Sentry::Raven::Processor - Sentry event processors

SYNOPSIS

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

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

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.

STANDARD PROCESSORS

IMPLEMENTING A PROCESSOR

Processors must have the following class methods:

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

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