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
0
votes
1 answer

Why sentry need different settings for different Python frameworks?

Recently, I need to add sentry for a tornado project with celery and some crontab functions. But I find I need to add three different sentry settings. Celery: https://docs.sentry.io/clients/python/integrations/celery/ Logging for crontab…
Cloud
  • 2,859
  • 2
  • 20
  • 23
0
votes
1 answer

How to set elasticsearch to push data to sentry

I have elasticsearch 5.6 and using log4j2 to config it now, I save data in elasticsearch, And now i want to push data to sentry 8.22. If elasticsearch reviceve a data then push the data to sentry automatically. Can someone tell me how to do…
J.Doe
  • 1
0
votes
0 answers

Javascript error stack tracer difference android ios

I'm currently adding sentry solution to help me debugging my Ionic3 application. I used this guide to set up sentry in my app. But there is something I don't really understand. For a same error, iOS stacktrace and Android one are different. So it…
milcaepsilon
  • 272
  • 3
  • 16
0
votes
1 answer

Angularjs Obfuscation causing issue on Crash reporting

When running ng serve -prod, the run is obfuscated to reduce the size and hide the code. This is causing an issue in crash reporting tools (tried sentry and raygun) since the crash report is obfuscated. Is there any solution to get a clear crash…
Tarek A.
  • 218
  • 2
  • 12
0
votes
0 answers

ReactNative - No crash report in release mode sentry.io

Successfully integrated the sentry.io. In one of the componet in constructor I have placed a console.log() with invalid variable. whenever I run using react-native run-ios or react-native run-android it is reported in sentry.io dashboard. (debug…
bashIt
  • 1,006
  • 1
  • 10
  • 26
0
votes
1 answer

Sentry JVM option placeholder

I'm configuring Sentry to use with our projects but have some issue with it. I would like to put some placeholders in configuration file like extra=prj:${project.name} Where project.name is a JVM option set like this: java -Dproject.name pname -jar…
St.Antario
  • 26,175
  • 41
  • 130
  • 318
0
votes
1 answer

Sentry Cookie not attaching

I am working on Laravel 4 application and using Sentry for authentication. I need to add Keep Me Logged In functionality into my application. I have googled around and found that passing second variable to Sentry::login($user, $remember) sets up a…
0
votes
0 answers

Sentry io send email

How to send Sentry alert notify to custom emails that have been field in my web app? I try to edit user config using sentry api , but it is not such method in api
0
votes
2 answers

Sentry: Ignore Exceptions which happen between 4 and 5 o'clock

Between 4 and 5 o'clock a remote system is regularly down. This means some cron jobs produce exceptions. Is there a way to ignore these exceptions. But exceptions before or after that time period are important.
guettli
  • 25,042
  • 81
  • 346
  • 663
0
votes
1 answer

How to implement raven in Restify?

It is implemented in express look at link. https://docs.sentry.io/clients/node/integrations/express/ but it is not implement in restify . https://github.com/getsentry/raven-node/issues/287 Thanks.
Himanshu sharma
  • 7,487
  • 4
  • 42
  • 75
0
votes
1 answer

Sentry.io + Tomcat + JUL: all logs are sent to sentry

I am using Tomcat (7.0.70) + sentry (both sentry and sentry-spring) + JUL with the following logging.properties file in WEB-INF/classes: handlers = java.util.logging.FileHandler,java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler # Default…
Sébastien Tromp
  • 603
  • 1
  • 15
  • 30
0
votes
1 answer

Cannot see info messages in Sentry Dashboard (using heroku + django)

I have successfully installed sentry addon on heroku in a django app. I managed to track all errors and 404, following the instructions from the official docs. https://docs.sentry.io/clients/python/integrations/django/ The problem is that i cannot…
0
votes
1 answer

Change grouping of an specific exception in sentry (django)

I use raven with my django web application and i want to prevent an exception from excessive grouping as described in documentations here while preserving default behavior for other exceptions. More concretely I have a code snippet like this…
mhk
  • 386
  • 1
  • 5
  • 18
0
votes
1 answer

Reporting to Sentry to proof that it's working, like on start up?

We are using Sentry for finding some errors. How do you proof, that a reporting is working? I had a Spring-Boot project, which was not sending any error to Sentry, so it looks like it was working without an error, but I saw in Kibana, that there…
Joergi
  • 1,527
  • 3
  • 39
  • 82
0
votes
1 answer

How to send JavaScript errors to sentry?

I'm trying to send all JavaScript's errors to Sentry. I read Sentry's Installation docs(https://docs.sentry.io/clients/javascript/install/) and chose So for example:
minmin
  • 53
  • 1
  • 13