public ZipkinSpan(
     ZipkinTracer tracer,
     ZipkinSpanContext context,
     string operationName,
     DateTime?startTimestamp)
     : base(tracer, context, operationName, startTimestamp)
 {
     _endpoint = tracer.Endpoint;
 }
예제 #2
0
        public ZipkinSpanBuilder(ZipkinTracer tracer, string operationName)
            : base(operationName)
        {
            if (tracer == null)
            {
                throw new ArgumentNullException(nameof(tracer));
            }

            _tracer = tracer;
        }