public JaegerTraceExporter(JaegerExporterOptions options, IJaegerUdpBatcher jaegerAgentUdpBatcher)
 {
     this.ValidateOptions(options);
     this.InitializeOptions(options);
     this.jaegerAgentUdpBatcher = jaegerAgentUdpBatcher;
 }
Example #2
0
 public JaegerTraceExporter(IJaegerUdpBatcher jaegerAgentUdpBatcher)
 {
     this.jaegerAgentUdpBatcher = jaegerAgentUdpBatcher;
 }
        private bool disposedValue = false; // To detect redundant dispose calls

        public JaegerTraceExporter(JaegerExporterOptions options)
        {
            this.ValidateOptions(options);
            this.jaegerAgentUdpBatcher = new JaegerUdpBatcher(options);
        }