2022-06-15 07:51:47 +00:00
|
|
|
---
|
|
|
|
title: "Metrics"
|
|
|
|
description: "Configuring the Metrics Telemetry settings"
|
|
|
|
lead: "Configuring the Metrics Telemetry settings."
|
2022-06-28 05:27:14 +00:00
|
|
|
date: 2022-06-15T17:51:47+10:00
|
2022-06-15 07:51:47 +00:00
|
|
|
draft: false
|
|
|
|
images: []
|
|
|
|
menu:
|
|
|
|
configuration:
|
|
|
|
parent: "telemetry"
|
|
|
|
weight: 108200
|
|
|
|
toc: true
|
|
|
|
---
|
|
|
|
|
|
|
|
*Authelia* allows administrators to configure a [Prometheus] Metrics Exporter.
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
telemetry:
|
|
|
|
metrics:
|
|
|
|
enabled: false
|
2022-07-05 04:43:12 +00:00
|
|
|
address: "tcp://0.0.0.0:9959"
|
2022-08-08 21:50:12 +00:00
|
|
|
buffers:
|
|
|
|
read: 4096
|
|
|
|
write: 4096
|
|
|
|
timeouts:
|
2022-10-07 02:52:01 +00:00
|
|
|
read: 6s
|
|
|
|
write: 6s
|
2022-09-01 02:31:59 +00:00
|
|
|
idle: 30s
|
2022-06-15 07:51:47 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Options
|
|
|
|
|
|
|
|
### enabled
|
|
|
|
|
|
|
|
{{< confkey type="boolean" default="false" required="no" >}}
|
|
|
|
|
|
|
|
Determines if the [Prometheus] HTTP Metrics Exporter is enabled.
|
|
|
|
|
|
|
|
### address
|
|
|
|
|
2022-07-05 04:43:12 +00:00
|
|
|
{{< confkey type="address" default="tcp://0.0.0.0:9959" required="no" >}}
|
2022-06-15 07:51:47 +00:00
|
|
|
|
2022-07-05 04:43:12 +00:00
|
|
|
Configures the listener address for the [Prometheus] HTTP Metrics Exporter. This configuration key uses the
|
|
|
|
[Address](../prologue/common.md#address) format. The scheme must be `tcp://` or empty.
|
2022-06-15 07:51:47 +00:00
|
|
|
|
2022-08-08 21:50:12 +00:00
|
|
|
### buffers
|
|
|
|
|
|
|
|
Configures the server buffers. See the [Server Buffers](../prologue/common.md#server-buffers) documentation for more
|
|
|
|
information.
|
|
|
|
|
|
|
|
### timeouts
|
|
|
|
|
|
|
|
Configures the server timeouts. See the [Server Timeouts](../prologue/common.md#server-timeouts) documentation for more
|
|
|
|
information.
|
|
|
|
|
2022-06-15 07:51:47 +00:00
|
|
|
## See More
|
|
|
|
|
|
|
|
- [Telemetry Reference Documentation](../../reference/guides/metrics.md)
|
|
|
|
|
|
|
|
[Prometheus]: https://prometheus.io/
|