Questions tagged [raven]

Use the [raven] tag for questions related to the standalone (and the official) Python client for Sentry (previously django-sentry). Use [ravendb] for the RavenDB related questions.

Raven is a standalone (and the official) Python client for Sentry (previously django-sentry).

135 questions
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

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

ubuntu 14.04 SuperDesk Raven not configured (logging is disabled)

I installed a clean Ubuntu 14.04 x64 server machine on VMWare ESXi5.5 Inside it I followed the installation procedure for Sourcefabric's SuperDesk software described in https://github.com/superdesk/superdesk/blob/master/README.md After running the…
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
0
votes
1 answer

Where to look up error of sentry itself?

We've set up sentry on our server and sometimes we've got errors while working with sentry web interface. It looks like this: There was an internal server error while processing your request. You may reference this error as…
Michael Logutov
  • 2,551
  • 4
  • 28
  • 32
0
votes
1 answer

Sentry logged exception without additional data

Sentry 6.4.4 Python raven 5.0.0 Integration with Django 1.7.0. When I try to store 500 error (automation raven handling), I get in Sentry empty event, without any additional information. It stored only exception name and time. But this should be…
Tom
  • 787
  • 1
  • 12
  • 28
0
votes
1 answer

Sentry only shows :None error

I want to detect errors in a standalone Python script with Sentry+Raven. I tried to configure it and raven test ... is workging. Then I place this on top of the script: from raven import Client client =…
Sergey
  • 19,487
  • 13
  • 44
  • 68
0
votes
1 answer

Python raven. Send part of frames

In our project raven costs many time for create and send message to Sentry. We checked out many time costs for create data about frames, but we don't need data about all frames often. Is it possible and how create data about not all frames just…
Alexey
  • 812
  • 13
  • 22
0
votes
1 answer

Celery worker with gevent pool + Sentry logger = hang

I'm using Celery with Django integration. I discovered some troubles with new commit to my current project: Celery worker with gevent pool refused to handle new tasks. After short investigation, I found that 'sentry' log handler cause a…
Artem Mezhenin
  • 5,539
  • 6
  • 32
  • 51
0
votes
1 answer

Raven-js errors not getting "site" property in sentry, while python raven errors are?

I have three python clients and a javascript client (all raven) connecting to a single sentry server. I have a unique site set for each client. However, while errors generated by the three python clients have site properly set in the sentry…
eternicode
  • 6,805
  • 4
  • 33
  • 39
-1
votes
2 answers

Sentry for Python: Add "git blame" like prefix to each source code line

It would be really great if exceptions in sentry would contain info like git blame does. If every line of source code which I see in an exception in sentry would have a prefix like git blame (date, commit hash, author) you could find the relevant…
guettli
  • 25,042
  • 81
  • 346
  • 663
1 2 3
8
9