Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
87 views

I'm building a Nuxt 3 application (using Vue 3 and Vite as the default builder) and integrating Sentry for error monitoring with sourcemap uploads. My build artifacts are uploaded to a CDN (e.g., AWS ...
Lokesh B's user avatar
1 vote
0 answers
77 views

When I try to upgrade @sentry/vite-plugin to v4.6.0, I get an error at runtime but only in bundled code version (locally it works fine). The error is: Uncaught TypeError: Cannot read properties of ...
Zoran's user avatar
  • 31
1 vote
1 answer
69 views

I want to not collect all the user/device context, like location, remaining battery and so on. Can I configure it somehow? Here's my config: .UseSentry(options => { options.Dsn = "..."...
user963935's user avatar
0 votes
0 answers
67 views

I'm trying to get Sentry to work with WSO2 Micro Integrator 4.4.0, but it seems to be an incredibly difficult task. Has anyone here managed to get it running? If you have, I would be very grateful if ...
Noráu's user avatar
  • 1
0 votes
0 answers
195 views

I am having a dart app which is supported on windows platform as well. We are using Sentry for crash reporting. But, for windows, the stack trace on Sentry dashboard shows for every trace: app +...
Ashish Rana's user avatar
0 votes
1 answer
124 views

I am using Sentry's breadcrumb feature to track logs prior to exception. The problem is that breadcrumbs are currently persisted only in memory, so when the user restarts and gets an exception, we don'...
Zorayr's user avatar
  • 25.2k
1 vote
1 answer
195 views

I have some cases in which I am cancelling the token for certain API requests. This is treated by Sentry as an error and being logged into Sentry. I would like cancel token errors to not be logged. I ...
user3808307's user avatar
1 vote
0 answers
154 views

I'm trialing Sentry.Maui to be able to capture exceptions which can pinpoint to exact method name and line number in my project. Tried every setting I can think of, but it only works in debug mode or ...
ErnestJ's user avatar
  • 343
2 votes
2 answers
186 views

I'm working on Compose Multiplatform (CMP) project that targets Android, iOS, and JS (browser) platforms. I'm trying to integrate Sentry to track logs and errors across android and ios platforms. I've ...
melikaafrakhteh's user avatar
0 votes
1 answer
215 views

I'm using out-of-the-box code from expo managed, using firebase and Sentry. However I get Metro error: (0 , _auth.getReactNativePersistence) is not a function when using Sentry. Is anyone else ...
nobby nob's user avatar
2 votes
0 answers
44 views

My react native application works very fine locally, connecting to both the local and remote servers. But, the moment I build an apk, or abb file for internal testing, the app refuses to connect to ...
taribi isaac's user avatar
0 votes
0 answers
164 views

I'm working on a task requiring matching Sentry releases with GitHub version. I used these commands on my dev.yaml workflow to generate releases on Sentry and attach commits to it. npm install -g @...
El Niño's user avatar
0 votes
0 answers
45 views

I'm doing a task which requires making sure that Sentry release names are automatically generated or updated to match GitHub release tags. I'm using a Nextjs app, and here is my next.config.mjs: ...
El Niño's user avatar
1 vote
1 answer
463 views

We are using Sentry to monitor our production bugs, and since we picked Temporal to run our background tasks (workflows and activities) we don't have Sentry logging anymore. Is it possible to ...
Natim's user avatar
  • 18.3k
0 votes
0 answers
140 views

I installed Sentry with Helm in EKS and used MSK to serve as external Kafka. However I am seeing sentry-generic-metrics-consumer and sentry-metrics-consumer pods restarting on a regular basis, ...
Jianan Liu's user avatar
1 vote
1 answer
351 views

I have a ListView in my project. Flutter version is 3.27.3, Sentry 8.3.0 Every time I scroll I get the following in the console I/GestureDetector(28852): obtain mCurrentMotionEventRaw. action: 2 id: ...
user3808307's user avatar
2 votes
1 answer
646 views

