Metrics

Authelia allows administrators to configure a Prometheus Metrics Exporter.

Configuration

configuration.yml
telemetry:
  metrics:
    enabled: false
    address: 'tcp://: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

string address tcp://:9959/ not required

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.

buffers

structure server-buffers not required

Configures the server buffers.

timeouts

structure server-timeouts not required

Configures the server timeouts.

See More