Monolog Sentry Bundle
, (*1)
Bundle for appending useful data to Monolog log records like username,
parsed user-agent header, host name, Symfony version, commit hash and a lot more - you can provide custom tags
to be added to all your logs., (*2)
Installation
Install bundle with composer require dziki/monolog-sentry-bundle
command., (*3)
TL;DR
Comparison of exactly same error handled by default monolog raven handler with sentry/sentry
package client with bundle
turned off and on with some basic config. As you can see - after turning bundle on - browser, user,
breadcrumbs and some valuable tags showed up, making your error logs much easier to read., (*4)
Before
, (*5)
After
, (*6)
Enable the Bundle
Add entry to config/bundles.php
:, (*7)
return [
// ...
Dziki\MonologSentryBundle\MonologSentryBundle::class => ['all' => true],
];
or to app/AppKernel.php
, (*8)
<?php // app/AppKernel.php
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new Dziki\MonologSentryBundle\MonologSentryBundle(),
);
// ...
}
// ...
}
Configuration
Default configuration does nothing, You need to adjust it manually according to Your needs:, (*9)
monolog_sentry:
user_context: false # append username from TokenStorage to log
user_agent_parser: false # install donatj/phpuseragentparser package
# and set to 'phpuseragent' to parse browser name, version and platform from user agent
You can turn on logging user context by setting value to true
- it requires symfony/security-bundle
package.
user_agent_parser
requires valid user agent header parser service as value.
Parsing user agent takes about 0.1ms (up to 1ms using native parser) for every request, so..., (*10)
Caching once parsed User Agents
Caching is supported when service implementing Psr\SimpleCache\CacheInterface
is provided under cache
config entry.
Starting from version 4.1 of Symfony there is default simple cache service cache.app.simple
, in previous versions you
need to define own service:, (*11)
monolog_sentry:
cache: cache.app.simple # service implementing "Psr\SimpleCache\CacheInterface" interface
You can extend amount of logged data by adding custom tags. For example, for logging Symfony version, setting
useful Sentry environment and server name you should modify config to this:, (*12)
monolog_sentry:
...
tags:
symfony_version: !php/const Symfony\Component\HttpKernel\Kernel::VERSION # useful for regression check
commit: '%env(APP_REVISION)%' # for example hash of commit, set your own environment variable or parameter
environment: '%env(SERVER_NAME)%' # Sentry environment discriminator, much more useful than default `prod`
Full basic config
monolog_sentry:
user_context: true # append username from TokenStorage to log
user_agent_parser: phpuseragent # parse browser name, version and platform from user agent
cache: cache.app.simple # service implementing "Psr\SimpleCache\CacheInterface" interface, since SF 4.1
tags:
symfony_version: !php/const Symfony\Component\HttpKernel\Kernel::VERSION # useful for regression check
commit: '%env(APP_REVISION)%' # for example hash of commit, set your own environment variable or parameter
environment: '%env(SERVER_NAME)%' # Sentry environment discriminator, much more useful than default `prod`
User Agent parser
Bundle supports two parsers:
- phpuseragent
(github.com/donatj/PhpUserAgent) - as suggested package
- native
(get_browser()) - browscap configuration setting in php.ini
must point to the correct location of the browscap.ini, (*13)
Configurable through user_agent_parser
value, respectively phpuseragent
or native
. You can also add own, by providing
name of service implementing ParserInterface., (*14)
Hints
- Add
stop_buffering: false
to your fingers_crossed
handler to keep low level messages notifications as breadcrumbs:
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: buffered
stop_buffering: false
sentry:
type: raven
dsn: '%env(SENTRY_DSN)%'
level: info # logs which will be shown as breadcrumbs in Sentry issue
release: 1.0.0
- Add Sentry handler
release
option to monolog config for easy regression seeking:
monolog:
handlers:
...
sentry:
...
release: '%env(APP_VERSION)%' # version tag or any release ID
License
MonologSentryBundle is released under the MIT license., (*15)
, (*16)