From 8868cfe8772dc6e84378f1762a946b577d7c0178 Mon Sep 17 00:00:00 2001 From: William Dumont Date: Mon, 18 Nov 2024 18:52:54 +0100 Subject: [PATCH] deltatocumulativeprocessor: update max_streams in the readme (#36169) #### Description The max_streams default value was changed in https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/35048 but it was not updated in the readme. --- processor/deltatocumulativeprocessor/README.md | 2 +- processor/deltatocumulativeprocessor/config.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/processor/deltatocumulativeprocessor/README.md b/processor/deltatocumulativeprocessor/README.md index 56a2746726cc..8672cebf257a 100644 --- a/processor/deltatocumulativeprocessor/README.md +++ b/processor/deltatocumulativeprocessor/README.md @@ -30,7 +30,7 @@ processors: # upper limit of streams to track. new streams exceeding this limit # will be dropped - [ max_streams: | default = 0 (off) ] + [ max_streams: | default = 9223372036854775807 (max int) ] ``` diff --git a/processor/deltatocumulativeprocessor/config.go b/processor/deltatocumulativeprocessor/config.go index 2d6e1f5ae343..4cb97c91f59b 100644 --- a/processor/deltatocumulativeprocessor/config.go +++ b/processor/deltatocumulativeprocessor/config.go @@ -35,7 +35,7 @@ func createDefaultConfig() component.Config { return &Config{ MaxStale: 5 * time.Minute, - // disable. TODO: find good default + // TODO: find good default // https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/31603 MaxStreams: math.MaxInt, }