OpenTracing
This document explains how to use OpenTracing with the Ingress Controller.
The Ingress Controller supports OpenTracing with the third-party module opentracing-contrib/nginx-opentracing.
This document explains how to use OpenTracing with the Ingress Controller.
Note: The examples below use the snippets annotations, which are disabled by default. To use snippets, set the enable-snippets
command-line argument.
Prerequisites
-
Use an Ingress Controller image that contains OpenTracing.
- You can find the images that include OpenTracing listed in the technical specs doc.
- Alternatively, you can build your own image using
debian-image
(oralpine-image
) for NGINX ordebian-image-plus
(oralpine-image-plus
) for NGINX Plus. Jaeger, Zipkin and Datadog tracers are installed by default.
-
Load the OpenTracing module. You need to load the module with the configuration for the chosen tracer using the following ConfigMap keys:
opentracing-tracer
: sets the path to the vendor tracer binary plugin. This is the path you used in the COPY line of step ii above.opentracing-tracer-config
: sets the tracer configuration in JSON format.
Below an example on how to use those keys to load the module with Jaeger tracer:
opentracing-tracer: "/usr/local/lib/libjaegertracing_plugin.so" opentracing-tracer-config: | { "service_name": "nginx-ingress", "propagation_format": "w3c", "sampler": { "type": "const", "param": 1 }, "reporter": { "localAgentHostPort": "jaeger-agent.default.svc.cluster.local:6831" } }
Enable OpenTracing Globally
To enable OpenTracing globally (for all Ingress, VirtualServer and VirtualServerRoute resources), set the opentracing
ConfigMap key to True
:
opentracing: True
Enable/Disable OpenTracing per Ingress Resource
It is possible to use annotations to enable or disable OpenTracing for a specific Ingress Resource. As mentioned in the prerequisites section, both opentracing-tracer
and opentracing-tracer-config
must be configured.
Consider the following two cases:
-
OpenTracing is globally disabled.
- To enable OpenTracing for a specific Ingress Resource, use the server snippet annotation:
nginx.org/server-snippets: | opentracing on;
- To enable OpenTracing for specific paths, (1) you need to use Mergeable Ingress resources and (2) use the location snippets annotation to enable OpenTracing for the paths of a specific Minion Ingress resource:
nginx.org/location-snippets: | opentracing on;
- To enable OpenTracing for a specific Ingress Resource, use the server snippet annotation:
-
OpenTracing is globally enabled:
-
To disable OpenTracing for a specific Ingress Resource, use the server snippet annotation:
nginx.org/server-snippets: | opentracing off;
-
To disable OpenTracing for specific paths, (1) you need to use Mergeable Ingress resources and (2) use the location snippets annotation to disable OpenTracing for the paths of a specific Minion Ingress resource:
nginx.org/location-snippets: | opentracing off;
-
Customize OpenTracing
You can customize OpenTracing though the supported OpenTracing module directives. Use the snippets ConfigMap keys or annotations to insert those directives into the http, server or location contexts of the generated NGINX configuration.
For example, to propagate the active span context for upstream requests, it is required to set the opentracing_propagate_context
directive, which you can add to an Ingress resource using the location snippets annotation:
nginx.org/location-snippets: |
opentracing_propagate_context;
Note: opentracing_propagate_context
and opentracing_grpc_propagate_context
directives can be used in http, server or location contexts according to the module documentation. However, because of the way the module works and how the Ingress Controller generates the NGINX configuration, it is only possible to use the directive in the location context.