Re: Notify Customer Support of Request Failures

2015-09-01 Thread murat . knecht
Thank you, thought there may be an obvious OS project I am missing. But probably Avraham is right and we should just log them and have a log-analysis tool notify us properly. Cheers, murat Am Sonntag, 30. August 2015 23:47:57 UTC+8 schrieb Gergely Polonkai: > > Hello, > > in a default Django i

Re: Notify Customer Support of Request Failures

2015-08-30 Thread Gergely Polonkai
Hello, in a default Django installation the 500 responses are handled by the logger, not a middleware. It is possible to write a middleware that captures all error responses, and sends a mail about each of them (or only if they are relevant). I don't know of any that is already written, but based

Re: Notify Customer Support of Request Failures

2015-08-30 Thread Avraham Serour
add logging messages everywhere that matters, include any information relevant to you, then monitor the logs. the ELK stack is nice ( https://www.elastic.co/products/logstash) On Sun, Aug 30, 2015 at 7:49 AM, wrote: > Hello, > > I'd like to notify our customer support of certain errors. For exam

Notify Customer Support of Request Failures

2015-08-30 Thread murat . knecht
Hello, I'd like to notify our customer support of certain errors. For example, if a sign up fails (a 500, for whatever reason), I want them to get a mail with as much information as possible about the customers and their request, so they can contact them and resolve the issue. Two questions abo