diff --git a/sentry/sentry-symfony/4.6/config/packages/sentry.yaml b/sentry/sentry-symfony/4.6/config/packages/sentry.yaml index 185699344..4a3a60196 100644 --- a/sentry/sentry-symfony/4.6/config/packages/sentry.yaml +++ b/sentry/sentry-symfony/4.6/config/packages/sentry.yaml @@ -1,6 +1,11 @@ when@prod: sentry: dsn: '%env(SENTRY_DSN)%' + # this hooks into critical paths of the framework (and vendors) to perform + # automatic instrumentation (there might be some performance penalty) + # https://docs.sentry.io/platforms/php/guides/symfony/performance/instrumentation/automatic-instrumentation/ + tracing: + enabled: true # If you are using Monolog, you also need this additional configuration to log the errors correctly: # https://docs.sentry.io/platforms/php/guides/symfony/#monolog-integration @@ -13,3 +18,9 @@ when@prod: # type: sentry # level: !php/const Monolog\Logger::ERROR # hub_id: Sentry\State\HubInterface + +# Uncomment these lines to register a log message processor that resolves PSR-3 placeholders +# https://docs.sentry.io/platforms/php/guides/symfony/#monolog-integration +# services: +# Monolog\Processor\PsrLogMessageProcessor: +# tags: { name: monolog.processor, handler: sentry }