-
-
Notifications
You must be signed in to change notification settings - Fork 216
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
Conversation
|
77cfd29
to
2df0cd9
Compare
There was a problem hiding this 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 |
There was a problem hiding this comment.
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> |
There was a problem hiding this comment.
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?
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 relevantTraceID
andParentSpanID
.Allow the Unity SDK to
SetTrace
There are multiple ways I can think of achieving this:
MakePropagationContext
publicAdd an accessors to theScope
to update the `PropagationContextAdd anInternalSentrySdk
class where we can putSetTrace
(and other things that regular users are not supposed to go). We have similar solutions likePrivateSentrySDKOnly
for Cocoa andInternalSentrySdk
in Java.InternalsVisible
toSentry.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

.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#4137Relevant change to
sentry-native
: getsentry/sentry-native#1137