mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 00:47:18 +08:00
Publish
This commit is contained in:
parent
88e2c19017
commit
1db2c6f196
1 changed files with 67 additions and 0 deletions
67
dist/rules/keycloak/aerogear-keycloak-metrics-spi.yml
vendored
Normal file
67
dist/rules/keycloak/aerogear-keycloak-metrics-spi.yml
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
groups:
|
||||
|
||||
- name: AerogearKeycloakMetricsSpi
|
||||
|
||||
|
||||
rules:
|
||||
|
||||
# Threshold of 5% is a rough default. Adjust based on your user base and expected error rates.
|
||||
# A spike in failed logins may indicate a brute-force attack or misconfigured client.
|
||||
- alert: KeycloakHighLoginFailureRate
|
||||
expr: '(sum by (realm) (rate(keycloak_failed_login_attempts_total[5m])) / (sum by (realm) (rate(keycloak_logins_total[5m])) + sum by (realm) (rate(keycloak_failed_login_attempts_total[5m])))) * 100 > 5 and (sum by (realm) (rate(keycloak_logins_total[5m])) + sum by (realm) (rate(keycloak_failed_login_attempts_total[5m]))) > 0'
|
||||
for: 5m
|
||||
labels:
|
||||
severity: warning
|
||||
annotations:
|
||||
summary: Keycloak high login failure rate (instance {{ $labels.instance }})
|
||||
description: "More than 5% of login attempts are failing in realm {{ $labels.realm }} (current value: {{ $value | printf \"%.1f\" }}%).\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
||||
|
||||
# Only fires when login attempts exist but none succeed — may indicate an authentication outage.
|
||||
- alert: KeycloakNoSuccessfulLogins
|
||||
expr: 'sum by (realm) (rate(keycloak_logins_total[15m])) == 0 and (sum by (realm) (rate(keycloak_logins_total[15m])) + sum by (realm) (rate(keycloak_failed_login_attempts_total[15m]))) > 0'
|
||||
for: 5m
|
||||
labels:
|
||||
severity: critical
|
||||
annotations:
|
||||
summary: Keycloak no successful logins (instance {{ $labels.instance }})
|
||||
description: "No successful logins in realm {{ $labels.realm }} for the last 15 minutes.\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
||||
|
||||
# Threshold of 10% is a rough default. High refresh token errors may indicate expired sessions or token store issues.
|
||||
- alert: KeycloakHighTokenRefreshErrorRate
|
||||
expr: '(sum by (realm) (rate(keycloak_refresh_tokens_errors_total[5m])) / sum by (realm) (rate(keycloak_refresh_tokens_total[5m]))) * 100 > 10 and sum by (realm) (rate(keycloak_refresh_tokens_total[5m])) > 0'
|
||||
for: 5m
|
||||
labels:
|
||||
severity: warning
|
||||
annotations:
|
||||
summary: Keycloak high token refresh error rate (instance {{ $labels.instance }})
|
||||
description: "More than 10% of token refresh attempts are failing in realm {{ $labels.realm }} (current value: {{ $value | printf \"%.1f\" }}%).\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
||||
|
||||
# Threshold of 10% is a rough default. Code-to-token failures may indicate misconfigured OAuth clients or replay attacks.
|
||||
- alert: KeycloakHighCode-to-tokenExchangeErrorRate
|
||||
expr: '(sum by (realm) (rate(keycloak_code_to_tokens_errors_total[5m])) / sum by (realm) (rate(keycloak_code_to_tokens_total[5m]))) * 100 > 10 and sum by (realm) (rate(keycloak_code_to_tokens_total[5m])) > 0'
|
||||
for: 5m
|
||||
labels:
|
||||
severity: warning
|
||||
annotations:
|
||||
summary: Keycloak high code-to-token exchange error rate (instance {{ $labels.instance }})
|
||||
description: "More than 10% of code-to-token exchanges are failing in realm {{ $labels.realm }} (current value: {{ $value | printf \"%.1f\" }}%).\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
||||
|
||||
# Threshold of 10% is a rough default.
|
||||
- alert: KeycloakHighRegistrationFailureRate
|
||||
expr: '(sum by (realm) (rate(keycloak_registrations_errors_total[5m])) / sum by (realm) (rate(keycloak_registrations_total[5m]))) * 100 > 10 and sum by (realm) (rate(keycloak_registrations_total[5m])) > 0'
|
||||
for: 5m
|
||||
labels:
|
||||
severity: warning
|
||||
annotations:
|
||||
summary: Keycloak high registration failure rate (instance {{ $labels.instance }})
|
||||
description: "More than 10% of registration attempts are failing in realm {{ $labels.realm }} (current value: {{ $value | printf \"%.1f\" }}%).\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
||||
|
||||
# Threshold of 2 seconds is a rough default. Adjust based on your performance requirements.
|
||||
- alert: KeycloakSlowRequestResponseTime
|
||||
expr: 'sum by (method) (rate(keycloak_request_duration_sum[5m])) / sum by (method) (rate(keycloak_request_duration_count[5m])) > 2 and sum by (method) (rate(keycloak_request_duration_count[5m])) > 0'
|
||||
for: 5m
|
||||
labels:
|
||||
severity: warning
|
||||
annotations:
|
||||
summary: Keycloak slow request response time (instance {{ $labels.instance }})
|
||||
description: "Keycloak {{ $labels.method }} requests are taking more than 2 seconds on average.\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
||||
Loading…
Reference in a new issue