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

Best way to install Sentry PHP on server

What is the best way to install sentry-php on my server to monitor and debug custom php script, I followed the instructions from this page https://docs.sentry.io/clients/php/ and downloaded the Sentry script and extracted it and included the…
Astm
  • 1,519
  • 2
  • 22
  • 30
0
votes
2 answers

Setting up Sentry (Raven) with Sail.js

I am quiet new to sails.js and currently trying to integrate sentry with it. I read up the following tutorial on it. https://docs.sentry.io/clients/node/ But i am not able to register error on sentry if i use patchGlobal command, it works on local…
Aditya Patel
  • 569
  • 1
  • 10
  • 28
0
votes
1 answer

Sentry Raven inside Firefox Addon SDK

I am making a Firefox Extension and I want to log the errors/messages/exceptions produced by the extension code using Sentry. I tried the JavsScript Raven client but I guess its not really made to live inside the "Content" context. The error I get…
MarZab
  • 2,543
  • 21
  • 28
0
votes
1 answer

SMTP connection timeout in Sentry

I'm using Sentry to monitor a Django app. I copied the following (correct and tested) email settings from the Django app to my Sentry config file: EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_HOST =…
kontextify
  • 478
  • 5
  • 16
0
votes
1 answer

Rails exceptions - get instance variables from controller

We're using raven-sentry in our application and I would like to have a default 'catch all' set of extra options applied to all errors. class StandardError def raven_context extra = {} #add conditional key/values to the hash if they exist …
TIMBERings
  • 688
  • 1
  • 8
  • 28
0
votes
1 answer

Where does Sentry store the default domain?

I've setup sentry, but I typo'd on the first page where it asked me to set the default domain that it would use. I can't seem to find that stored anywhere - it's not in config.yml or the database, that I can see. Where is it stored?
freyley
  • 4,145
  • 3
  • 20
  • 25
0
votes
0 answers

Sentry raven installation only shows example exception

I installed Sentry with docker: https://hub.docker.com/_/sentry/ I've used the nodejs bindings to send exceptions using the example here: https://docs.sentry.io/on-premise/clients/node/ I've sent many error events but it only seems to show the…
Bruce Lim
  • 745
  • 6
  • 22
0
votes
2 answers

JPype conflicts with django and raven

I am using jpype 0.6.1. I have written a python script to run some piece of code written in scala. Every thing is working as expected. But when I have integrated python script into my django project, I was getting some errors related to raven…
Durgesh Tanuku
  • 1,124
  • 2
  • 10
  • 26
0
votes
0 answers

Getting Sentry errors from RQ workers in Flask

I have a Flask server that is registered to sentry using raven.contrib.flask's Sentry(app, dns=...) object. I also have some python-rq workers for working on async background processes. I found this documentation that seems to state that I can…
Andrew
  • 1,890
  • 3
  • 16
  • 35
0
votes
1 answer

How to find the source url of an exception in sentry?

ENV INFO DJANGO 1.8.2 SENTRY 7.7.4 RAVEN 5.8.1 Installed sentry logging according to https://docs.getsentry.com/hosted/clients/python/integrations/django/ I am using sentry to catch the crash reports. I got an alert saying there is an exception…
Fu Jian
  • 395
  • 2
  • 12
0
votes
0 answers

Logstash (1.5) sending messages to the wrong output

I have a logstash instance with the following configuration (simplified): input { redis { } } output { elasticsearch_http { } if [level] == "WARNING" or [level] == "ERROR" or [level] == "CRITICAL" or [level] == "ALERT" or [level] ==…
iamBrecht
  • 81
  • 1
0
votes
0 answers

Connection Refused while deploying sentry server in Nginx

Am using python sentry server for tracking logs of my website.And i have used nginx server to deploy it, my servers IP is xx.xx.xx.xx when i open this in browser it shows me 502 Bad Gateway and when i checked the log it shows "connect() failed…
Vishnu
  • 324
  • 1
  • 3
  • 17
0
votes
1 answer

sentry throw error on laravel 5.1

I have use Laravel 5.1 with "jenssegers/raven": "^1.4" When I run composer self-update on server then found error page isn’t working Error log is: PHP message: PHP Fatal error: Uncaught exception 'ErrorException' with message 'preg_match() expects…
Prashant Shukla
  • 241
  • 1
  • 5
  • 21
0
votes
1 answer

Setup Apache2 mod_wsgi for sentry

I already used sentry 8.1 that installed on a virtualenv by below apache configs: WSGIDaemonProcess sentry python-path=/var/www/sentry-me:/var/www/sentry-me/env/lib/python2.7/site-packages WSGIProcessGroup…
M.javid
  • 6,387
  • 3
  • 41
  • 56
0
votes
0 answers

Getting undefined error exception on newly defined Error() in js with Angular

it('should catch exceptions', inject(function ($timeout) { spyOn(Raven, 'captureException'); $timeout(function () { throw new Error('My oh My'); }); …
Ozymandias
  • 199
  • 6
  • 17