-
Notifications
You must be signed in to change notification settings - Fork 75
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
Nginx 1.10 does not support OpenTracing. Nginx tracing need to be migrated to OpenTelemetry #329
Comments
Testing nginx OpenTelemetry configurationThe following helm values can be used to activate nginx OpenTelemetry configuration controller:
podAnnotations:
linkerd.io/inject: enabled
# Allow snpippet anotations
# From v1.9 default value has chaged to false.
# allow-snippet-annotations: Enables Ingress to parse and add -snippet annotations/directives created by the user.
# linkerd-viz ingress uses this annotations
allowSnippetAnnotations: true
config:
# Open Telemetry
enable-opentelemetry: "true"
otlp-collector-host: tempo-distributor.tempo.svc.cluster.local
otlp-service-name: nginx-internal
# Print access log to file instead of stdout
# Separating acces logs from the rest
access-log-path: "/data/access.log"
log-format-escape-json: "true"
log-format-upstream: '{"source": "nginx", "time": $msec, "resp_body_size": $body_bytes_sent, "request_host": "$http_host", "request_address": "$remote_addr", "request_length": $request_length, "request_method": "$request_method", "uri": "$request_uri", "status": $status, "user_agent": "$http_user_agent", "resp_time": $request_time, "upstream_addr": "$upstream_addr", "trace_id": "$opentelemetry_trace_id", "span_id": "$opentelemetry_span_id"}'
# controller extra Volume
extraVolumeMounts:
- name: data
mountPath: /data
extraVolumes:
- name: data
emptyDir: {}
extraContainers:
- name: stream-accesslog
image: busybox
args:
- /bin/sh
- -c
- tail -n+1 -F /data/access.log
imagePullPolicy: Always
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /data
name: data With this configuration access log entries contain trace_id and span_id.
With this changes the e2e test using linkerd, and emojivoto test application does not work. E2E Trace context propagation is not working (nginx -> linkerd -> emojivoto application): Propagation is only working between nginx and linkerd.
|
Issue description
nginx ingress controller v1.10 breaks current Opentracing configuration:
nginx controller does not start with the following message:
According to 1.10 release notes
The text was updated successfully, but these errors were encountered: