Metrics

Configuring the Metrics Telemetry settings.

Authelia allows administrators to configure a Prometheus Metrics Exporter.

Configuration

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.

See More