Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fogbugz and ELMAH - Communication Plugin

My employer is currently trying out Fogbugz and one feature that would be nice is some sort of automation between our exception logger (ELMAH) and case generation in FogBugz. Specifically, it would be great if there were a module to send error reports to FogBugz and then in FogBugz process the error, look for duplicates (perhaps grouped by page name, exception, and offending line), and, if necessary, create a new case.

As far as I can tell this could be achieved by sending an e-mail with ELMAH and then having some sort of plugin on the FogBugz end that parses the report and performs the necessary actions. Has anyone tried something like this?

like image 574
Nathan Taylor Avatar asked Aug 27 '09 17:08

Nathan Taylor


3 Answers

If you want to automatically create new cases in FogBugz you do not have to necessarily write a plug-in. FogBugz has some API for managing cases from other applications:

  • There is BugzScout which does a similar thing you ask.
  • You can use the FogBugz XML API for creating / querying cases and set up your "external work flow".
like image 99
Csaba_H Avatar answered Oct 08 '22 04:10

Csaba_H


You can easily make an ELMAH plugin with their new APIs and plugin system, or you can go the easy route and send all exceptions to an email box that FB picks up and creates cases for.

Check out https://developers.fogbugz.com/default.asp?W1 for info on how to make plugins.

like image 22
Jon Ursenbach Avatar answered Oct 08 '22 04:10

Jon Ursenbach


I found this FogBugz Elmah integration. Not tested:

http://www.billforney.com/category/C.aspx

like image 30
Rich Armstrong Avatar answered Oct 08 '22 04:10

Rich Armstrong