Skip to content

Commit

Permalink
[opentelemetry-integration] Prioritize memory limiter processor in al…
Browse files Browse the repository at this point in the history
…l pipelines (#512)

Fixes ES-319.

Moves the memory limiter processor to the top of all the pipelines in which it is present. This is the recommended best practice according to the [processor's documentation](https://github.com/open-telemetry/opentelemetry-collector/blob/main/processor/memorylimiterprocessor/README.md#best-practices).
  • Loading branch information
douglascamata authored Feb 5, 2025
1 parent 5d851ef commit 0ba6ef4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 13 deletions.
4 changes: 4 additions & 0 deletions otel-integration/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## OpenTelemtry-Integration

### v0.0.141 / 2025-02-05

- [Fix] Prioritize memory limiter processor in all pipelines.

### v0.0.140 / 2025-02-04

- [Feat] Upgrade OpenTelemetry Collector to `0.118.0`
Expand Down
12 changes: 6 additions & 6 deletions otel-integration/k8s-helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: otel-integration
description: OpenTelemetry Integration
version: 0.0.140
version: 0.0.141
keywords:
- OpenTelemetry Collector
- OpenTelemetry Agent
Expand All @@ -11,27 +11,27 @@ keywords:
dependencies:
- name: opentelemetry-collector
alias: opentelemetry-agent
version: "0.106.0"
version: "0.106.1"
repository: https://cgx.jfrog.io/artifactory/coralogix-charts-virtual
condition: opentelemetry-agent.enabled
- name: opentelemetry-collector
alias: opentelemetry-agent-windows
version: "0.106.0"
version: "0.106.1"
repository: https://cgx.jfrog.io/artifactory/coralogix-charts-virtual
condition: opentelemetry-agent-windows.enabled
- name: opentelemetry-collector
alias: opentelemetry-cluster-collector
version: "0.106.0"
version: "0.106.1"
repository: https://cgx.jfrog.io/artifactory/coralogix-charts-virtual
condition: opentelemetry-cluster-collector.enabled
- name: opentelemetry-collector
alias: opentelemetry-receiver
version: "0.106.0"
version: "0.106.1"
repository: https://cgx.jfrog.io/artifactory/coralogix-charts-virtual
condition: opentelemetry-receiver.enabled
- name: opentelemetry-collector
alias: opentelemetry-gateway
version: "0.106.0"
version: "0.106.1"
repository: https://cgx.jfrog.io/artifactory/coralogix-charts-virtual
condition: opentelemetry-gateway.enabled
- name: coralogix-ebpf-agent
Expand Down
14 changes: 7 additions & 7 deletions otel-integration/k8s-helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ global:
defaultSubsystemName: "integration"
logLevel: "warn"
collectionInterval: "30s"
version: "0.0.140"
version: "0.0.141"

extensions:
kubernetesDashboard:
Expand Down Expand Up @@ -362,11 +362,11 @@ opentelemetry-agent:
exporters:
- coralogix
processors:
- memory_limiter
- transform/prometheus
- k8sattributes
- resourcedetection/env
- resourcedetection/region
- memory_limiter
- batch
receivers:
- otlp
Expand All @@ -376,10 +376,10 @@ opentelemetry-agent:
exporters:
- coralogix
processors:
- memory_limiter
- k8sattributes
- resourcedetection/env
- resourcedetection/region
- memory_limiter
- batch
receivers:
- otlp
Expand Down Expand Up @@ -720,21 +720,21 @@ opentelemetry-cluster-collector:
exporters:
- coralogix
processors:
- memory_limiter
- resource/kube-events
- transform/kube-events
- memory_limiter
- batch
metrics:
exporters:
- coralogix
processors:
- memory_limiter
- transform/prometheus
- k8sattributes
- metricstransform/k8s-dashboard
- transform/k8s-dashboard
- resourcedetection/env
- resourcedetection/region
- memory_limiter
- batch
receivers:
- otlp
Expand Down Expand Up @@ -981,12 +981,12 @@ opentelemetry-gateway:
exporters:
- coralogix
processors:
- memory_limiter
- transform/prometheus
- k8sattributes
- transform/k8s_attributes
- resourcedetection/env
- resourcedetection/region
- memory_limiter
- batch
receivers:
- prometheus
Expand Down Expand Up @@ -1174,12 +1174,12 @@ opentelemetry-receiver:
exporters:
- coralogix
processors:
- memory_limiter
- transform/prometheus
- k8sattributes
- transform/k8s_attributes
- resourcedetection/env
- resourcedetection/region
- memory_limiter
- batch
receivers:
- prometheus
Expand Down

0 comments on commit 0ba6ef4

Please sign in to comment.