@@ -61,6 +61,7 @@ func createTraces(ctx context.Context, set exporter.Settings, config component.C
6161 return exporterhelper .NewTraces (ctx , set , config ,
6262 debug .pushTraces ,
6363 exporterhelper .WithCapabilities (consumer.Capabilities {MutatesData : false }),
64+ exporterhelper .WithQueue (cfg .QueueConfig ),
6465 exporterhelper .WithTimeout (exporterhelper.TimeoutConfig {Timeout : 0 }),
6566 exporterhelper .WithShutdown (otlptext .LoggerSync (exporterLogger )),
6667 )
@@ -73,6 +74,7 @@ func createMetrics(ctx context.Context, set exporter.Settings, config component.
7374 return exporterhelper .NewMetrics (ctx , set , config ,
7475 debug .pushMetrics ,
7576 exporterhelper .WithCapabilities (consumer.Capabilities {MutatesData : false }),
77+ exporterhelper .WithQueue (cfg .QueueConfig ),
7678 exporterhelper .WithTimeout (exporterhelper.TimeoutConfig {Timeout : 0 }),
7779 exporterhelper .WithShutdown (otlptext .LoggerSync (exporterLogger )),
7880 )
@@ -85,6 +87,7 @@ func createLogs(ctx context.Context, set exporter.Settings, config component.Con
8587 return exporterhelper .NewLogs (ctx , set , config ,
8688 debug .pushLogs ,
8789 exporterhelper .WithCapabilities (consumer.Capabilities {MutatesData : false }),
90+ exporterhelper .WithQueue (cfg .QueueConfig ),
8891 exporterhelper .WithTimeout (exporterhelper.TimeoutConfig {Timeout : 0 }),
8992 exporterhelper .WithShutdown (otlptext .LoggerSync (exporterLogger )),
9093 )
@@ -97,6 +100,7 @@ func createProfiles(ctx context.Context, set exporter.Settings, config component
97100 return xexporterhelper .NewProfiles (ctx , set , config ,
98101 debug .pushProfiles ,
99102 exporterhelper .WithCapabilities (consumer.Capabilities {MutatesData : false }),
103+ exporterhelper .WithQueue (cfg .QueueConfig ),
100104 exporterhelper .WithTimeout (exporterhelper.TimeoutConfig {Timeout : 0 }),
101105 exporterhelper .WithShutdown (otlptext .LoggerSync (exporterLogger )),
102106 )
0 commit comments