As per the Sentry setup guide for a React FE project import * as Sentry from "@sentry/react"; Sentry.init({ dsn: "SOME_SENTRY_DNS", // Setting this option to true will send ...
Tiago Peres's user avatar
  • 15.9k
0 votes
0 answers
42 views

Sentry doesn't encrypt data on device before sending it to sentry api. Is there any way to turn on encryption?I am using the react native sentry sdk Have tried multiple flags but none seem to be ...
Shekhar Sivaraman's user avatar
1 vote
1 answer
158 views

I'm using Sentry package 3.1.0 in Unity (6000.0.42f1) and for every user it's reporting a Sentry.Unity.ApplicationNotResponding (Application not responding for at least 10000 ms) everytime the game ...
jiop's user avatar
  • 751
0 votes
1 answer
55 views

We have a Ruby on Rails + Grape application with a lot going on. There are some places where we rescue exceptions and log messages or take corrective actions. Sometimes swallowing the exception, ...
David Hempy's user avatar
  • 6,434
0 votes
1 answer
134 views

When using @sentry/nuxt: 9.3.0, you have to create sentry.client.config.ts in the root level of your app. Example sentry.client.config.ts contents: Sentry.init({ dsn: 'sentry key' }) problem is if ...
Alexander Kim's user avatar
1 vote
2 answers
239 views

I want only to send Fatal exceptions (when app crashes) to Sentry. If I remove the SetBeforeSent everything is sent, if I have it nothing is sent. .UseSentry(options => { options.Dsn ...
Anders's user avatar
  • 298
0 votes
1 answer
278 views

Trying to deploy a nextjs website with Sentry monitoring on hostinger. Sentry works when running locally, and the site doesnt crash, but it errors out and crashes when deployed on hostinger: console ...
Toasty's user avatar
  • 3
1 vote
1 answer
577 views

I have this configuration in my app.json: "plugins": [ [ "@sentry/react-native/expo", { "organization": "myOrg", "...
Pajala's user avatar
  • 143
0 votes
1 answer
736 views

I'm using Next js 15 and React 19 for a web app and I'm having issue with installing Sentry into my project. While trying to install sentry I get the following error: ◇ Installation failed. │ ■ ...
boom pow's user avatar
  • 331
0 votes
1 answer
96 views

I've run into a nasty config issue in a project using Next.js 14.2.5 (pages router), Jest, and Sentry. I am upgrading from Sentry v7 to v8, and any time that I import from @sentry/nextjs, running Jest ...
Joshua Miles's user avatar
1 vote
1 answer
1k views

I am having expo react native application which has ios and android folders prebuilt in the source code. I having some configuration done in the native projects and hence it's available in the source ...
SVG's user avatar
  • 946
1 vote
1 answer
3k views

What's the difference between OpenTelemetry and Sentry? At first glance they look similar with regarding to tracing, logs etc. However, there should difference between them
AlexElin's user avatar
  • 1,829
0 votes
1 answer
93 views

We updated @sentry/react-native in our project from 5.31.0 to 6.7.0 In our self hosted pipeline agent we now receive this error while building: [!] CocoaPods could not find compatible versions for pod ...
MrStrew's user avatar
2 votes
1 answer
71 views

I want to capture the full traceback that contains information about error in shiny. This can be useful if shiny is connected with the sentryR R package for reporting the errors on sentry dashboard. ...
umair durrani's user avatar
3 votes
3 answers
1k views

I'm working on a Flutter project that uses the sentry_flutter package. When I try to run pod install inside the ios directory, I get the following error: Analyzing dependencies [!] CocoaPods could not ...
Sepehr's user avatar
  • 90
23 votes
1 answer
6k views

We very recently set up Google ads for our react app. Our React app is a 7-8 year old app originally built with create-react-app. Now, in Sentry we are getting these two errors, both with steady ...
Canovice's user avatar
  • 10.7k
0 votes
0 answers
40 views

This works fn main() { init_instrumentation(); } fn init_instrumentation() { let sentry_options = sentry::ClientOptions { release: sentry::release_name!(), environment: Some(...
abhinavrathore019's user avatar
1 vote
0 answers
346 views

I have a bash script, that executes command using Sentry cli for profiling. #!/bin/bash ENV_FILE="../../.env.local" # Check if the .env.local file exists if [ ! -f "$ENV_FILE" ]; ...
Alex Ale's user avatar
0 votes
1 answer
132 views

I have a Django 3.2 application running with gunicorn 23 on Python 3.9. I am also using version 1.9.7 of Sentry SDK. The app is in docker container with all other dependencies installed in virtualenv. ...
stavitel_borek's user avatar
0 votes
0 answers
37 views

I'm working on an Express application using Sequelize for the database, and Sentry for error tracking. However, I'm struggling to return a JSON response with error details when an exception occurs in ...
Amanda Alkmim's user avatar
0 votes
0 answers
77 views

I'm trying to build a Flutter application. Once I configured the flutter_sentry package I started to see these logs when I start the application W/Sentry ( 7120): Invalid app start data: app not ...
Salvatore Calla''s user avatar
1 vote
2 answers
294 views

I'm playing around with instrumentation using Sentry and I'm so discouraged by how many lines of code I have to add everywhere. According to the Sentry docs, I have to add all these lines every time I ...
Simon Fredsted's user avatar
0 votes
1 answer
176 views

I am using Sentry for node.js. In that context, I have an express route (let's say /myRoute) that has two main branches within it, and the branch chosen to traverse is based on what is passed into ...
drmrbrewer's user avatar
  • 13.5k
1 vote
1 answer
261 views

in our project we are using Sentry as crash reporting tool. we have a high number of crashes, titled as "android::Looper::pollInner". it just shows a bunch of stacktrace lines that cannot ...
mrzbn's user avatar
  • 675
3 votes
1 answer
1k views

I recently upgraded my project from Expo SDK 51 to SDK 52. After the upgrade, I encountered an issue where @sentry/react-native/expo stopped working. If I remove @sentry/react-native/expo from my app ...
Mediator's user avatar
  • 15.4k
1 vote
0 answers
237 views

I would like to automate creating GitHub Issues based on Sentry Issues (which are automatically generated from detected server errors for our applications.) I am hosting Sentry on a public-facing ...
hamx0r's user avatar
  • 4,348
2 votes
1 answer
1k views

What is the recommended way to avoid sending errors generated while developing to Sentry in JS and the native side? JS error in Dev mode Native crash error in Dev mode What was tried for Sentry @...
Roni Castro's user avatar
  • 2,174
2 votes
0 answers
254 views

I’m working on a Next.js project where I want to set up Sentry for error tracking without impacting the Total Blocking Time (TBT) and main-thread performance. I’ve tried moving Sentry operations to a ...
tina tahvildari's user avatar
2 votes
0 answers
187 views

UPDATE: My sourcemap https://pastebin.com/vj3EHTMV PS. I have just added inlineSources to true on tsconfig.json { "$schema": "https://json.schemastore.org/tsconfig", "...
Rodrigo's user avatar
  • 1,119
3 votes
1 answer
350 views

I am experiencing random crashes in my React Native application that I am unable to reproduce consistently. I have integrated both Sentry and Firebase Crashlytics, but neither is capturing these ...
Ahmed Ali's user avatar
  • 169
1 vote
0 answers
122 views

I have a react application which I monitor with Sentry. Inside Sentry I see quite often the following error: React ErrorBoundary TypeError: undefined is not an object (evaluating 'a._result.default') ...
Snake_py's user avatar
  • 582
1 vote
0 answers
115 views

I am developing a project that uses Sentry libraries for error tracking and sends them to my local server, which acts as a simplified version of Sentry. The main task of the project is to correctly ...
Yobachu's user avatar
  • 11
0 votes
1 answer
163 views

I'm using Sentry in JS application (web extension) to track the errors. Now i'd like to have some log of the events that happened before the error, so i've added scope.captureMessage() calls every ...
4ntoine's user avatar
  • 20.6k
1 vote
0 answers
92 views

I have a project in Next.js 14 where I added Sentry to capture errors. Somehow, a strange error is logged in Sentry when I click on a link. The error looks like this: Breadcrumbs Exception - This ...
Ionut Cirja's user avatar

1
2 3 4 5
32