What does your code do to contact you when things go badly wrong?
Actually what i want to know is, How do you get informed by code if something went wrong on your application?
|
What does your code do to contact you when things go badly wrong? Actually what i want to know is, How do you get informed by code if something went wrong on your application? |
||||
|
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
In my apps, I have a three layers of protection:
At my current place, I have access to the log directory on the production server. If that's not possible, write your logs to a database. I'm using log4j, if that matters. [EDIT] To achieve #2, I wrote a This is simple. The tricky part is to install this filter. To do that, you must set the log level of the root logger to TRACE (or at least DEBUG). Here is what the XML config looks like:
As you can see, I'm using the filter in the "real" appender ( The main disadvantage is that isDebugLevel() will always return true, so you need to do some fine tuning in the log config to disable logging for noisy stuff like Spring or Hibernate. OTOH, events won't be really logged, just saved in an ArrayList. This takes some time but doesn't kill you unless you're writing StackOverflow ;) |
|||||
|
|
I don't know; nothing has ever gone wrong with my code. :) |
|||||||||||||
|
|
I get an e-mail to an errors alias (which is filtered from my Inbox). At one point in my career, I would get a text message too, but I think I've chilled out too much to want to be that connected. |
|||
|
|
|
It depends on the process, and severity/importance of the issue but normally:
|
|||
|
|
|
It doesn't contact me, it write to a log table and emails the application support group. |
|||
|
|
|
What kind of application? For web sites, I have log4net setup to sent ERROR/FATALS to the Windows event logs, which in turn has a master machine setup to subscribe to various servers logs and send high level things to email/phones based on rules. You could of course have log4net just send those ERR/FATALS to email without the windows event log being involved for small situations. For applications internet users might use, it's tricker because people generally don't like phone-home code, even when things go wrong. |
|||
|
|
|
I use log4Net. For the very touchy error prone Office apps, they write to a central error database. For the more stable web apps, they send me any email. This normally works pretty well, and I have pretty good response time to the web app bugs. It just sucks the few times some back end database has a problem and then I get hit with 200 emails. However, I think there's a log4Net setting that could correct this if I wanted. |
|||
|
|
|
I rewrote Jeff's user-friendly exception handler, so it takes a screenshot, emails us and the helpdesk, and writes to an event log, text file, and the DB. |
|||
|
|
|
I am looking at using ELMAH for a new ASP.NET MVC app I am working on. Previously I used log4j and just checked the log once a day. |
|||
|
|
|
I write errors/warnings/info messages with custom numbers for each to the Event Log. We use Microsoft Operations Manager; it picks up on the Event Log entries and reports the error and its number to the person on duty. I have it set up to simply email me warnings, depending on the application. I supply instructions for each error, such as: "if you see error 10091, the program was unable to connect to the SQL database. Check SQL Server xyz, and contact the dba on duty." |
|||
|
|
|
We have the usual logging. Each error gets a reference in the database and a file dump of the all the details (stack trace, etc.). Since the system is only used during extended business hours (7am - 7pm), we only get pager and email notification if an overnight batch fails. Most general errors result in a relatively friendly message directing the user to contact a help desk with a reference number for the error. |
|||
|
|
|
When a fatal error happens my code doesn't contact me but it retrieves the latest code from sub version and it automatically fixes itself. It commits the changes to sub version and this code is fully automagically distributed to my customers who never need to know what happened (neither do I). Once a year I run a report that shows the number of automic fixes. |
|||||||||
|