v-m: Scrape metrics from Authelia

Authelia exposes Prometheus metrics from a different server socket,
which is not enabled by default.
This commit is contained in:
2024-02-27 06:41:52 -06:00
parent e0b2b3f5ae
commit de72776e73
3 changed files with 29 additions and 0 deletions

View File

@@ -66,6 +66,13 @@ spec:
value: /run/authelia/secrets/oidc.hmac_secret
- name: AUTHELIA_IDENTITY_PROVIDERS_OIDC_ISSUER_PRIVATE_KEY_FILE
value: /run/authelia/secrets/oidc.issuer_private_key
ports:
- containerPort: 9091
name: http
protocol: TCP
- containerPort: 9959
name: metrics
protocol: TCP
startupProbe:
httpGet:
port: 9091

View File

@@ -157,3 +157,7 @@ storage:
username: authelia.authelia
tls:
skip_verify: false
telemetry:
metrics:
enabled: true