Ejemplo n.º 1
0
 /// <summary>
 /// Writes the specified <see cref="Span"/> collection to the agent writer.
 /// </summary>
 /// <param name="trace">The <see cref="Span"/> collection to write.</param>
 void IDatadogTracer.Write(Span[] trace)
 {
     if (Settings.TraceEnabled)
     {
         _agentWriter.WriteTrace(trace);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Writes the specified <see cref="Span"/> collection to the agent writer.
 /// </summary>
 /// <param name="trace">The <see cref="Span"/> collection to write.</param>
 void IDatadogTracer.Write(Span[] trace)
 {
     _agentWriter.WriteTrace(trace);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Writes the specified <see cref="Span"/> collection to the agent writer.
 /// </summary>
 /// <param name="trace">The <see cref="Span"/> collection to write.</param>
 void IDatadogTracer.Write(List <Span> trace)
 {
     _agentWriter.WriteTrace(trace);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Writes the specified <see cref="Span"/> collection to the agent writer.
 /// </summary>
 /// <param name="trace">The <see cref="Span"/> collection to write.</param>
 void ISignalFxTracer.Write(Span[] trace)
 {
     _agentWriter.WriteTrace(trace);
 }