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
3
votes
2 answers

Had so issue with jest react-native and bugsnag

I tried run Jest unit tests on React-Native with Bugsnag, but I got error: The error below may be caused by using the wrong test environment, see https://jestjs.io/docs/en/configuration#testenvironment-string. Consider using the "jsdom" test…
3
votes
0 answers

Bugsnag showing url of minified files instead of upload sourcemap files

I am using bugsnag for error reporting. To show stacktrace of errors bugsnag needs sourcemaps, which I am trying to upload to bugsnag using this documentation: Uploading source map github: bugsnag sourcemaps I have used upload API of bugsnag to…
Always_a_learner
  • 4,585
  • 13
  • 63
  • 112
3
votes
0 answers

NSInternalInconsistencyException in folly::detail::function::FunctionTraits

Bugsnag full error: NSInternalInconsistencyException in folly::detail::function::FunctionTraits::uninitCall(folly::detail::function::Data&, folly::dynamic const&, folly::dynamic const&) …
Sonam Maniar
  • 312
  • 4
  • 8
3
votes
1 answer

Bugsnag JS is making a request that Bugsnag Enterprise does not support

When making a standard bugsnag request to Bugsnag Enterprise, Chrome shows me that the request was rejected by the server with a 405 response status. Request Method:GET Status Code:405 Method Not Allowed Here's my code: const script_tag =…
cilphex
  • 6,006
  • 6
  • 34
  • 44
3
votes
2 answers

Proper way of using sqlite insertOrThrow

My code looks something like this: ContentValues values = new ContentValues(); values.put("year", year); values.put("month", month); database.insert(MySQLiteHelper.TABLE_DATA, null, values); Everything works fine, but unfortunately the insert query…
imin
  • 4,504
  • 13
  • 56
  • 103
3
votes
1 answer

Bugsnag: Invalid API key 'undefined'

I have Bugsnag javascript API integrated on my web application and everything was working fine but from last few days Bugsnag has stopped to record errors. It prints following console log on every error: [Bugsnag] Invalid API key 'undefined' I have…
Rahul Singh
  • 892
  • 9
  • 24
3
votes
0 answers

Adding custom data to bugsnag notifications with middleware in Rails 3.2

I would like to add a custom Tab to bugsnag for all notifications generated by my rails app. I cannot use :before_bugsnag_notify because the errors are sometimes generated by models which are being called from resque background jobs. So, I settled…
EnderWiggins
  • 390
  • 5
  • 17
3
votes
1 answer

How to catch errors and send them to Bugsnag when using `rails runner`?

We're running several cron tasks in our server, and we start them all using rails runner, like this: rails runner 'MyTask.run' where MyTask is a class in the project. The thing is, we use Bugsnag to handle errors in case anything fails. When we run…
Alex Siri
  • 2,856
  • 1
  • 19
  • 24
2
votes
2 answers

Bugsnag is throwing invalid api key: '' error

I am using go v1.19 to build a go application. I have run this application using a service file in linux OS. Below in my code to initialize the bugsnag: package main import ( "github.com/bugsnag/bugsnag-go" bugsnaggin…
Amandeep kaur
  • 985
  • 3
  • 15
  • 35
2
votes
1 answer

How to link react js app source map to bugsnag

Mapping react js source map to bugsnag bugsnag-source-maps upload-browser \ --api-key YOUR_API_KEY_HERE \ --app-version 1.2.3 \ --base-url http://yourdomain.url/static/js/ \ --directory build/static/js try to upload source map using above…
2
votes
1 answer

https://sessions.bugsnag.com": x509: certificate signed by unknown authority

I have integrated bugsnag with my go-service, and it was working good on my local machine; but when I deployed it on server it giving the above error whenever bugsnag try to notify error. I am deploying it on ec2 with docker container. after…
2
votes
0 answers

Bugsnag request failed to complete

Im using Bugsnag in my React Native project, but I trying run the command: ./gradlew assembleDevelopmentRelease and I receive the error: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task…
2
votes
2 answers

Android crash analytics, logging, exception tracking, usage, etc. bewildering array of options

I want to to use a service for crash reporting and I see that there are a few options Crashlytics, Instabug, Bugsnag, Bugfender, Splunk Mint, Visual Studio App Center, etc. I am cost constrained, so I don't want to spend a lot particularly at this…
2
votes
2 answers

Conditionally turn off Bugsnag in Angular

I am running Bugsnag in Angular 8.x and want to completely turn off reporting based on a property in environment.ts. I know how to pass the property, but I cannot figure out how to turn off reporting. What is the process for doing this?
ebakunin
  • 3,621
  • 7
  • 30
  • 49
2
votes
1 answer

Report not sent due to releaseStage/notifyReleaseStages configuration

I want to send errors to my created stages by property notifyReleaseStage const app = express(); const bugsnag = require('@bugsnag/js'); const bugsnagClient = bugsnag({ apiKey: process.env.bugsnag_api_key, …
Smbat Poghosyan
  • 719
  • 7
  • 20
1
2
3
9 10