public CustomActivityProcessor()

in src/Elastic.Ingest.OpenTelemetry/CustomActivityExporter.cs [13:24]


	public CustomActivityProcessor(
		BaseExporter<Activity> exporter,
		int maxQueueSize = 2048,
		int scheduledDelayMilliseconds = 5000,
		int exporterTimeoutMilliseconds = 30000,
		int maxExportBatchSize = 512
	)
		: base(exporter, maxQueueSize, scheduledDelayMilliseconds, exporterTimeoutMilliseconds, maxExportBatchSize)
	{
		Activity.DefaultIdFormat = ActivityIdFormat.W3C;
		Activity.ForceDefaultIdFormat = true;
	}