From 1b75a7845e9c82944a0167b894e2107b5a9ff1b4 Mon Sep 17 00:00:00 2001 From: Oleg Bespalov Date: Thu, 6 Jul 2023 10:49:53 +0200 Subject: [PATCH] chore: add MaxTimeSeriesInBatch to the printable config for the debug purposes --- output/cloud/expv2/output.go | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/output/cloud/expv2/output.go b/output/cloud/expv2/output.go index c771f7e90db..afb662b09bc 100644 --- a/output/cloud/expv2/output.go +++ b/output/cloud/expv2/output.go @@ -346,20 +346,20 @@ func (o *Output) tracingEnabled() bool { func printableConfig(c cloudapi.Config) map[string]any { m := map[string]any{ - "host": c.Host.String, - "name": c.Name.String, - "timeout": c.Timeout.String(), - "webAppURL": c.WebAppURL.String, - "projectID": c.ProjectID.Int64, - "pushRefID": c.PushRefID.String, - "stopOnError": c.StopOnError.Bool, - "testRunDetails": c.TestRunDetails.String, - "aggregationPeriod": c.AggregationPeriod.String(), - "aggregationWaitPeriod": c.AggregationWaitPeriod.String(), - "maxMetricSamplesPerPackage": c.MaxMetricSamplesPerPackage.Int64, - "metricPushConcurrency": c.MetricPushConcurrency.Int64, - "metricPushInterval": c.MetricPushInterval.String(), - "token": "", + "host": c.Host.String, + "name": c.Name.String, + "timeout": c.Timeout.String(), + "webAppURL": c.WebAppURL.String, + "projectID": c.ProjectID.Int64, + "pushRefID": c.PushRefID.String, + "stopOnError": c.StopOnError.Bool, + "testRunDetails": c.TestRunDetails.String, + "aggregationPeriod": c.AggregationPeriod.String(), + "aggregationWaitPeriod": c.AggregationWaitPeriod.String(), + "maxTimeSeriesInBatch": c.MaxTimeSeriesInBatch.Int64, + "metricPushConcurrency": c.MetricPushConcurrency.Int64, + "metricPushInterval": c.MetricPushInterval.String(), + "token": "", } if c.Token.Valid {