Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ internal sealed class IgnoreActivityHandler : IActivityHandler
"Experimental.System.Net.Http.Connections",
"Experimental.System.Net.Security",
"Experimental.System.Net.Sockets",
"Yarp.ReverseProxy",
};

public static bool ShouldIgnoreByOperationName(string? operationName)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ public YarpDistributedTracingTests(ITestOutputHelper output)
: base("Yarp.DistributedTracing", output)
{
SetServiceVersion(ServiceVersion);
// This generates an extra span in some versions of YARP, so for simplicity, we exclude it
SetEnvironmentVariable("DD_TRACE_OTEL_ENABLED", "false");
}

public override Result ValidateIntegrationSpan(MockSpan span, string metadataSchemaVersion) => Result.DefaultSuccess;
Expand Down
Loading