Sentry Tryton module

Sentry Tryton module

This module creates a new LoggingHandler for registering tryton exceptions on sentry. This exception will get some information available on tryton:

  • Info about the current user
  • The list of modules activated and it’s verions.
  • The database name
  • The backend name
  • The request context

It also allows to define a custom error message and description that will be sent to the user instead of showing the full traceback.

Usage

The package includes an example config file for using the sentry handler. You only have to specify your sentry dsn on the first arg of the sentry handler. Once you have modified this file just lunch your trytond with:

trytond --logconf trytond-logconf.cfg

All server exceptions will be stored to sentry now so you can easly fix them without asking your users for additional information

3 Likes

Hi @pokoli ,
May I know how to intergrate sentry without losing the tryton error box?
I found with direct show normal tryton box will be much easier for user to report the error to us.

Best regrads

Hi Markus,

If you do not set any error message message (the second and third argument of the handler) the error will be raised to the end user, so the normal tryton box willl be shown.

It looks like the way to retain the standard error alert, pass empty strings as the 2nd and 3rd places of args. If you omit those, it will error on startup.