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

Sentry events are not connected with sourcemaps

New Events are uploaded and soucemap is connected. but still i see this issue. All this events are displayed at release 1.0 . But still i see source maps are not connected .
SUNIL GOWROJI
  • 143
  • 1
  • 2
  • 12
0
votes
1 answer

Azure - Sentry's raven npm package not installing

I am using CircleCI to build the project and push it to a local repository provided by Azure's Web app. Up until I added raven as a package to repository everything worked fine, but suddenly, this single package is refusing to be installed on azure…
0
votes
1 answer

How to suppress local info logs from Sentry in Java?

I'm using Sentry to log errors that occur in my code and every time I launch my application I see that Sentry logs information like [main] INFO io.sentry.DefaultSentryClientFactory - Using an HTTPS connection to Sentry. Is it possible to suppress…
user6587056
0
votes
0 answers

how to install sentry package for laravel 5.4

I've tried installing Laravel Sentry package for the last version of Laravel 5.4, but it seems original package doesn't support above Laravel 4 version then I've tried other methods but didn't get a straight answer so I want to know if anybody has…
Afshin
  • 53
  • 5
0
votes
1 answer

Circuit breaker for Log4j 2

Context: Java web application running in Tomcat, Log4j 2 version 2.5. Logging set up to go to one Sentry instance using the Raven connector and one ELK (ElasticSearch + Logstash + Kibana) instance. Configuration looks like this…
vektor
  • 3,312
  • 8
  • 41
  • 71
0
votes
1 answer

Sentry is not logging 404 errors for ASP.NET MVC site

I've managed to hook up SharpRaven to log and capture errors successfully from both MVC and Web API controllers, but have been unable to log and capture 404 errors. I'm attempting to do this through Application_Error like so: public class…
Gavin
  • 5,629
  • 7
  • 44
  • 86
0
votes
1 answer

Sourcemaps not working for React Native Android app in production

I using Sentry to log crashes in my app in production. The sourcemaps are working as expected for iOS app but for Android, I don't the actual file and line number at which the crash happened. The stack trace contains references to…
Varun Gupta
  • 2,870
  • 6
  • 33
  • 73
0
votes
1 answer

Log4j 1.x Sentry appender: suppress warnings from specific sources for one appender

I'm using a Log4j 1.x appender for Sentry to track error logging. I'd like to ignore warnings from certain sources, e.g. from the logger dre.mytest. Can I do this using the log4j.properties file? Currently it looks like this. # Root logger…
Michiel Borkent
  • 34,228
  • 15
  • 86
  • 149
0
votes
1 answer

Sentry log4j throws error 405 not allowed

I'm trying to setup java log4j sentry on local liferay 6.2 tomcat 7.0.62 and still getting error 405 not allowed. This is log from liferay server 09:39:39.383 [raven-pool-1-thread-4] WARN : Lockdown started for 327680ms. 09:39:39.383…
Sajmon
  • 313
  • 3
  • 9
0
votes
1 answer

sentry logback saves only last log

my app sends only last log to sentry @Slf4j public class Opp implements CommandLineRunner { public static void main(String[] args) { SpringApplication.run(Opp.class, args); } @Override public void run(String... args) throws Exception { …
roki
  • 348
  • 3
  • 15
0
votes
1 answer

Raven - Sentry and Django: AttributeError: 'function' object has no attribute 'send'

I installed raven-python in my django project, the ./manage.py raven test works, but I get a big traceback when I want to load any page of my app (the development server starts correctly): Traceback (most recent call last): File…
Ehvince
  • 17,274
  • 7
  • 58
  • 79
0
votes
0 answers

How provide grant to a table in sentry

I have a employee_database and under employee_database I have tables salary_table and bonus_table. Right now emp_role has full access on employee_database. I would also like to give select access to hr_role on bonus_table. How can I achieve this in…
Rockshell
  • 87
  • 1
  • 1
  • 8
0
votes
1 answer

laravel sentry not update groups permissions entry in groups table

Currently I am reviewing a laravel project, using Sentry for authentication. Each routes will have a permission in groups table created by Sentry. For example a row in groups tables, I am using mongodb { "name": "Admins", "permissions":…
Thong Nguyen
  • 405
  • 1
  • 4
  • 10
0
votes
1 answer

Laravel Forge returning [Symfony\Component\Debug\Exception\FatalThrowableError] class not found

I have recently removed a Sentry package when I upgraded to 5.4. I have removed the alias and provider from config/app.php and reverted the Exception/handler.php file back to Laravel's original. The application itself works as expected locally, but…
user860511
0
votes
1 answer

How to configure Raven for an Android project to have custom tags?

I have managed to integrate Raven into my Android project by following the procedure provided in README file: Raven-Android on GitHub. I can also build events myself with custom tags and successfully capture them using instance of Raven. The…
Sevastyan Savanyuk
  • 5,797
  • 4
  • 22
  • 34