Skip to content

Update Azure AppInsights otel example 0.123.0 #4623

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

Open
wants to merge 3 commits into
base: v1.15
Choose a base branch
from
Open
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 @@ -9,7 +9,7 @@ data:
otel-collector-config: |
receivers:
zipkin:
endpoint: 0.0.0.0:9411
endpoint: ${env:MY_POD_IP}:9411
extensions:
health_check:
pprof:
Expand Down Expand Up @@ -70,7 +70,7 @@ spec:
spec:
containers:
- name: otel-collector
image: otel/opentelemetry-collector-contrib:0.101.0
image: otel/opentelemetry-collector-contrib:0.123.0
command:
- "/otelcol-contrib"
- "--config=/conf/otel-collector-config.yaml"
Expand All @@ -83,6 +83,12 @@ spec:
memory: 400Mi
ports:
- containerPort: 9411 # Default endpoint for Zipkin receiver.
env:
- name: MY_POD_IP
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: status.podIP
volumeMounts:
- name: otel-collector-config-vol
mountPath: /conf
Expand Down
Loading