/// <summary>
 /// Initializes a new instance of the <see cref="SpanDataExporter"/> class.
 /// </summary>
 /// <param name="options">Configuration options for the exporter.</param>
 public SpanDataExporter(ExporterOptions options)
 {
     this.traceExporter = new TraceExporter(options);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="OtlpActivityExporter"/> class.
 /// </summary>
 /// <param name="options">Configuration options for the exporter.</param>
 public OtlpActivityExporter(ExporterOptions options)
 {
     this.traceExporter = new TraceExporter(options);
 }