Skip to content

Commit

Permalink
[opentelemetry-integration] Change default value for metrics telemetr…
Browse files Browse the repository at this point in the history
…y service address (#477)

Fixes ES-386.
  • Loading branch information
douglascamata authored Nov 29, 2024
1 parent 091a52d commit e10fb90
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 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.116 / 2024-11-29

- [Fix] Change the default value of the metrics telemetry service address to `0.0.0.0:8888`.

### v0.0.115 / 2024-11-28

- [Fix] Make the metrics telemetry service listen on `0.0.0.0` instead of using shell var expansion to resolve the pod IP.
Expand Down
2 changes: 1 addition & 1 deletion 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.115
version: 0.0.116
keywords:
- OpenTelemetry Collector
- OpenTelemetry Agent
Expand Down
4 changes: 2 additions & 2 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.115"
version: "0.0.116"

extensions:
kubernetesDashboard:
Expand Down Expand Up @@ -313,7 +313,7 @@ opentelemetry-agent:
level: "{{ .Values.global.logLevel }}"
encoding: json
metrics:
address: ${env:MY_POD_IP}:8888
address: 0.0.0.0:8888
extensions:
- zpages
- pprof
Expand Down

0 comments on commit e10fb90

Please sign in to comment.