Metrics
Configuring the Metrics Telemetry settings.
Authelia allows administrators to configure a Prometheus Metrics Exporter.
Configuration
This section is intended as an example configuration to help users with a rough contextual layout of this configuration section, it is not intended to explain the options.
The configuration shown may not be a valid configuration, and you should see the options section below and the navigation links to properly understand each option individually.
telemetry:
metrics:
enabled: false
address: "tcp://0.0.0.0:9959"
buffers:
read: 4096
write: 4096
timeouts:
read: 6s
write: 6s
idle: 30s
Options
This section describes the individual configuration options.
enabled
boolean
false
not required
Determines if the Prometheus HTTP Metrics Exporter is enabled.
address
address
tcp://0.0.0.0:9959
not required
Configures the listener address for the Prometheus HTTP Metrics Exporter. This configuration key uses the
Address format. The scheme must be tcp://
or empty.
buffers
Configures the server buffers. See the Server Buffers documentation for more information.
timeouts
Configures the server timeouts. See the Server Timeouts documentation for more information.