Skip to content

Commit

Permalink
Synchronize documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
juliens authored and traefiker committed Mar 13, 2019
1 parent 0cfaab0 commit 0ca2149
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 57 deletions.
17 changes: 16 additions & 1 deletion docs/content/observability/tracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The tracing system allows developers to visualize call flows in their infrastruc

Traefik uses OpenTracing, an open standard designed for distributed tracing.

Traefik supports three tracing backends: Jaeger, Zipkin, and DataDog.
Traefik supports three tracing backends: Jaeger, Zipkin, DataDog, and Instana.

## Configuration Reference

Expand Down Expand Up @@ -75,6 +75,13 @@ Traefik supports three tracing backends: Jaeger, Zipkin, and DataDog.
#
# Default: "jaeger"
propagation = "jaeger"
# Trace Context Header Name is the http header name used to propagate tracing context.
# This must be in lower-case to avoid mismatches when decoding incoming headers.
#
# Default: "uber-trace-id"
#
traceContextHeaderName = "uber-trace-id"
```

!!! warning
Expand Down Expand Up @@ -178,6 +185,14 @@ Traefik supports three tracing backends: Jaeger, Zipkin, and DataDog.
# Default: ""
#
globalTag = ""
# Enable priority sampling. When using distributed tracing, this option must be enabled in order
# to get all the parts of a distributed trace sampled.
#
# Default: false
#
prioritySampling = false

```

??? example "With Instana"
Expand Down
3 changes: 3 additions & 0 deletions docs/content/providers/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ Attach labels to your containers and let Traefik do the rest!

```toml
[docker]
# swarm classic (1.12-)
# endpoint = "tcp://127.0.0.1:2375"
# docker swarm mode (1.12+)
endpoint = "tcp://127.0.0.1:2377"
swarmMode = true
```
Expand Down
Loading

0 comments on commit 0ca2149

Please sign in to comment.