Skip to content

Commit

Permalink
deltatocumulativeprocessor: update max_streams in the readme (open-te…
Browse files Browse the repository at this point in the history
…lemetry#36169)

#### Description

The max_streams default value was changed in
open-telemetry#35048
but it was not updated in the readme.
  • Loading branch information
wildum authored and sbylica-splunk committed Dec 17, 2024
1 parent cf2c38c commit 17412b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion processor/deltatocumulativeprocessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ processors:

# upper limit of streams to track. new streams exceeding this limit
# will be dropped
[ max_streams: <int> | default = 0 (off) ]
[ max_streams: <int> | default = 9223372036854775807 (max int) ]

```

Expand Down
2 changes: 1 addition & 1 deletion processor/deltatocumulativeprocessor/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down

0 comments on commit 17412b0

Please sign in to comment.