Esempio 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);
     }
 }
Esempio 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);
 }
Esempio 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);
 }
Esempio 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);
 }