Is the service similar to Airbrake.io for Java applications?

We made our own api for airbrake.io in java. This works great, but the air brake displays parameters and stacks in some kind of Rails style. This is somewhat annoying. Does anyone know of similar services made for java?

Data display example:

Parameters

{"controller"=>"", "action"=>""} 

Stacktrace

 /testapp/app/models/user.rb:53:in `public' /testapp/app/controllers/users_controller.rb:14:in `index' 
+4
source share
3 answers

UPDATE 2015-02-13: This service no longer exists. The GitHub account listed below is missing, as well as the company’s website.

You tried to use Coalmine https://github.com/coalmine/coalmine_java Its purpose should be used with the Coalmine service: https://getcoalmine.com/

I work at Coalmine and we have been using this internally for some time. This week we opened the source of the java connector, and I would be happy to help you start with it. You can send me an email at brad@builtfromsource.com

+4
source

Have you tried using http://code.google.com/p/hoptoad/ . It's a bit outdated, but it just needs to update the endpoint to http://api.airbrake.io .

A quick google will lead me to http://logdigger.com/ , which is designed specifically for specific JAVA sites.

I work for Airbrake and I would be happy to work with you to make our site more JAVA friendly. Please contact ben@airbrake.io and I will see how we can display specific java information.

+1
source

Just adding to the others suggested here, but Raygun ( http://raygun.io ) has first class support for Java.

More details here: http://raygun.io/java

I work in Mindscape, which Raygun created, so I can answer any of your questions: jd@mindscape.co.nz. We already have a large number of organizations using Raygun with their Java applications, although Raygun supports other platforms (.NET, Node, Rails, PHP etc.)

+1
source

Source: https://habr.com/ru/post/1414552/


All Articles