Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Allow IScopeObserver to observe trace #4026

Merged
merged 10 commits into from
Apr 2, 2025
Merged

Conversation

bitsandfoxes
Copy link
Contributor

@bitsandfoxes bitsandfoxes commented Mar 5, 2025

The Problem

Currently, errors on different layers - i.e. Unity C# -> Java -> C/C++ are not connected via trace ID. The Java and the native SDK allow for Hybrid SDKs to SetTrace(SentryId traceId, SpanId parentSpanId). From the Unity SDK's point of view, there is no mechanism right now that allows the .NET SDK to automatically propagate the trace to the native layers.

Proposal

Since the trace is held on the scope's PropagationContext we can leverage the already existing TwP functionality. Additionally, we can use the IScopeObserver to "observe" the relevant TraceID and ParentSpanID.

Allow the Unity SDK to SetTrace

There are multiple ways I can think of achieving this:

  1. Make PropagationContext public
  2. Add an accessors to the Scope to update the `PropagationContext
  3. Add an InternalSentrySdk class where we can put SetTrace (and other things that regular users are not supposed to go). We have similar solutions like PrivateSentrySDKOnly for Cocoa and InternalSentrySdk in Java.
  4. Make InternalsVisible to Sentry.Unity.

Update the IScopeObserver

This IScopeObserver can then be implemented by the respective native scope observer on the Unity SDK.
getsentry/sentry-unity#1997
This will also work for Android and iOS when building MAUI apps since. We'll just have to bump the native SDKs there.

Result

Unity SDK

The end result looks like this
Screenshot 2025-03-28 at 17 23 58

.NET SDK

This also works on platforms where the .NET SDK brings support via sentry-native.
Since the SDK also has observers for iOS and Android, once those SDKs are updated, it'll work there as well.

Context

Relates to getsentry/sentry-unity#1997
Relevant change to sentry-java: getsentry/sentry-java#4137
Relevant change to sentry-native: getsentry/sentry-native#1137

Copy link
Contributor

github-actions bot commented Mar 5, 2025

Messages
📖 Do not forget to update Sentry-docs with your feature once the pull request gets approved.

Generated by 🚫 dangerJS against f3e4082

@bitsandfoxes bitsandfoxes marked this pull request as draft March 7, 2025 15:33
@bitsandfoxes bitsandfoxes marked this pull request as ready for review March 28, 2025 16:23
Copy link
Member

@bruno-garcia bruno-garcia left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving to unblock but give @jamescrosswell and @aritchie a chance to review this if they have time in the next day or two unless you need this out there asap


public void SetTrace(SentryId traceId, SpanId parentSpanId)
{
// TODO: This requires sentry-java 8.4.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to follow up later with this once this is added to the Java and Apple SDKs?
If so ideally we create a ticket so folks here can add it later

@@ -16,8 +16,14 @@

<PropertyGroup Condition="'$(SolutionName)' == 'Sentry.Unity'">
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<!-- To be able to make the internals visible, since we're not signing the assembly for Unity -->
<SignAssembly>false</SignAssembly>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this affect things like assembly aliasing? Since before we did have signing and now we wouldn't?

@jamescrosswell jamescrosswell merged commit 438ae83 into main Apr 2, 2025
23 checks passed
@jamescrosswell jamescrosswell deleted the feat/observe-trace branch April 2, 2025 06:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants