2019-07-18 19:36:05 +00:00
|
|
|
# Metrics
|
|
|
|
Metrics system
|
|
|
|
{: .subtitle }
|
|
|
|
|
|
|
|
Traefik supports 4 metrics backends:
|
|
|
|
|
2019-09-02 10:18:04 +00:00
|
|
|
- [Datadog](./datadog.md)
|
2019-07-18 19:36:05 +00:00
|
|
|
- [InfluxDB](./influxdb.md)
|
|
|
|
- [Prometheus](./prometheus.md)
|
|
|
|
- [StatsD](./statsd.md)
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
To enable metrics:
|
|
|
|
|
|
|
|
```toml tab="File (TOML)"
|
|
|
|
[metrics]
|
|
|
|
```
|
|
|
|
|
2019-07-22 07:58:04 +00:00
|
|
|
```yaml tab="File (YAML)"
|
2019-07-18 19:36:05 +00:00
|
|
|
metrics: {}
|
|
|
|
```
|
|
|
|
|
|
|
|
```bash tab="CLI"
|
2019-07-22 07:58:04 +00:00
|
|
|
--metrics=true
|
2019-07-18 19:36:05 +00:00
|
|
|
```
|