public LightStepTraceExporter(LightStepTraceExporterOptions options, HttpClient client = null) { this.options = options; this.httpClient = client ?? new HttpClient(); this.httpClient.Timeout = this.options.SatelliteTimeout; }
public LightStepTraceExporter(LightStepTraceExporterOptions options, ISpanExporter exporter, HttpClient client = null) { this.options = options; this.exporter = exporter; this.httpClient = client; }