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

107 lines
1.5 KiB
Markdown
Raw Normal View History

2019-09-02 10:18:04 +00:00
# Datadog
2019-07-18 19:36:05 +00:00
2019-09-02 10:18:04 +00:00
To enable the Datadog:
2019-07-18 19:36:05 +00:00
2019-07-22 07:58:04 +00:00
```yaml tab="File (YAML)"
metrics:
2019-09-02 10:18:04 +00:00
datadog: {}
2019-07-22 07:58:04 +00:00
```
```toml tab="File (TOML)"
[metrics]
[metrics.datadog]
```
2019-07-18 19:36:05 +00:00
```bash tab="CLI"
2019-07-22 07:58:04 +00:00
--metrics.datadog=true
2019-07-18 19:36:05 +00:00
```
#### `address`
_Required, Default="127.0.0.1:8125"_
Address instructs exporter to send metrics to datadog-agent at this address.
2019-07-22 07:58:04 +00:00
```yaml tab="File (YAML)"
2019-07-18 19:36:05 +00:00
metrics:
2019-09-02 10:18:04 +00:00
datadog:
2019-07-18 19:36:05 +00:00
address: 127.0.0.1:8125
```
```toml tab="File (TOML)"
[metrics]
[metrics.datadog]
address = "127.0.0.1:8125"
```
2019-07-18 19:36:05 +00:00
```bash tab="CLI"
--metrics.datadog.address=127.0.0.1:8125
2019-07-18 19:36:05 +00:00
```
#### `addEntryPointsLabels`
_Optional, Default=true_
Enable metrics on entry points.
2019-07-22 07:58:04 +00:00
```yaml tab="File (YAML)"
2019-07-18 19:36:05 +00:00
metrics:
2019-09-02 10:18:04 +00:00
datadog:
2019-07-18 19:36:05 +00:00
addEntryPointsLabels: true
```
```toml tab="File (TOML)"
[metrics]
[metrics.datadog]
addEntryPointsLabels = true
```
2019-07-18 19:36:05 +00:00
```bash tab="CLI"
--metrics.datadog.addEntryPointsLabels=true
```
#### `addServicesLabels`
_Optional, Default=true_
Enable metrics on services.
2019-07-22 07:58:04 +00:00
```yaml tab="File (YAML)"
2019-07-18 19:36:05 +00:00
metrics:
2019-09-02 10:18:04 +00:00
datadog:
2019-07-18 19:36:05 +00:00
addServicesLabels: true
```
```toml tab="File (TOML)"
[metrics]
[metrics.datadog]
addServicesLabels = true
```
2019-07-18 19:36:05 +00:00
```bash tab="CLI"
--metrics.datadog.addServicesLabels=true
```
#### `pushInterval`
_Optional, Default=10s_
The interval used by the exporter to push metrics to datadog-agent.
2019-07-22 07:58:04 +00:00
```yaml tab="File (YAML)"
2019-07-18 19:36:05 +00:00
metrics:
2019-09-02 10:18:04 +00:00
datadog:
2019-07-18 19:36:05 +00:00
pushInterval: 10s
```
```toml tab="File (TOML)"
[metrics]
[metrics.datadog]
pushInterval = 10s
```
2019-07-18 19:36:05 +00:00
```bash tab="CLI"
--metrics.datadog.pushInterval=10s
```