adds missing & to flush_jitter output ref (#8838)

This commit is contained in:
Helen Weller 2021-02-09 14:12:49 -05:00 committed by GitHub
parent aa6dc79fc6
commit 6804cfcfef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1392,7 +1392,7 @@ func (c *Config) buildOutput(name string, tbl *ast.Table) (*models.OutputConfig,
// TODO: support FieldPass/FieldDrop on outputs
c.getFieldDuration(tbl, "flush_interval", &oc.FlushInterval)
c.getFieldDuration(tbl, "flush_jitter", oc.FlushJitter)
c.getFieldDuration(tbl, "flush_jitter", &oc.FlushJitter)
c.getFieldInt(tbl, "metric_buffer_limit", &oc.MetricBufferLimit)
c.getFieldInt(tbl, "metric_batch_size", &oc.MetricBatchSize)