Does anyone know of a good crash reporting library for C#?

In C++ there is CrashRpt available, so I'd like something along those lines.

Ideally I'd like the library to zip up general information about the computer, and a crash mini dump file.

I would also need a library that is free for commercial use and that has source code available.

link|improve this question

feedback

6 Answers

up vote 1 down vote accepted

Roll your own exception handler. Use below code in your program.cs class. It will automatically Send mail when exception occurs.

using System;
using System.Windows.Forms;
using System.Net;
using System.Net.Mail;
using System.Threading; 

namespace ExceptionHandlerTest
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.ThreadException +=
                new ThreadExceptionEventHandler(Application_ThreadException);

            // Your designer generated commands.
        }

        static void Application_ThreadException(object sender, ThreadExceptionEventArgs e) 
        {

            var fromAddress = new MailAddress("your Gmail address", "Your name");
            var toAddress = new MailAddress("email address where you want to receive reports", "Your name");
            const string fromPassword = "your password";
            const string subject = "exception report";
            Exception exception = e.Exception;
            string body = exception.Message + "\n" + exception.Data + "\n" + exception.StackTrace + "\n" + exception.Source;

            var smtp = new SmtpClient
            {
                Host = "smtp.gmail.com",
                Port = 587,
                EnableSsl = true,
                DeliveryMethod = SmtpDeliveryMethod.Network,
                UseDefaultCredentials = false,
                Credentials = new NetworkCredential(fromAddress.Address, fromPassword)
            };
            using (var message = new MailMessage(fromAddress, toAddress)
            {
                Subject = subject,
                Body = body
            })
            {
                //You can also use SendAsync method instead of Send so your application begin invoking instead of waiting for send mail to complete. SendAsync(MailMessage, Object) :- Sends the specified e-mail message to an SMTP server for delivery. This method does not block the calling thread and allows the caller to pass an object to the method that is invoked when the operation completes. 
                smtp.Send(message);
            }
        }
    }
}
link|improve this answer
Ya this is what I ended up doing – Brian R. Bondy May 16 at 15:55
I created library for this. You can see it at rbsoft.org/… – Ravi Patel 10 hours ago
feedback

Try out:

1) Exception Reporter

http://www.codeplex.com/ExceptionReporter


2) Bug Trap

http://www.codeproject.com/KB/applications/BugTrap.aspx

BugTrap's author site:

http://www.intellesoft.net/downloads.php

BugTrap comes with BugTrapN.dll for .NET managed support.


3) BugzScout

Also, if you use FogBugz, try BugzScout:

http://support.fogcreek.com/default.asp?W741


4) NBug

http://nbug.codeplex.com/


These are free and come with source (except BugzScout unless you're using their 2 user startup edition).

link|improve this answer
codeplex.com/ExceptionReporter is Great !! Thanks Brian. Exactly what I was looking for. – gpgemini Jul 9 '10 at 12:48
feedback

Sign up for WinQual and let Microsoft handle all of the leg work for you.

(you'll need IE to click on the WinQual link)

link|improve this answer
If you're going to downvote; at least leave a comment. What's wrong with using WinQual? We use it and, while the uptime on Microsoft's end isn't great, we're having great success with it. We've got in-house tools that periodically download WinQual reports (and crash dumps) into our bug database. It's working pretty well for us. – Roger Lipscombe Sep 17 '09 at 13:12
Good answer, why re-invent the wheel. – Filip Ekberg Sep 25 '09 at 15:35
Winqual is good - only problem I can see is the delayed reporting. t takes some time to get information, but not a big deal. – Tim Sep 25 '09 at 15:45
feedback

Have a look at these: SmartInspect: http://www.gurock.com/products/smartinspect/ SmartAssembly: nhttp://www.smartassembly.com/

link|improve this answer
feedback

In response to requests for a port of CrashRpt, its author has suggested calling the unmanaged DLL from C#. Maybe this is an option for you...

link|improve this answer
feedback

From my Delphi-times, I have had a very good experience using EurekaLog, of which a .NET version has been released recently:

http://www.eurekalog.com/

I've only ever tried the delphi version though, so I can't say anything about the .NET one. The tool is very powerful in what it does though (it can even submit crash reports directly into many common bug tracking systems) and it's very easy to set up and use.

It does come with source code, but it's not free. It's royalty free though. And not that expensive considering the feature set.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.