Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[processor/deltatocumulative] limit tracked streams #31488

Merged
merged 5 commits into from
Mar 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
*: attach issue to TODO
  • Loading branch information
sh0rez committed Mar 5, 2024

Verified

This commit was signed with the committer’s verified signature.
sh0rez sh0rez
commit cf22424b19684e783d98f705ecf1a9014de9e062
7 changes: 5 additions & 2 deletions processor/deltatocumulativeprocessor/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ func (c *Config) Validate() error {

func createDefaultConfig() component.Config {
return &Config{
MaxStale: 5 * time.Minute,
MaxStreams: 0, // disable. TODO: find good default
MaxStale: 5 * time.Minute,

// disable. TODO: find good default
// https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/31603
MaxStreams: 0,
}
}
Loading