docs/content/configuration/telemetry/metrics.md
Authelia allows administrators to configure a Prometheus Metrics Exporter.
{{< config-alert-example >}}
telemetry:
metrics:
enabled: false
address: 'tcp://:9959/metrics'
buffers:
read: 4096
write: 4096
timeouts:
read: '6s'
write: '6s'
idle: '30s'
This section describes the individual configuration options.
{{< confkey type="boolean" default="false" required="no" >}}
Determines if the Prometheus HTTP Metrics Exporter is enabled.
{{< confkey type="string" syntax="address" default="tcp://:9959/metrics" required="no" >}}
Configures the listener address for the Prometheus Metrics Exporter HTTP Server. The address itself is a listener and
the scheme must either be the unix scheme or one of the tcp schemes.
{{< confkey type="structure" structure="server-buffers" required="no" >}}
Configures the server buffers.
{{< confkey type="structure" structure="server-timeouts" required="no" >}}
Configures the server timeouts.