Repository URL to install this package:
|
Version:
0.3.16 ▾
|
import logging
from django_statsd.clients import statsd
class StatsdHandler(logging.Handler):
"""Send error to statsd"""
def emit(self, record):
if not record.exc_info:
return
statsd.incr('error.%s' % record.exc_info[0].__name__.lower())