2022-04-15 15:44:08 +02:00
---
title: "Traefik StatsD Documentation"
description: "Traefik supports several metrics backends, including StatsD. Learn how to implement it for observability in Traefik Proxy. Read the technical documentation."
---
2019-07-18 21:36:05 +02:00
# StatsD
To enable the Statsd:
2019-07-22 09:58:04 +02:00
```yaml tab="File (YAML)"
2019-07-18 21:36:05 +02:00
metrics:
2019-09-30 14:56:05 +02:00
statsD: {}
2019-07-18 21:36:05 +02:00
```
2021-06-19 00:08:08 +02:00
```toml tab="File (TOML)"
[metrics]
[metrics.statsD]
```
2019-07-18 21:36:05 +02:00
```bash tab="CLI"
2019-07-22 09:58:04 +02:00
--metrics.statsd=true
2019-07-18 21:36:05 +02:00
```
#### `address`
_Required, Default="localhost:8125"_
Address instructs exporter to send metrics to statsd at this address.
2019-07-22 09:58:04 +02:00
```yaml tab="File (YAML)"
2019-07-18 21:36:05 +02:00
metrics:
2019-09-30 14:56:05 +02:00
statsD:
2019-07-18 21:36:05 +02:00
address: localhost:8125
```
2021-06-19 00:08:08 +02:00
```toml tab="File (TOML)"
[metrics]
[metrics.statsD]
address = "localhost:8125"
```
2019-07-18 21:36:05 +02:00
```bash tab="CLI"
2019-11-19 10:18:05 +01:00
--metrics.statsd.address=localhost:8125
2019-07-18 21:36:05 +02:00
```
#### `addEntryPointsLabels`
_Optional, Default=true_
Enable metrics on entry points.
2019-07-22 09:58:04 +02:00
```yaml tab="File (YAML)"
2019-07-18 21:36:05 +02:00
metrics:
2019-09-30 14:56:05 +02:00
statsD:
2019-07-18 21:36:05 +02:00
addEntryPointsLabels: true
```
2021-06-19 00:08:08 +02:00
```toml tab="File (TOML)"
[metrics]
[metrics.statsD]
addEntryPointsLabels = true
```
2019-07-18 21:36:05 +02:00
```bash tab="CLI"
--metrics.statsd.addEntryPointsLabels=true
```
2021-11-08 13:32:10 +01:00
#### `addRoutersLabels`
2021-04-30 10:22:04 +02:00
_Optional, Default=false_
Enable metrics on entry points.
```yaml tab="File (YAML)"
metrics:
statsD:
addRoutersLabels: true
```
2022-02-03 15:16:12 +01:00
```toml tab="File (TOML)"
[metrics]
[metrics.statsD]
addRoutersLabels = true
```
2021-04-30 10:22:04 +02:00
```bash tab="CLI"
--metrics.statsd.addrouterslabels=true
```
2019-07-18 21:36:05 +02:00
#### `addServicesLabels`
_Optional, Default=true_
Enable metrics on services.
2019-07-22 09:58:04 +02:00
```yaml tab="File (YAML)"
2019-07-18 21:36:05 +02:00
metrics:
2019-09-30 14:56:05 +02:00
statsD:
2019-07-18 21:36:05 +02:00
addServicesLabels: true
```
2021-06-19 00:08:08 +02:00
```toml tab="File (TOML)"
[metrics]
[metrics.statsD]
addServicesLabels = true
```
2019-07-18 21:36:05 +02:00
```bash tab="CLI"
--metrics.statsd.addServicesLabels=true
```
#### `pushInterval`
_Optional, Default=10s_
The interval used by the exporter to push metrics to statsD.
2019-07-22 09:58:04 +02:00
```yaml tab="File (YAML)"
2019-07-18 21:36:05 +02:00
metrics:
2019-09-30 14:56:05 +02:00
statsD:
2019-07-18 21:36:05 +02:00
pushInterval: 10s
```
2021-06-19 00:08:08 +02:00
```toml tab="File (TOML)"
[metrics]
[metrics.statsD]
2022-02-03 15:16:12 +01:00
pushInterval = "10s"
2021-06-19 00:08:08 +02:00
```
2019-07-18 21:36:05 +02:00
```bash tab="CLI"
--metrics.statsd.pushInterval=10s
```
2019-11-12 18:18:04 +01:00
#### `prefix`
_Optional, Default="traefik"_
The prefix to use for metrics collection.
```yaml tab="File (YAML)"
metrics:
statsD:
prefix: traefik
```
2021-06-19 00:08:08 +02:00
```toml tab="File (TOML)"
[metrics]
[metrics.statsD]
prefix = "traefik"
```
2019-11-12 18:18:04 +01:00
```bash tab="CLI"
2022-02-03 15:16:12 +01:00
--metrics.statsd.prefix=traefik
2021-04-30 10:22:04 +02:00
```