2017-10-24 20:49:30 +00:00
# OpenTracing
2017-10-13 13:55:03 +00:00
2019-02-10 15:59:05 +00:00
Enables requests served by NGINX for distributed tracing via The OpenTracing Project.
2018-06-24 04:51:46 +00:00
2017-10-24 20:49:30 +00:00
Using the third party module [opentracing-contrib/nginx-opentracing ](https://github.com/opentracing-contrib/nginx-opentracing ) the NGINX ingress controller can configure NGINX to enable [OpenTracing ](http://opentracing.io ) instrumentation.
2017-10-13 13:55:03 +00:00
By default this feature is disabled.
2018-06-24 04:51:46 +00:00
## Usage
2019-02-10 15:59:05 +00:00
To enable the instrumentation we must enable OpenTracing in the configuration ConfigMap:
2018-06-24 04:51:46 +00:00
```
data:
enable-opentracing: "true"
```
We must also set the host to use when uploading traces:
```
zipkin-collector-host: zipkin.default.svc.cluster.local
2019-02-20 15:16:34 +00:00
jaeger-collector-host: jaeger-agent.default.svc.cluster.local
2019-02-15 20:20:10 +00:00
datadog-collector-host: datadog-agent.default.svc.cluster.local
2018-06-24 04:51:46 +00:00
```
2019-02-10 16:24:32 +00:00
NOTE: While the option is called `jaeger-collector-host` , you will need to point this to a `jaeger-agent` , and not the `jaeger-collector` component.
2018-06-24 04:51:46 +00:00
2019-02-15 20:20:10 +00:00
Next you will need to deploy a distributed tracing system which uses OpenTracing.
[Zipkin ](https://github.com/openzipkin/zipkin ) and
[Jaeger ](https://github.com/jaegertracing/jaeger ) and
[Datadog ](https://github.com/DataDog/dd-opentracing-cpp )
have been tested.
2018-06-24 04:51:46 +00:00
Other optional configuration options:
```
2018-10-10 03:25:53 +00:00
# specifies the port to use when uploading traces, Default: 9411
2018-06-24 04:51:46 +00:00
zipkin-collector-port
# specifies the service name to use for any traces created, Default: nginx
zipkin-service-name
2018-10-10 03:25:53 +00:00
# specifies sample rate for any traces created, Default: 1.0
2018-06-28 14:42:32 +00:00
zipkin-sample-rate
2018-10-10 03:25:53 +00:00
# specifies the port to use when uploading traces, Default: 6831
2018-06-24 04:51:46 +00:00
jaeger-collector-port
# specifies the service name to use for any traces created, Default: nginx
jaeger-service-name
# specifies the sampler to be used when sampling traces.
# The available samplers are: const, probabilistic, ratelimiting, remote, Default: const
jaeger-sampler-type
# specifies the argument to be passed to the sampler constructor, Default: 1
jaeger-sampler-param
2019-02-15 20:20:10 +00:00
2019-05-21 10:14:33 +00:00
# Specifies the custom remote sampler host to be passed to the sampler constructor. Must be a valid URL.
# Default: http://127.0.0.1
jaeger-sampler-host
# Specifies the custom remote sampler port to be passed to the sampler constructor. Must be a number. Default: 5778
jaeger-sampler-port
2019-02-15 20:20:10 +00:00
# specifies the port to use when uploading traces, Default 8126
datadog-collector-port
# specifies the service name to use for any traces created, Default: nginx
datadog-service-name
# specifies the operation name to use for any traces collected, Default: nginx.handle
datadog-operation-name-override
2018-06-24 04:51:46 +00:00
```
2019-02-10 16:24:32 +00:00
All these options (including host) allow environment variables, such as `$HOSTNAME` or `$HOST_IP` . In the case of Jaeger, if you have a Jaeger agent running on each machine in your cluster, you can use something like `$HOST_IP` (which can be 'mounted' with the `status.hostIP` fieldpath, as described [here ](https://kubernetes.io/docs/tasks/inject-data-application/downward-api-volume-expose-pod-information/#capabilities-of-the-downward-api )) to make sure traces will be sent to the local agent.
2019-02-10 15:59:05 +00:00
2018-06-24 04:51:46 +00:00
## Examples
The following examples show how to deploy and test different distributed tracing systems. These example can be performed
using Minikube.
### Zipkin
2017-10-13 13:55:03 +00:00
2017-10-24 20:49:30 +00:00
In the [rnburn/zipkin-date-server ](https://github.com/rnburn/zipkin-date-server )
2019-02-10 15:59:05 +00:00
GitHub repository is an example of a dockerized date service. To install the example and Zipkin collector run:
2017-10-13 13:55:03 +00:00
```
2017-10-24 20:49:30 +00:00
kubectl create -f https://raw.githubusercontent.com/rnburn/zipkin-date-server/master/kubernetes/zipkin.yaml
kubectl create -f https://raw.githubusercontent.com/rnburn/zipkin-date-server/master/kubernetes/deployment.yaml
2017-10-13 13:55:03 +00:00
```
2019-02-10 15:59:05 +00:00
Also we need to configure the NGINX controller ConfigMap with the required values:
2017-10-13 13:55:03 +00:00
2017-10-24 20:49:30 +00:00
```
$ echo '
2017-10-13 13:55:03 +00:00
apiVersion: v1
2017-10-24 20:49:30 +00:00
kind: ConfigMap
2017-10-13 13:55:03 +00:00
data:
enable-opentracing: "true"
zipkin-collector-host: zipkin.default.svc.cluster.local
metadata:
2018-10-09 03:15:09 +00:00
name: nginx-configuration
2018-06-24 04:51:46 +00:00
namespace: kube-system
2017-10-24 20:49:30 +00:00
' | kubectl replace -f -
2017-10-13 13:55:03 +00:00
```
2019-02-10 15:59:05 +00:00
In the Zipkin interface we can see the details:
2018-06-24 04:51:46 +00:00

### Jaeger
2017-10-13 13:55:03 +00:00
2019-02-10 15:59:05 +00:00
1. Enable Ingress addon in Minikube:
2018-06-24 04:51:46 +00:00
```
$ minikube addons enable ingress
```
2017-10-13 13:55:03 +00:00
2019-02-10 15:59:05 +00:00
2. Add Minikube IP to /etc/hosts:
2018-06-24 04:51:46 +00:00
```
$ echo "$(minikube ip) example.com" | sudo tee -a /etc/hosts
```
2017-10-13 13:55:03 +00:00
2019-02-10 15:59:05 +00:00
3. Apply a basic Service and Ingress Resource:
2018-06-24 04:51:46 +00:00
```
# Create Echoheaders Deployment
$ kubectl run echoheaders --image=k8s.gcr.io/echoserver:1.4 --replicas=1 --port=8080
2018-10-10 03:25:53 +00:00
2018-06-24 04:51:46 +00:00
# Expose as a Cluster-IP
$ kubectl expose deployment echoheaders --port=80 --target-port=8080 --name=echoheaders-x
2018-10-10 03:25:53 +00:00
2018-06-24 04:51:46 +00:00
# Apply the Ingress Resource
$ echo '
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: echo-ingress
spec:
rules:
- host: example.com
http:
paths:
- backend:
serviceName: echoheaders-x
servicePort: 80
path: /echo
' | kubectl apply -f -
```
2018-10-10 03:25:53 +00:00
4. Enable OpenTracing and set the jaeger-collector-host:
2018-06-24 04:51:46 +00:00
```
$ echo '
apiVersion: v1
kind: ConfigMap
data:
enable-opentracing: "true"
2019-02-20 15:16:34 +00:00
jaeger-collector-host: jaeger-agent.default.svc.cluster.local
2018-06-24 04:51:46 +00:00
metadata:
2018-10-09 03:15:09 +00:00
name: nginx-configuration
2018-06-24 04:51:46 +00:00
namespace: kube-system
' | kubectl replace -f -
```
5. Apply the Jaeger All-In-One Template:
```
$ kubectl apply -f https://raw.githubusercontent.com/jaegertracing/jaeger-kubernetes/master/all-in-one/jaeger-all-in-one-template.yml
```
6. Make a few requests to the Service:
```
$ curl example.com/echo -d "meow"
2018-10-10 03:25:53 +00:00
2018-06-24 04:51:46 +00:00
CLIENT VALUES:
client_address=172.17.0.5
command=POST
real path=/echo
query=nil
request_version=1.1
request_uri=http://example.com:8080/echo
2018-10-10 03:25:53 +00:00
2018-06-24 04:51:46 +00:00
SERVER VALUES:
server_version=nginx: 1.10.0 - lua: 10001
2018-10-10 03:25:53 +00:00
2018-06-24 04:51:46 +00:00
HEADERS RECEIVED:
accept=*/*
connection=close
content-length=4
content-type=application/x-www-form-urlencoded
host=example.com
user-agent=curl/7.54.0
x-forwarded-for=192.168.99.1
x-forwarded-host=example.com
x-forwarded-port=80
x-forwarded-proto=http
x-original-uri=/echo
x-real-ip=192.168.99.1
x-scheme=http
BODY:
meow
```
7. View the Jaeger UI:
```
$ minikube service jaeger-query --url
2018-10-10 03:25:53 +00:00
2018-06-24 04:51:46 +00:00
http://192.168.99.100:30183
```
2018-10-10 03:25:53 +00:00
2019-02-10 15:59:05 +00:00
In the Jaeger interface we can see the details:
2018-06-24 04:51:46 +00:00
