slashtrace / slashtrace-raygun
Raygun handler for SlashTrace
1.0.0
2018-09-26 17:09 UTC
Requires
- php: >= 5.6
- mindscape/raygun4php: 1.*
- slashtrace/slashtrace: ^1.0
Requires (Dev)
- phpunit/phpunit: ^6.0
This package is auto-updated.
Last update: 2024-10-27 06:18:29 UTC
README
This is the Raygun handler for SlashTrace. Use it to send your errors and exceptions to your Raygun account.
Usage
-
Install using Composer:
composer require slashtrace/slashtrace-raygun
-
Hook it into SlashTrace:
use SlashTrace\SlashTrace; use SlashTrace\Raygun\RaygunHandler; $handler = new RaygunHandler("Your Raygun API key"); $slashtrace = new SlashTrace(); $slashtrace->addHandler($handler);
Alternatively, you can pass in a pre-configured Raygun client when you instantiate the handler:
$raygun = new Raygun4php\RaygunClient("Your Raygun API key"); $handler = new RaygunHandler($raygun); $slashtrace->addHandler($handler);
Read the SlashTrace docs to see how to capture errors and exceptions, and how to attach additional data to your events.