-
Notifications
You must be signed in to change notification settings - Fork 127
Add support for overriding hostname and ip fields #105
Comments
OK cool. Consider using |
That could work but it depends on how it is implemented. Via kubernetes yaml, I can create an env var named My goal is to make it work (via whatever acceptable means) in the nginx-opentracing library so I can PR it to the ingress for kubernetes. |
sounds like there are two enhancements:
Don't know about kubernetes, pretty sure it allows setting any kind of env variables, but not sure if it supports substitutions so that one could define |
@yurishkuro yes that seems sensible. I'm looking for |
There is relevant issue for nginx jaeger plugin which depends on this feature to be able to be configured with env vars: opentracing-contrib/nginx-opentracing#68 In short: a jaeger agent is placed on every node in kubernetes deployment and to eliminate extra time consumption packets should be send straight to node IP. Node IP where pod is currently deployed could be set dynamically into env var: env:
- name: JAEGER_AGENT_HOST
valueFrom:
fieldRef:
fieldPath: status.hostIP P.S. Secondly read the thread and second guess - I missed and tags are far from env vars configuration, if so, I'll create a new issue for this, just write so. |
This mirrors the python and java clients: jaegertracing/jaeger-client-python#167 and jaegertracing/jaeger-client-java#371
C++ isn't a language I'm fluent in, but it looks like this is the relevant code to be changed. I might take a stab at fixing this myself.
The goal is to have the tracing on the the kubernetes ingress controller report the actual host it is running on via a magical env var passed to the pod via the downward api.
The text was updated successfully, but these errors were encountered: