Skip to content

slashtrace/slashtrace-sentry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SlashTrace - Awesome error handler - Sentry handler

This is the Sentry handler for SlashTrace. Use it to send your errors and exceptions to your Sentry account.

Usage

  1. Install using Composer:

    composer require slashtrace/slashtrace-sentry
    
  2. Hook it into SlashTrace:

    use SlashTrace\SlashTrace;
    use SlashTrace\Sentry\SentryHandler;
    
    $handler = new SentryHandler("https://[email protected]/123456"); // <- Your Sentry DSN. Get it from your projects settings on sentry.io
     
    $slashtrace = new SlashTrace();
    $slashtrace->addHandler($handler);

    Alternatively, you can pass in a pre-configured Sentry client when you instantiate the handler:

    $client = Sentry\ClientBuilder::create(["dsn" => "..."]);
    $handler = new SentryHandler($client);
    
    $slashtrace->addHandler($handler);
    

Read the SlashTrace docs to see how to capture errors and exceptions, and how to attach additional data to your events.