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

[opentelemetry-integration] Change default value for metrics telemetry service address #477

Merged
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
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
Loading