Jira exception reports in jira automatically

I am developing a web application using Spring roo (mvc), this application is an ERP system. I plan to use Jira as a problem reporting system.

My question is: if there is any solution that will help me report exceptions that were thrown automatically in my jira web application?

I was thinking of creating some script that would scan logs and create problems in jira. What do you think about it?

+4
source share
2 answers

To solve your problem, you can use the LogDigger library.

Here you have a recent article that describes how to integrate LoggDigger with Zendesk. It also introduces how to ignore some exceptions and ways to prevent duplication in support services. Similarly, you can integrate LogDigger with Jira using your REST API.

http://mobeelizer.com/blog/2013/01/how-to-integrate-logdigger-with-zendesk-quick-tutorial/

+2
source

An easy way to create tickets at jira is to send a simple email . You can also use the Rest API (thanks to aphex).

In Spring Web MVC, you can use ExceptionHandler to "do something" when an exception occurs. You can also use HandlerExceptionResolver to globally handle all exceptions in the same way.

Maybe this article can help you handle exceptions.

However, as Andreas pointed out in the comments, you must make sure that you do not report the same error multiple times. This can easily lead to jira tickets.

+1
source

All Articles