1drop / shopware-sentry

Sentry plugin for Shopware
MIT License
20 stars 9 forks source link
sentry shopware shopware-plugin

OdSentry plugin for Shopware 5.6

What is Sentry

Sentry is a modern error tracking platform. You can log and trace errors in Sentry and collect directly feedback from user.

Detail

Sentry can:

What this plugin does

This plugin gives you the possibility to collect errors that occured in Shopware to a custom Sentry project.

Configuration

User Feedback

If you enable it and a catchable error occurs, the user will be asked to provide additional feedback:

User Feedback

Installation

Requires PHP >= 7.1 !!

Load plugin

Composer (Shopware 5.5+)

Git Version

Shopware plugin store

Plugin can be ordered for free in your plugin manager or in Shopware plugin store

Install plugin

CLI

Web

Skip Exceptions

Since 1.1.1 it is possible to skip exceptions for capture add following snippet to our config.php

'sentry' => [
    'skip_capture' => [
        Symfony\Component\Console\Exception\CommandNotFoundException::class,
        Enlight_Controller_Exception::class,
//        Shopware\Components\Api\Exception\NotFoundException:class,
        MyCustomException::class
    ]
]

Authors