Questions tagged [sentry]

Sentry is a full-stack application monitoring solution. It provides features such as error monitoring, crash reporting, performance monitoring, and distributed tracing.

Sentry is a full-stack application monitoring solution. It provides features such as error monitoring, crash reporting, performance monitoring, and distributed tracing.

Installation & clients

Sentry provides a hosted service, as well as an self-hosted option. Most of Sentry, including the back-end and SDKs are open source.

Sentry works with most languages, frameworks, and libraries with its official and community-provided clients, including Ruby, Python, Java, PHP, Javascript, Cocoa, .NET, Unity Go, Dart/Flutter, C/C++, Rust, and many others - or you can also write your own client.

Useful links

1435 questions
7
votes
1 answer

Sentry + Raven, HTTP Error 401: UNAUTHORIZED

I have a Sentry application, running correctly on the url: mydomain.com:11011. I have a project created with the CDN: http://XXX:YYY@mydomain.com:11011/2 This url is served with HAProxy with this configuration: listen sentry *:11011 mode tcp …
b3ni
  • 149
  • 1
  • 8
6
votes
3 answers

How do I fix this Sentry Zone mismatch error?

Framework / SDK versions: Flutter: 3.10.4 Dart: 3.0.3 Here goes my main() code: Future main() async { //debugPaintSizeEnabled = true; //BindingBase.debugZoneErrorsAreFatal = true; WidgetsFlutterBinding.ensureInitialized(); …
Void
  • 1,129
  • 1
  • 8
  • 21
6
votes
1 answer

sentry sdk custom performance integration for python app

Sentry can track performance for celery tasks and API endpoints https://docs.sentry.io/product/performance/ I have custom script that are lunching by crone and do set of similar tasks I want to incorporated sentry_sdk into my script to get…
Ryabchenko Alexander
  • 10,057
  • 7
  • 56
  • 88
6
votes
1 answer

How to Use Sentry Application Monitoring with Quasar.js

I added sentry monitoring to my quasar app but sentry does not receive any errors and does not show up in its panel i created /src/boot/sentry.js and write this codes: import { boot } from "quasar/wrappers"; import * as Sentry from…
Kasra Karami
  • 401
  • 5
  • 10
6
votes
2 answers

Failed import for Sentry_sdk in Django

I am currently trying to get Sentry to work with my Django project. While initializing Sentry in the settings.py file I get this error: line 301, in module import sentry_sdk ModuleNotFoundError: No module named 'sentry_sdk' unable to load app 0…
user12179064
6
votes
0 answers

Failed to write manifest file.Error Domain=NSCocoaErrorDomain

I have react native expo app with Sentry configured. Sentry is reporting this crash. Error: Failed to write manifest file.Error Domain=NSCocoaErrorDomain Code=640 "You can’t save the file “manifest.json” because the volume “Data” is out of space."…
Ghayoor ul Haq
  • 670
  • 6
  • 24
6
votes
2 answers

How to fix Missing CSRF token in sentry

After fighting with sentry when installing it on openshift i got it up and running only to discover that when sending an event to my server it will throw this error: 12:30:59 [WARNING] django.request: Forbidden (CSRF cookie not set.):…
HFinch
  • 534
  • 1
  • 7
  • 20
6
votes
1 answer

Supertest giving MaxListenersExceedingWarning error with my Jest testing in Node

I'm working on setting up some tests using Jest and Supertest with my Node Express app. I'm also using Sentry to report my errors. I have the following lines of code in my app.js file to setup Sentry: app.js Sentry.init({ environment: "development",…
speck1990
  • 127
  • 1
  • 12
6
votes
1 answer

Make Flutter Web Sentry error report readable?

Flutter Web error report sent to Sentry is not readable because is minified. https://github.com/flutter/flutter/issues/37875 https://github.com/flutter/flutter/issues/16883#issue-316793104 I am use: https://pub.dev/packages/sentry How I can make…
FlutterFirebase
  • 2,163
  • 6
  • 28
  • 60
6
votes
4 answers

Sentry is NOT reporting error inside Flutter

I have my Sentry setup like this: void main() => runZonedGuarded(() { runApp(MyApp()); }, (Object error, StackTrace stackTrace) { reportError(error, stackTrace); }); and related functions final SentryClient sentry = new SentryClient(dsn:…
user1187968
  • 7,154
  • 16
  • 81
  • 152
6
votes
1 answer

Using Azure DevOps, get list of commits from GitHub in order to pass to Sentry as part of a release?

I am using Azure pipelines to build and release my software through its GitHub integration. As part of monitoring, I am using Sentry to record exceptions, etc. I want to use the "Suspect Commits" feature of Sentry (so it can point at commits that…
Oded
  • 489,969
  • 99
  • 883
  • 1,009
6
votes
1 answer

How to improve ui Sentry.io breadcrumbs?

I was wondering if there is a good practice on how to write your HTML code in order to get better Sentry.io breadcrumbs inside of the issues. It's not possible to identify the elements that the user has interacted and I think using CSS class or IDs…
Gustavo Bissolli
  • 1,551
  • 3
  • 22
  • 36
6
votes
1 answer

Sentry: How to configure sentry in php?

This is for Sentry (Open-source error tracking) users. I have tried some code, but I don't get success. I hope you could look into this. Thanks to everyone in advance. I have download the SDK zip and upload it on servers. Well, I have read from some…
Bhargav Dave
  • 109
  • 1
  • 8
6
votes
3 answers

django-sentry not recording warnings, errors, etc

I just installed django-sentry, and it catches exceptions just fine. However calls to logger.warning and logger.error are not being saved to Sentry for some reason. Sentry implementation: import logging from sentry.client.handlers import…
rabbid
  • 5,465
  • 7
  • 26
  • 37
6
votes
2 answers

Testing Sentry with Jest

I am testing my error boundaries to React and noticed in Codecov that there is a particular part of my Sentry function that hasn't been tested. I have tried to use jest.mock("@sentry/browser") and mocking Sentry, however, can't seem to get the…
Charklewis
  • 4,427
  • 4
  • 31
  • 69