ITraceSpan interface

ITraceSpan represents a span in a trace.

public interface ITraceSpan : IDisposable, ITraceSpanProvider

Members

name description
SpanId { get; } The span ID. This is unique for each ITraceSpan object.
TraceId { get; } The trace ID. This is the same for all ITraceSpan objects that are part of the same trace.
Tracer { get; } The ITracer that created this ITraceSpan.
SetTag(…) Sets a tag on this span.

Remarks

See OpenTracing Specification for definitions of trace, span, etc.

See Also