Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I include the request.User details in Django's traceback email for a production site

I would like to include the contents of request.user in the context details emailed to the site admins when an error occurs, as well as the traceback and request.GET/POST/COOKIES/META

Any help appreciated.

like image 863
David Miller Avatar asked Jan 20 '23 13:01

David Miller


2 Answers

Because process_exception middleware gets passed the request object, you can add whatever info you like to request.META

class ErrorMiddleware(object):
    """
    Alter HttpRequest objects on Error
    """

    def process_exception(self, request, exception):
        """
        Add user details.
        """
        request.META['USER'] = request.user.username
like image 170
David Miller Avatar answered Jan 30 '23 20:01

David Miller


Make a middleware that has a process_exception method. http://docs.djangoproject.com/en/dev/topics/http/middleware/#process-exception

import sys
import traceback
from django.conf import settings
from django.core.mail import mail_admins

class ProcessExceptionMiddleware(object):
    def process_exception(self, request, exception):
        if not settings.DEBUG:
            msg = '\n\n'.join([request.user, request.GET, request.POST, \
                request.COOKIES, request.META, traceback.format_exc(*sys.exc_info())])

            mail_admins("Error!", msg)

I hope that gives you some ideas!

like image 45
Yuji 'Tomita' Tomita Avatar answered Jan 30 '23 20:01

Yuji 'Tomita' Tomita