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

Adjust memory limits in the events collector #836

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ Custom events filter with new syntax:
- k8s.configmap.name
memory_limiter:
check_interval: 1s
limit_mib: 512
spike_limit_mib: 128
limit_mib: 800
spike_limit_mib: 300
resource/events:
attributes:
- action: insert
Expand Down Expand Up @@ -587,8 +587,8 @@ Custom events filter with old syntax:
- k8s.configmap.name
memory_limiter:
check_interval: 1s
limit_mib: 512
spike_limit_mib: 128
limit_mib: 800
spike_limit_mib: 300
resource/events:
attributes:
- action: insert
Expand Down Expand Up @@ -1118,8 +1118,8 @@ Events config should match snapshot when using default values:
- k8s.configmap.name
memory_limiter:
check_interval: 1s
limit_mib: 512
spike_limit_mib: 128
limit_mib: 800
spike_limit_mib: 300
resource/events:
attributes:
- action: insert
Expand Down Expand Up @@ -1631,8 +1631,8 @@ Events config should not contain manifest collection pipeline when disabled:
timeout: 1s
memory_limiter:
check_interval: 1s
limit_mib: 512
spike_limit_mib: 128
limit_mib: 800
spike_limit_mib: 300
resource/events:
attributes:
- action: insert
Expand Down
6 changes: 3 additions & 3 deletions deploy/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,8 @@ otel:
# See https://github.com/open-telemetry/opentelemetry-collector/tree/main/processor/memorylimiterprocessor for configuration reference
memory_limiter:
check_interval: 1s
limit_mib: 512
spike_limit_mib: 128
limit_mib: 800
spike_limit_mib: 300

# DEPRECATED: Memory Ballast enables applications to configure memory ballast for the process.
# See https://github.com/open-telemetry/opentelemetry-collector/tree/main/extension/ballastextension for configuration reference
Expand Down Expand Up @@ -602,7 +602,7 @@ otel:
# By default: affinity is set to run the DaemonSet on linux amd64.
affinity: {}

# Properties that can be configured on filelog reciever. For full description of properties
# Properties that can be configured on filelog receiver. For full description of properties
# see https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/filelogreceiver
receiver:
start_at: end
Expand Down
Loading