oneup / contao-sentry-bundle
This bundle provides an easy integration of sentry.io for Contao 4.4.x and newer.
Installs: 10 163
Dependents: 0
Suggesters: 0
Security: 0
Stars: 11
Watchers: 3
Forks: 3
Open Issues: 0
Type:contao-bundle
Requires
- php: ^8.1
- contao/core-bundle: ^4.13 || ^5.0
- sentry/sentry-symfony: ^5.0
- twig/twig: ^2.7 || ^3.0
Requires (Dev)
- contao/manager-plugin: ^2.0
- friendsofphp/php-cs-fixer: ^2.13
- phpstan/phpstan: ^1.10
- sentry/sentry: ^3.0 || ^4.0
- symfony/config: ^4.0 || ^5.0 || ^6.0
- symfony/dependency-injection: ^4.0 || ^5.0 || ^6.0
- symfony/http-kernel: ^4.0 || ^5.0 || ^6.0
README
This Contao bundle provides an easy integration of sentry.io for Contao 4.13 and 5.x.
--
This is a "wrapper extension" for the sentry/sentry-symfony
bundle.
Setup in the Contao Managed Edition
The basic integration is automatically configured to some sane defaults. To enable
the integration, configure the SENTRY_DSN
variable in your .env.local
file.
Additionally, you can name the SENTRY_ENV
in your .env.local
file, which can be useful
if you e.g. have a test
and prod
installation.
If you need to change any of the defaults, simply configure
the sentry/sentry-symfony
bundle according to the Documentation.
Manual configuration
If you do not use the Contao Managed Edition, you need to configure this bundle as you would
configure the sentry/sentry-symfony
bundle: Documentation
User feedback
On the other hand you might want to implement the User feedback feature of sentry. The user feedback is primarily useful to let the users know that you've gotten notified about the issue and to let users give the opportunity to add some comments.
In order to integrate this feature, you have to alter the error page template. Place a copy of
vendor/contao/core-bundle/src/Resources/views/Error/layout.html.twig
in the directory
templates/ContaoCoreBundle/views/Error/
.
Modify the copied template and place the following snippet just before the closing </body>
tag:
{% set sentry_id = ''|sentry_last_event_id %} {% if sentry_id %} <script src="https://browser.sentry-cdn.com/8.7.0/bundle.feedback.min.js" integrity="sha384-If5t0OtWMly236c4qvXxYalt8pOLHOj9qKZaXu/xDqMqJ5xmdMCwVwXP6dlPyALI" crossorigin="anonymous"></script> <script> Sentry.init({dsn: '{{ ''|sentry_dsn }}'}); Sentry.showReportDialog({eventId: '{{ sentry_id }}'}) // You can also bind the "show" method to an event, e.g. to open the modal on button click {#document.querySelector('.btn-report').addEventListener('click', function (e) {#} {# e.preventDefault();#} {# Sentry.showReportDialog({eventId: '{{ sentry_id }}'})#} {#});#} </script> {% endif %}
Error tracking helper
The Oneup\ContaoSentryBundle\ErrorHandlingTrait
adds useful Sentry helpers.
-
ErrorHandlingTrait::sentryOrThrow
will either log an error/exception to sentry, or it will throw an exception if Sentry integration is not available (e.g. on localhost or indev
environment). It is mostly useful when running looping cronjobs, like synchronizing Contao with a remote system, so an error on syncing a record will not prevent the sync loop from finishing other records. -
ErrorHandlingTraig::sentryCheckIn
has been added for the new Sentry Cron job monitoring. CallsentryCheckIn()
without argument to start a check in, and subsequently with a booleantrue
orfalse
after the job has successfully run or failed.