It is a Monolog handler for Sentry PHP SDK v2 and v3 with breadcrumbs support.
- Send each log record to a Sentry server
- Send log records as breadcrumbs when they are handled in batch; the main reported log record is the one with the highest log level
- Send log along with exception when one is set in the main log record context
- Customize data sent to Sentry to fit your needs
- Compatible with Monolog 1, 2 and 3
The suggested installation method is via composer:
# For Sentry PHP SDK v3
composer require bgalati/monolog-sentry-handler
# For Sentry PHP SDK v2
composer require bgalati/monolog-sentry-handler:^1.2
<?php
use BGalati\MonologSentryHandler\SentryHandler;
use Sentry\State\Hub;
$sentryHandler = new SentryHandler(Hub::getCurrent());
/** @var $logger Monolog\Logger */
$logger->pushHandler($sentryHandler);
// Add records to the log
$logger->debug('Foo');
$logger->error('Bar');
Check out the handler constructor to know how to control the minimum logging level and bubbling.
Note
- It is a good idea to combine this handler with a
FingersCrossedHandler
and aBufferHandler
to leverage Sentry breadcrumbs. It gives maximum context for each Sentry event.Look at the symfony guide for a complete example with Monolog and symfony
- Symfony guide: it gives a way to integrate this handler to your app
- Working example with Symfony
- Extension points: Customize data sent to Sentry and more
It is pretty much the same thing but this one captures Monolog records as breadcrumbs when flushing in batch.
It provides a workaround for issue getsentry/sentry-php#811 which prevents sending events to Sentry in long running process.
Breadcrumbs support has been proposed in a pull request that has been refused for good reasons that can be checked in the PR. Basically the official one aims to be as simple as possible.
As per this comment, Monolog project does not accept new handler with 3rd party dependencies.
For new handlers with third-party dependencies IMO the right way is to publish as a third-party package, with requires on monolog and on whichever dependency is needed. It lets Composer resolve everything which makes more sense really.
Fork me.
Install dependencies with make vendor
.
Run tests with make tests
.
See CHANGELOG.md.