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

How to log errors from 2 different Lans to one sentry server

Sentry needs a value the location it is installed: SENTRY_URL_PREFIX. The problem is that I want to log errors to an installation via two different lan's. Lets say, the server that's running sentry has an ip 192.168.1.1 and 10.0.0.1, and I want to…
Nanne
  • 64,065
  • 16
  • 119
  • 163
0
votes
1 answer

Postfix sending email as root@localhost.foo.com

We deployed sentry on premise. We have no problems sending email through the applications. Sender shows "tail@foo.com" in the email. However, there is celery worker that sends out emails, since the sender is "roo@localhost.foo.com" emails are…
DarthVader
  • 52,984
  • 76
  • 209
  • 300
0
votes
0 answers

How can I export Airbrake errors to Sentry?

I want to start using Sentry instead of Airbrake Is there a way to export the data I've collected on Airbrake to Sentry?
mork
  • 89
  • 1
  • 10
0
votes
1 answer

Capturing a warning in Python and running a bash script on capture?

I have a Python script that runs 24/7 on an AWS instance that does some web scraping and data analytics. Depending on the data, it sometimes overruns and I get the following warning in my sentry logs (https://getsentry.com/): u'Execution of job…
Kyle Asaff
  • 274
  • 3
  • 13
0
votes
1 answer

java.lang.ClassCastException: net.kencochrane.raven.log4j.SentryAppender cannot be cast to org.apache.log4j.Appender

I'm trying to use raven-log4j to send youtrack's exception to the Sentry. /etc/youtrack/log4j.xml:
quanta
  • 3,960
  • 4
  • 40
  • 75
0
votes
2 answers

How to set properties attributes in Java programmatically?

I'm looking over sentry for java and it requires a properties…
user1529891
0
votes
1 answer

Can you use raven to get incident details?

I know that you can use raven to log exceptions in Sentry - is there a method that lets you read data from stuff previously logged in Sentry? e.g. if I have the incident id, can I read its additional data? The documentation is very terse and I…
Andrew
  • 6,295
  • 11
  • 56
  • 95
0
votes
1 answer

I build sentry but can't find `sentry.css` and `app.js`?

I run this: git clone https://github.com/getsentry/sentry python setup.py develop It seems all ok, but when I access sentry from browser, 404 appends on sentry.css. what's wrong?
rrFeng
  • 191
  • 10
0
votes
1 answer

python raven timing out when using django logging from a celery worker

I am using raven to log from my celery jobs to sentry. I am finding that whenever I use the django logging system to log to sentry each update can take minutes (but the log succeeds). If I remove sentry from my logging configuration it is…
BlueSkies
  • 103
  • 2
  • 8
0
votes
1 answer

Sinatra Error log integration with sentry

Below are my config.ru file require 'raven' require './managers/log_manager.rb' logger = LogManager.create_logger('/error.log') logger.log(Logger::ERROR, "********** just testing **********") puts "#{logger.inspect}" Raven.configure do |config| …
user2473975
0
votes
1 answer

Sentry/Raven passing additional data

I'm trying to pass additional data with an exeption report to sentri. Test code Raven.captureMessage("test", {"blabla": "blabla"}) In sentri admin I can see the error, but can't find any additional data. Am I missing something, is it somewhere…
DSDev7
  • 91
  • 1
  • 8
0
votes
1 answer

Sentry doesn't let me change own settings

We have 3 teams. I don't want to receive emails for the Mobile team. I am owner (I have set it up) but it didn't let me change the settings. I had to promote another user to edit my settings and then reset him to be just Member. How can I opt out…
kev
  • 8,928
  • 14
  • 61
  • 103
0
votes
1 answer

Sentry - summary email feature

We currently have sentry installed, but it doesn't really fit our needs. We have a lot of clients and whenever something is wrong on the clients, sentry sends one email per issue per client (because sentry is unable detect the issues being the…
kev
  • 8,928
  • 14
  • 61
  • 103
0
votes
1 answer

Stop sentry from sending messages

In case sentry sends lots of similar messages, is there a way to stop it? We have a lot of clients and the sentry messages are basically all the same so sentry spams me.
kev
  • 8,928
  • 14
  • 61
  • 103
0
votes
2 answers

How to get raven to report Django runscript exceptions to Sentry?

My Django web app logs exceptions to Sentry via raven. I also run a number of scripts (via manage.py runscript) as cron jobs. Right now any exceptions in those scripts are not being reported to Sentry. How do I set such reporting up?
Ghopper21
  • 10,287
  • 10
  • 63
  • 92