traefik/docs/content/observability/tracing/zipkin.md

133 lines
1.8 KiB
Markdown
Raw Normal View History

2019-06-27 22:16:04 +00:00
# Zipkin
To enable the Zipkin:
2019-07-16 07:54:04 +00:00
```toml tab="File (TOML)"
2019-06-27 22:16:04 +00:00
[tracing]
[tracing.zipkin]
```
2019-07-16 07:54:04 +00:00
```yaml tab="File (YAML)"
tracing:
zipkin: {}
```
2019-06-27 22:16:04 +00:00
```bash tab="CLI"
--tracing
--tracing.zipkin
```
#### `httpEndpoint`
_Required, Default="http://localhost:9411/api/v1/spans"_
Zipkin HTTP endpoint used to send data.
2019-07-16 07:54:04 +00:00
```toml tab="File (TOML)"
2019-06-27 22:16:04 +00:00
[tracing]
[tracing.zipkin]
httpEndpoint = "http://localhost:9411/api/v1/spans"
```
2019-07-16 07:54:04 +00:00
```yaml tab="File (YAML)"
tracing:
zipkin:
httpEndpoint: http://localhost:9411/api/v1/spans
```
2019-06-27 22:16:04 +00:00
```bash tab="CLI"
--tracing
--tracing.zipkin.httpEndpoint="http://localhost:9411/api/v1/spans"
```
#### `debug`
_Optional, Default=false_
Enable Zipkin debug.
2019-07-16 07:54:04 +00:00
```toml tab="File (TOML)"
2019-06-27 22:16:04 +00:00
[tracing]
[tracing.zipkin]
debug = true
```
2019-07-16 07:54:04 +00:00
```yaml tab="File (YAML)"
tracing:
zipkin:
debug: true
```
2019-06-27 22:16:04 +00:00
```bash tab="CLI"
--tracing
--tracing.zipkin.debug=true
```
#### `sameSpan`
_Optional, Default=false_
Use Zipkin SameSpan RPC style traces.
2019-07-16 07:54:04 +00:00
```toml tab="File (TOML)"
2019-06-27 22:16:04 +00:00
[tracing]
[tracing.zipkin]
sameSpan = true
```
2019-07-16 07:54:04 +00:00
```yaml tab="File (YAML)"
tracing:
zipkin:
sameSpan: true
```
2019-06-27 22:16:04 +00:00
```bash tab="CLI"
--tracing
--tracing.zipkin.sameSpan=true
```
#### `id128Bit`
_Optional, Default=true_
Use Zipkin 128 bit root span IDs.
2019-07-16 07:54:04 +00:00
```toml tab="File (TOML)"
2019-06-27 22:16:04 +00:00
[tracing]
[tracing.zipkin]
id128Bit = false
```
2019-07-16 07:54:04 +00:00
```yaml tab="File (YAML)"
tracing:
zipkin:
id128Bit: false
```
2019-06-27 22:16:04 +00:00
```bash tab="CLI"
--tracing
--tracing.zipkin.id128Bit=false
```
#### `sampleRate`
_Required, Default=1.0_
The rate between 0.0 and 1.0 of requests to trace.
2019-07-16 07:54:04 +00:00
```toml tab="File (TOML)"
2019-06-27 22:16:04 +00:00
[tracing]
[tracing.zipkin]
sampleRate = 0.2
```
2019-07-16 07:54:04 +00:00
```yaml tab="File (YAML)"
tracing:
zipkin:
sampleRate: 0.2
```
2019-06-27 22:16:04 +00:00
```bash tab="CLI"
--tracing
--tracing.zipkin.sampleRate="0.2"
```