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
1
vote
2 answers

Jest Error with Bugsnag Library for react native

Facing issue with bugsnag mocking in react native Error - FAIL tests/App-test.js ● renders correctly TypeError: _reactNative.default.start is not a function 40 | // StatusBar.setBackgroundColor(blueVersion.secondary); 41 | //…
Abhay
  • 117
  • 9
1
vote
1 answer

Error: "No Bugsnag API Key set" while creating release build with proguard enabled in react native android

The logcat trace of the same: 2022-08-02 14:55:41.358 26505-26652/? E/AndroidRuntime: FATAL EXCEPTION: mqt_native_modules Process: com.ProjectName, PID: 26505 com.facebook.react.common.JavascriptException: Error: No Bugsnag API Key set,…
sameer balouria
  • 470
  • 6
  • 20
1
vote
1 answer

Core 3.1 Console Application Bugsnag not working

Trying to get bugsnag working in a C# Asp.Net core 3.1 console application. We have added Bugsnag.AspNet.Core version 2.2.1 to the application. We have added Microsoft.Extensions.DependancyInjection version 3.1.15 to the application. We made a…
elijah123467
  • 101
  • 1
  • 11
1
vote
0 answers

Upload source map to Bugsnag for VUE JS

For my VUE JS ( VUE CLI) application, I have uploaded a source map to Bugsnag using webpack-bugsnag-plugins. But I am wondering if there is any way that the source map is not shown in the browser. I tried deleting the created *.map files after…
1
vote
1 answer

Bugsnag from a browser: is there a way I can add my own header?

Using "@bugsnag/browser": "7.5.6" I have configured bugsnag to send requests to a custom endpoint by doing: Bugsnag.start({ ... autoTrackSessions: false, endpoints: { notify: 'htts://custom-notify-url.example.com', sessions:…
Shorn
  • 19,077
  • 15
  • 90
  • 168
1
vote
1 answer

How do you test custom Bugsnag meta_data in Ruby?

How do you test custom Bugsnag meta_data (in Ruby, with Rspec)? The code that I want to test: def do_something thing_that_could_error rescue => e Bugsnag.notify(e) do |r| r.meta_data = { my_extra_data: "useful info" } end end The test I…
compiledweird
  • 918
  • 2
  • 12
  • 30
1
vote
1 answer

How to link missing pod headers - Xcode 11.2.1

I'm killing myself over trying to get a Pod linked & the project up and running. For some background: I am running a ReactNative (version 0.61.5) project and am using Xcode 11.2.1; the current cocoapods version is 1.9.1. It should also be noted…
vma_93
  • 153
  • 7
1
vote
2 answers

BugSnag not working for Laravel Vapor in production

I am trying the BugSnag integration with a Laravel app deployed on AWS Lambda through Laravel Vapor. Bugsnag is working fine on my local but doesn’t send any error from AWS Lamda. I also tried Bugsnag::setBatchSending(false) but it is still not…
Vikas Roy
  • 854
  • 2
  • 10
  • 25
1
vote
1 answer

BugSnag ErrorBoundary not showing custom error page in react

I am working on a SPA using React. Currently, in production, user only sees a blank page when the app crashes. So, I am trying to set a custom error page. Since I am using BugSnag for error monitoring in my react app; I have used the ErrorBoundary…
Vikas Roy
  • 854
  • 2
  • 10
  • 25
1
vote
3 answers

React Native Runtime Error: No native client found. Is Bugsnag React Native installed in your native code project?

I am trying to integrate bugsnag to my react native application. The app builds successfully but when the app loads on a simulator or emulator it throws an exception Bugsnag: No native client found. Is BugsnagReactNative installed in your native…
user9871690
1
vote
1 answer

Unhandled rejection event have conflict with bugsnag

I have some code with many unhandled rejections, and it is very hard to handle all of them. I want to handle them globally with 'unhandledrejection' event. But I have bugsnag in my project, and when some of the promise rejected, bugsnag catch them…
Smbat Poghosyan
  • 719
  • 7
  • 20
1
vote
1 answer

Correctly upload react native source maps to Bugsnag

I'm trying to setup Bugsnag on my react native 0.59.1, but I am not able to properly upload source maps. The bugsnag-react-native plugin is properly installed and linked and I see errors in my bugsnag dashboard, the only problem is to properly use…
gbalduzzi
  • 9,356
  • 28
  • 58
1
vote
1 answer

BugSnag Error Boundary Not Logging Error in Bugsnag

I have this bugsnagClient.use(bugsnagReact, React) const ErrorBoundary = bugsnagClient.getPlugin('react') export const ErrorFallbackComponent = () =>…
chobo2
  • 83,322
  • 195
  • 530
  • 832
1
vote
1 answer

React Native RCTFatal + 448 crash when testing via iOS TestFlight

I have released my React Native App on IOS TestFlight for few weeks, everything looks good except the App will crash sometimes (Launch screen will show up about 1 sec, then App crashes). And once the crash starts, reopen the App will crash it…
Lucissa
  • 11
  • 2
1
vote
1 answer

React Native: Using Firebase Crashlytics and Bugsnag

We use Bugsnag for general error catching, and we use firebase for a host of other features. At the moment crashes and error only got to Bugsnag (react-native-bugsnag), but we'd like them to also go to Crashlytics (which is installed as part of…
James Pearson
  • 1,622
  • 2
  • 15
  • 23