Questions tagged [errbit]

Errbit is a tool for collecting and managing errors from other applications. It is Airbrake API compliant

Errbit is an open source, self-hosted error catcher.

It's a tool for collecting and managing errors from other applications. It is Airbrake (formerly known as Hoptoad) API compliant, so if you are already using Airbrake, you can just point the airbrake gem to your Errbit server.

30 questions
1
vote
1 answer

How to prevent multiple DB roundtrips for parents of has_many relations

I'm likely missing something here, but it seems like this is a performance oversight. I first noticed this when looking at the query logs of Errbit and noticing hundreds of queries for the same objects. It seems that all the children of a has_many…
Daniel Beardsley
  • 19,907
  • 21
  • 66
  • 79
1
vote
2 answers

Does Errbit log delayed job errors out of the box?

Does delayed job work out of the box with Errbit? We had some failing jobs on the production environment and we can see in the delayed_job.log file some tasks failed along with their error message, but we didn't receive any errbit about it. Does it…
okeen
  • 3,976
  • 2
  • 15
  • 19
0
votes
1 answer

errbit on synology docker returns 127.0.0.1:27017 => connection refused

i'm facing an issue with errbit installed in my synology docker https://hub.docker.com/r/errbit/errbit i can run the app but the app can't connect to 127.0.0.1:27017 => connection refused. the docker file has mongodb inside. The docker is on the…
guy banlock
  • 107
  • 2
  • 4
0
votes
0 answers

undefined method `each' for nil:NilClass error on errbit

I am trying to configure errbit with LDAP authentication but I am getting the following error: "undefined method `each' for nil:NilClass" def set_time_zone Time.zone = current_user.time_zone if user_signed_in? end def…
0
votes
1 answer

How to update version on Heroku?

I used the deploy on Heroku button of https://github.com/errbit/errbit . Worked great for a long time (version 0.7.0-dev) , now I'm getting a deprecation warning from GitHub: [GitHub API] Deprecation notice for authentication via URL query…
Ohad Dahan
  • 371
  • 3
  • 14
0
votes
0 answers

Errbit returns '422 Unprocessable Entity' using airbrake/javabrake

Onboarding a Kotlin App to errbit 0.6.0 using airbrake/javabrake 0.1.6 client lib. Getting a '422 Unprocessable Entity' and HTML body. I can see that client lib is using airbrake v3 API. Does errbit 0.6.0 support that? Is there any mapping doc on…
Alex
  • 24
  • 4
0
votes
0 answers

Obtaining details for airbrake-js error objects

I use Errbit and airbrake-js Errbit https://github.com/errbit/errbit My Vue js errors are reported by airbrake-js to Errbit with airbrake-js. airbrake.notify({ error: err, params: { info: info } vue errors are reported to…
Kouta Osabe
  • 121
  • 1
  • 10
0
votes
1 answer

Unable to connect to AWS Docdb

We are trying to connect to aws docdb from errbit, but of no luck. This is the connection string from…
0
votes
1 answer

Errbit is very noisy, can I limit what it outputs

When I start errbit, I route its output to a log file. This file get's huge every day. I know I can rotate it, or route it's output to the bit bucket, but I thought it might be better to just turn down the errorlevel... Is there a way to do this?
mark amos
  • 321
  • 2
  • 5
0
votes
1 answer

uninitialized constant IssueTrackers

I just upgraded Errbit after 2 years, when I click on the Apps I get the following error: NameError: uninitialized constant IssueTrackers This is the possible error location: [PROJECT_ROOT]/models[PROJECT_ROOT].rb:123→…
FastSolutions
  • 1,809
  • 1
  • 25
  • 49
0
votes
1 answer

errbit clone in NodeJS

I'm looking for software similar to errbit but made in Node.JS. Ruby is a pain to install and maintain but I love how this software tracks errors and traces them. The best thing is it's AirBrake.io compliant, so I can integrate with Slack or…
jfreak53
  • 2,239
  • 7
  • 37
  • 53
0
votes
1 answer

How to integrate errbit and gitlab issue tracker?

How to integrate errbit and gitlab issue tracker? What should I fill to "Api Token" and "Ticket Project ID (use Number)" fileds?
mystdeim
  • 4,802
  • 11
  • 49
  • 77
0
votes
1 answer

Errbit on Heroku with RVM & Capistrano

I've tried to set up Errbit (Airbrake) for my RoR application with Heroku, following the below sites: https://github.com/errbit/errbit http://morizyun.github.io/blog/errbit-heroku-rails-error-ruby/ (only japanese, sorry) Deployment on Heroku…
johann
  • 1,115
  • 8
  • 34
  • 60
0
votes
1 answer

How to prevent Errbit from merging general uncaught exceptions thrown from ASP.NET

I am trying to use errbit (https://github.com/errbit/errbit/) for tracking our exceptions in a .NET application. To integrate our application with errbit, we used SharpBrake (https://github.com/MikeRalphson/SharpBrake). Within the global.asax file,…
vorp
  • 1
  • 1
-1
votes
1 answer

Django configuration for errbit

We would like to send errors from Django application to errbit. On the web, there is no single example what to put in settings.py of web application. Could somebody provide what should be done in order to send exceptions from our django application…
Karlo Smid
  • 525
  • 1
  • 5
  • 13
1
2