What information do you capture your software crashes in the field?

Posted by Russ on Stack Overflow See other posts from Stack Overflow or by Russ
Published on 2010-05-13T20:17:32Z Indexed on 2010/05/13 20:34 UTC
Read the original article Hit count: 214

Filed under:
|

I am working on rewriting my unexpected error handling process, and I would like to ask the community:

What information do you capture both automatic, and manually, when software you have written crashes?

Right now, I capture a few items, some of which are:

Automatic:

  1. Name of app that crashed
  2. Version of app that crashed
  3. Stack trace
  4. Operating System version
  5. RAM used by the application
  6. Number of processors
  7. Screen shot: (Only on non-public applications)
  8. User name and contact information (from Active Directory)

Manual:

  1. What context is the user in (i.e.: what company, tech support call number, RA number, etc...)
  2. When did the user expect to happen? (Typical response: "Not to crash”)
  3. Steps to reproduce.

What other bits of information do you capture that helps you discover the true cause of an applications problem, especially given that most users simply mash the keyboard when asked to tell you what happened.

For the record I’m using C#, WPF and .NET version 4, but I don’t necessarily want to limit myself to those.

Related: http://stackoverflow.com/questions/1226671/what-to-collect-information-when-software-crashes

Related: http://stackoverflow.com/questions/701596/what-should-be-included-in-the-state-of-the-art-error-and-exception-handling-stra

© Stack Overflow or respective owner

Related posts about subjective

Related posts about error-handling