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

164 lines
2.8 KiB
Markdown
Raw Normal View History

---
title: "Traefik Datadog Tracing Documentation"
description: "Traefik Proxy supports Datadog for tracing. Read the technical documentation to enable Datadog for observability."
---
2019-09-02 10:18:04 +00:00
# Datadog
2019-06-27 22:16:04 +00:00
To enable the Datadog tracer:
2019-06-27 22:16:04 +00:00
2019-07-16 07:54:04 +00:00
```yaml tab="File (YAML)"
tracing:
2019-09-02 10:18:04 +00:00
datadog: {}
2019-07-16 07:54:04 +00:00
```
```toml tab="File (TOML)"
[tracing]
[tracing.datadog]
```
2019-06-27 22:16:04 +00:00
```bash tab="CLI"
2019-07-22 07:58:04 +00:00
--tracing.datadog=true
2019-06-27 22:16:04 +00:00
```
#### `localAgentHostPort`
_Optional, Default="localhost:8126"_
2019-06-27 22:16:04 +00:00
Local Agent Host Port instructs the reporter to send spans to the Datadog Agent at this address (host:port).
2019-06-27 22:16:04 +00:00
2019-07-16 07:54:04 +00:00
```yaml tab="File (YAML)"
tracing:
2019-09-02 10:18:04 +00:00
datadog:
localAgentHostPort: localhost:8126
2019-07-16 07:54:04 +00:00
```
```toml tab="File (TOML)"
[tracing]
[tracing.datadog]
localAgentHostPort = "localhost:8126"
```
2019-06-27 22:16:04 +00:00
```bash tab="CLI"
--tracing.datadog.localAgentHostPort=localhost:8126
```
#### `localAgentSocket`
_Optional, Default=""_
Local Agent Socket instructs the reporter to send spans to the Datadog Agent at this UNIX socket.
```yaml tab="File (YAML)"
tracing:
datadog:
localAgentSocket: /var/run/datadog/apm.socket
```
```toml tab="File (TOML)"
[tracing]
[tracing.datadog]
localAgentSocket = "/var/run/datadog/apm.socket"
```
```bash tab="CLI"
--tracing.datadog.localAgentSocket=/var/run/datadog/apm.socket
2019-06-27 22:16:04 +00:00
```
#### `debug`
_Optional, Default=false_
Enables Datadog debug.
2019-06-27 22:16:04 +00:00
2019-07-16 07:54:04 +00:00
```yaml tab="File (YAML)"
tracing:
2019-09-02 10:18:04 +00:00
datadog:
2019-07-16 07:54:04 +00:00
debug: true
```
```toml tab="File (TOML)"
[tracing]
[tracing.datadog]
debug = true
```
2019-06-27 22:16:04 +00:00
```bash tab="CLI"
--tracing.datadog.debug=true
```
#### `globalTag`
2022-09-12 13:14:08 +00:00
??? warning "Deprecated in favor of the [`globalTags`](#globaltags) option."
_Optional, Default=empty_
Applies a shared key:value tag on all spans.
```yaml tab="File (YAML)"
tracing:
datadog:
globalTag: sample
```
```toml tab="File (TOML)"
[tracing]
[tracing.datadog]
globalTag = "sample"
```
```bash tab="CLI"
--tracing.datadog.globalTag=sample
```
#### `globalTags`
2019-06-27 22:16:04 +00:00
_Optional, Default=empty_
2022-09-12 13:14:08 +00:00
Applies a list of shared key:value tags on all spans.
2019-06-27 22:16:04 +00:00
2019-07-16 07:54:04 +00:00
```yaml tab="File (YAML)"
tracing:
2019-09-02 10:18:04 +00:00
datadog:
2022-09-12 13:14:08 +00:00
globalTags:
tag1: foo
tag2: bar
2019-07-16 07:54:04 +00:00
```
```toml tab="File (TOML)"
[tracing]
[tracing.datadog]
2022-09-12 13:14:08 +00:00
[tracing.datadog.globalTags]
tag1 = "foo"
tag2 = "bar"
```
2019-06-27 22:16:04 +00:00
```bash tab="CLI"
2022-09-12 13:14:08 +00:00
--tracing.datadog.globalTags.tag1=foo
--tracing.datadog.globalTags.tag2=bar
2019-06-27 22:16:04 +00:00
```
#### `prioritySampling`
_Optional, Default=false_
Enables priority sampling.
When using distributed tracing,
2019-06-27 22:16:04 +00:00
this option must be enabled in order to get all the parts of a distributed trace sampled.
2019-07-16 07:54:04 +00:00
```yaml tab="File (YAML)"
tracing:
2019-09-02 10:18:04 +00:00
datadog:
2019-07-16 07:54:04 +00:00
prioritySampling: true
```
```toml tab="File (TOML)"
[tracing]
[tracing.datadog]
prioritySampling = true
```
2019-06-27 22:16:04 +00:00
```bash tab="CLI"
--tracing.datadog.prioritySampling=true
```