Skip to content

Commit 175ba63

Browse files
author
Todd Lair
authored
Merge pull request #115 from kgorro/master
(DOTNET-58) Support for distributed tracing
2 parents 7b25381 + 26039c8 commit 175ba63

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Src/StackifyLib/ProfileTracer.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System;
2+
using System.Collections.Specialized;
23
using System.Runtime.CompilerServices;
34
using System.Threading.Tasks;
45
using StackifyLib.Utils;
@@ -203,6 +204,12 @@ public ProfileTracer IgnoreChildFrames(bool value = true)
203204
return this;
204205
}
205206

207+
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.NoInlining | MethodImplOptions.NoOptimization)]
208+
public void ApplyDistributedHeaders(string traceparent,string tracestate)
209+
{
210+
211+
}
212+
206213
//Method the profiler looks for
207214
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.NoInlining | MethodImplOptions.NoOptimization)]
208215
private void ExecInternal2(string values, Action action)

0 commit comments

Comments
 (0)