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

Bugsnag Sourcemap path in case of multiple android flavor builds

I have created flavor builds in the android side of a React Native app. Earlier there was no flavor builds. So I was uploading the source map using CI like this - run: name: Upload sourcemaps to Bugsnag command: | if…
GOVIND DIXIT
  • 1,748
  • 10
  • 27
0
votes
1 answer

React Native Bugsnag error: TypeError Properties can only be defined on Objects [native code] defineProperty

We have an react-native app with 25k+ users and have gotten over 1000 crashes over the last 3 months reported in bugsnag. The crash typically happens within 1 sec of startup, but sometimes it takes a few seconds. We have not been able to reproduce…
0
votes
1 answer

Ruby shell script read from XCode plist

I am trying to read a plist value using a /usr/bin/ruby script. How can I do this? Bugsnag API script fork do Process.setsid STDIN.reopen("/dev/null") STDOUT.reopen("/dev/null", "a") STDERR.reopen("/dev/null", "a") require 'shellwords' …
Mocha
  • 2,035
  • 12
  • 29
0
votes
1 answer

React + typeScript + bugsnag possible?

My question : is it possible to integrate bugsnag inside React App witch is using typeScript? I am currently working on my API call crash/error protect and I heard some good stuff about bugsnag and the rise of 'Unhandled error'. I don't see any…
La pach'
  • 446
  • 2
  • 7
  • 17
0
votes
2 answers

symfony 5 - disable subscriber

I am using bugsnag in a symfony 5 project to keep track of exeptions. I also use symfony messenger with rabbit for heavy processing. Everything works fine overall, except the fact that in some cases, inside a messenger middleware…
zozo
  • 8,230
  • 19
  • 79
  • 134
0
votes
0 answers

JavaScript arrow function with paranthetical body including a comma

What does this code do? await new Promise((resolve) => (Bugsnag.notify(ex, eventCallback), resolve)); function eventCallback(event) { addMetadata(event, md); addMetadata(event, ex.bugsnagMetadata); } function addMetadata(event, md) { …
Brandon
  • 695
  • 10
  • 29
0
votes
0 answers

Bugsnag notice error undefined is not an object

I am using bugsnag to trace error. My project using nuxtjs, In recently, I often see my bugsnap show a erorr undefined is not an object (evaluating 't.$options') But it is only show the page that has error, not show line code has error, it make me…
Bình Trương
  • 380
  • 1
  • 13
0
votes
1 answer

Django; Bugsnag doesn't work with Gunicorn with Eventlet

Testing BugSnag with our Django based REST-API server. I have an API endpoint that crashes on purpose just to test it, someone in a certain serializer my views use. In my own settings.py I have: BUGSNAG = { 'api_key': '[redacted]', …
JasonGenX
  • 4,952
  • 27
  • 106
  • 198
0
votes
1 answer

Understanding context and app methods in NUXT

I am trying to use bugsnagClient and its notify method in plugins/axios.js I have this code in plugins/bugsnag.js import Vue from "vue" import bugsnag from "@bugsnag/js" import bugsnagVue from "@bugsnag/plugin-vue" // const bugsnagClient =…
Junaid Farooq
  • 2,484
  • 5
  • 26
  • 63
0
votes
1 answer

How do I send Bugsnag notifices to stderr?

I'm working on a Ruby software which may catch some errors (exceptions) and use Bugsnag to record the event in the Bugsnag logs. For example, I may have something like this: begin [...snip...] rescue StandardError => e …
Alexis Wilke
  • 19,179
  • 10
  • 84
  • 156
0
votes
1 answer

event listeners not removed as Ionic 4 & Angular conflicts with BugSnag addEventListener / removeEventListener

Was trying to resolve an issue with non working multiple choice ion-select in my Angular / Ionic 4 app. What I found is that this is combination of BugSnag which I use and ion-select implementation: ion-alert (used to display ion-select) click…
ciekawy
  • 2,238
  • 22
  • 35
0
votes
1 answer

Library not found for -lBugsnagReactNative when running on physical device

ld: library not found for -lBugsnagReactNative clang: error: linker command failed with exit code 1 To Reproduce: If you're running a React Native app on a physical device, the official docs tell you to run it on Xcode (arrow button in the IDE). …
alexfigtree
  • 1,516
  • 14
  • 16
0
votes
1 answer

Bugsnag integration for TYPO3

I would like to integrate Bugsnag into TYPO3. Is there a recommended way to do this? This is for a production system, so debug information is disabled, but it would be great to get these infos for bugsnag?…
0
votes
1 answer

Bugsnag can't read notify of undefined react native

Not sure why I am getting this error since obviously bugsnag is defined if it is passing the error to the bugsnag console: Here is my bugsnag file: import { Client } from 'bugsnag-react-native'; import Config from 'react-native-config' export…
Stephen Phillips
  • 641
  • 10
  • 26
0
votes
1 answer

Force crash react native app for bugsnag testing

Is there any way we can force crash react native production apk ? I know there is one option with Crashlytics.crash(); in fabric but i don't want to use Crashlytics as i am already using bugsnag.
Shubhanu Sharma
  • 1,957
  • 12
  • 30