-
-
Notifications
You must be signed in to change notification settings - Fork 226
Description
Package
Sentry
.NET Flavor
.NET
.NET Version
10.0.100-preview4
OS
Android
OS Version
No response
Development Environment
Rider 2025 (MacOS)
SDK Version
5.11.2
Self-Hosted Sentry Version
No response
Workload Versions
Workload version: 10.0.100-preview.4.25263.1
Installed Workload Id Manifest Version Installation Source
android 36.0.0-preview.4.80/10.0.100-preview.4 SDK 10.0.100-preview.4
ios 18.4.10471-net10-p4/10.0.100-preview.4 SDK 10.0.100-preview.4
macos 15.4.10471-net10-p4/10.0.100-preview.4 SDK 10.0.100-preview.4
wasm-tools 10.0.100-preview.4.25258.110/10.0.100-preview.4 SDK 10.0.100-preview.4
wasm-tools-net8 10.0.100-preview.4.25258.110/10.0.100-preview.4 SDK 10.0.100-preview.4
wasm-tools-net9 10.0.100-preview.4.25258.110/10.0.100-preview.4 SDK 10.0.100-preview.4
UseSentry or SentrySdk.Init call
SentrySdk.Init(options =>
{
options.Dsn = "";
options.Release = "[email protected]";
options.Environment = "debug";
options.Debug = true;
options.AutoSessionTracking = true; // seems to be enabled by default on Mobile platforms
});
Steps to Reproduce
- Initialize Sentry SDK with AutoSessionTracking=true;
- Launch the application;
- Observe the outgoing traffic;
Expected Result
Each Sentry SDK initialization is counted as a single session.
Actual Result
We are using our own tools to monitor application launches. After some time we noticed that the amount of sessions reported by Sentry is more than two times bigger than the amount of launches reported by our tool. After checking the traffic using Charles Proxy we noticed that right after Sentry SDK initialization there are two requests to the api/envelope/ endpoint, for example:
{"sdk":{"name":"sentry.java.android.dotnet","version":"8.6.0","packages":[{"name":"maven:io.sentry:sentry","version":"8.6.0"},{"name":"maven:io.sentry:sentry-android-core","version":"8.6.0"},{"name":"maven:io.sentry:sentry-android-replay","version":"8.6.0"},{"name":"maven:io.sentry:sentry-android-ndk","version":"8.6.0"}],"integrations":["UncaughtExceptionHandler","ShutdownHook","SendCachedEnvelope","Ndk","AppLifecycle","AnrV2","ActivityLifecycle","ActivityBreadcrumbs","CurrentActivity","EnvelopeFileObserver","UserInteraction","AppComponentsBreadcrumbs","SystemEventsBreadcrumbs"]},"sent_at":"2025-07-10T09:14:41.415Z"}
{"content_type":"application/json","type":"session","length":263}
{"sid":"db20ab1a6a024637af647e2252dba6ee","did":"2aa909e2ae2947a19e1a0e1e2cad216a","init":true,"started":"2025-07-10T09:14:41.386Z","status":"ok","errors":0,"timestamp":"2025-07-10T09:14:41.386Z","attrs":{"release":"[email protected]","environment":"debug"}}
{"sdk":{"name":"sentry.dotnet","version":"5.11.2"},"sent_at":"2025-07-10T09:14:41.531745 00:00"}
{"type":"session","length":292}
{"sid":"1a453159ddff42618c83c9933ddc5df5","did":"e1e056e9-bb2c-4d65-a271-794af1793512","init":true,"started":"2025-07-10T11:14:41.4554246 02:00","timestamp":"2025-07-10T09:14:41.4605099 00:00","seq":0,"duration":0,"errors":0,"attrs":{"release":"[email protected]","environment":"debug"}}
so two sessions with different IDs are reported by different layers of the SDK almost at the same time.
The issue seems to be related to the fact, that AutoSessionTracking=true option is used by the sentry-dotnet SDK itself and also passed to the sentry-java SDK.
Also, it seems that iOS application with AutoSessionTracking=true has the same issue.
Metadata
Metadata
Assignees
Labels
Projects
Status
Status