diff --git a/solarwinds_apm/configurator.py b/solarwinds_apm/configurator.py index 16f1eca5f..1fe1f5966 100644 --- a/solarwinds_apm/configurator.py +++ b/solarwinds_apm/configurator.py @@ -224,6 +224,7 @@ def _custom_init_metrics( for _, exporter_or_reader_class in exporters_or_readers.items(): exporter_args = { + "max_export_batch_size": 50, "preferred_temporality": { Counter: AggregationTemporality.DELTA, UpDownCounter: AggregationTemporality.DELTA, @@ -231,7 +232,7 @@ def _custom_init_metrics( ObservableCounter: AggregationTemporality.DELTA, ObservableUpDownCounter: AggregationTemporality.DELTA, ObservableGauge: AggregationTemporality.DELTA, - } + }, } if issubclass(exporter_or_reader_class, MetricReader):