Questions tagged [bugsnag]

Bugsnag is an automated crash detection platform for web and mobile applications.

Bugsnag is an automated crash detection platform for web and mobile applications.

See more:

140 questions
0
votes
1 answer

How to use fallback component in react native bugsnag?

I am using bugsnag in react native to track bugs and I want fallback to custom component when error occurs. For React fall back component mentioned in docs. But in react native I didn't find. How to use this. Help me out
Krupanand K
  • 165
  • 2
  • 11
0
votes
1 answer

How to dump Bugsnag report in Ruby

I would like to dump the complete report sent to Bugsnag in Ruby. I tried this: Bugsnag.before_notify_callbacks << lambda {|report| puts report } But the only result I get is the following: # I also tried…
Attilio
  • 1,624
  • 1
  • 17
  • 27
0
votes
1 answer

Android/Java: UncaughtExceptionHandler and Bugsnag in parallel?

I'm using Bugsnag for automated error reporting and would like to perform some additional actions, like a restart, when the app crashes. Problem: both is working individually, but not combined. As soon as I add MyUncaughtExceptionHandler, Bugsnag…
Mr. B.
  • 8,041
  • 14
  • 67
  • 117
0
votes
1 answer

react-navigation preventing application from crash in release build

I have a really strange behavior in my react-native application. I tracked it down to a minimal example. I have a SwitchNavigator with two Components. The first Component does nothing except navigating to the second component after 2000ms. The…
Alexander Kuttig
  • 426
  • 3
  • 10
0
votes
0 answers

Implement a callback to avoid force close, while reporting crash and showing a support screen

Instead of the force close dialog I would like to show an Activity with support information to the user and at the same time send error information to bugsnag. I followed this advice…
Greg Holst
  • 874
  • 10
  • 23
0
votes
3 answers

Redux Dev Tools how to include the state export with Bugsnag error

Doing a Google search didn't yield any results based on what I was searching, but I'm wondering if it would be possible to include the state snapshot you can get out of the Redux Dev Tools export when an error is sent to bugsnag? I haven't worked…
Jared
  • 5,840
  • 5
  • 49
  • 83
0
votes
1 answer

Error setting up mapping upload for Bugsnag in React Native

I am integrating Bugsnag into a React Native project. I want to ensure that any stack trace correctly references the right area of the code because due to needing to use a release app to get a stack trace, the source mappings are minified and…
user1849060
  • 621
  • 3
  • 10
  • 20
0
votes
0 answers

Laravel TokenMismatch for one user only, possible reasons

Bugsnag has been reporting a single client (same ip address) keeps receiving a TokenMismatchException throughout the last few weeks on my production Laravel 5.1 environment, no other client has experienced this issue so far. Stacktrace Request Data…
HelloSpeakman
  • 810
  • 9
  • 22
0
votes
0 answers

Bugsnag not notifying completed 404 error rails rubymine

Bugsnag is reporting other errors like 501 internal server error but not 404 error as described in the docs. In gem file i have gem 'bugsnag' in Initializer folder i have bugsnag.rb Bugsnag.configure do |config| config.api_key =…
0
votes
1 answer

Zend framework 2 bugsnag integration

Here is how i'm implementing Bugsnag in Zend framwork 2 public function onBootstrap(MvcEvent $e) { $eventManager = $e->getApplication()->getEventManager(); $moduleRouteListener = new ModuleRouteListener(); $eventManager->attach( …
Waqar Haider
  • 929
  • 10
  • 33
0
votes
2 answers

Attaching metadata to Bugsnag with Laravel

Reading the documentation I found that I can append data to a threw Exception this way: Bugsnag::setMetaData([ 'account' => [ 'paying' => true, 'name' => 'Acme Co' ] ]); I want to append the user email. Where should I place…
Alan
  • 2,559
  • 4
  • 32
  • 53
0
votes
1 answer

BugSnag, Django and the before_notify callback

BugSnag's documentation suggests this for custom fields: def callback(notification): # if you return False, the notification will not be sent to # Bugsnag. (see ignore_classes for simple cases) if isinstance(notification.exception,…
JasonGenX
  • 4,952
  • 27
  • 106
  • 198
0
votes
0 answers

TRACK & PROPFIND HTTP Requests - Possible attack?

I have a laravel application and am using bugsnag for my error detection and received notification of 2 MethodNotAllowedHttpException's recently for the above request types. I read online that TRACK requests are often used in attacks? Both requests…
User787665
  • 237
  • 4
  • 23
0
votes
1 answer

Bugsnag doesn't send notification in rails console

I've set up Bugsnag in development/production environment in Rails 4. I'd love to test thing out in rails console. Bugsnag.notify('test test test') The config is following. Bugsnag.configure do |config| config.api_key = ENV['BUGSNAG_SECRET'] …
Toshi
  • 6,012
  • 8
  • 35
  • 58
0
votes
1 answer

I am getting massive log files in old releases using Envoyer.io

I am having a strange problem. My error logs in old releases grow to gigabytes with in minutes of deployments. What is strange, is that the releases that grow are the old ones, normally the oldest one. Below is the error that fills the…
ATLChris
  • 3,198
  • 7
  • 39
  • 65
1 2 3
9
10