generated from giantswarm/template-app
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: QuentinBisson <[email protected]>
- Loading branch information
1 parent
3bbfb6f
commit 9a05a3f
Showing
2 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
helm/prometheus-rules/templates/alerting-rules/keda.rules.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
apiVersion: monitoring.coreos.com/v1 | ||
kind: PrometheusRule | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
{{- include "labels.common" . | nindent 4 }} | ||
name: keda.rules | ||
namespace: {{ .Values.namespace }} | ||
spec: | ||
groups: | ||
- name: Keda | ||
rules: | ||
- alert: KedaDown | ||
annotations: | ||
description: 'Keda is down.' | ||
expr: count (up{container=~"keda-.*"} == 0) > 0 | ||
for: 10m | ||
labels: | ||
area: kaas | ||
cancel_if_apiserver_down: "true" | ||
cancel_if_cluster_status_creating: "true" | ||
cancel_if_cluster_status_deleting: "true" | ||
cancel_if_cluster_status_updating: "true" | ||
severity: page | ||
team: phoenix | ||
topic: autoscaling | ||
- alert: KedaScaledObjectErrors | ||
annotations: | ||
description: '{{`Errors detected in scaled object {{ $labels.scaledObject }} in namespace {{ $labels.namespace}}.`}}' | ||
expr: increase(keda_scaled_object_errors[10m])> 0 | ||
for: 15m | ||
labels: | ||
area: kaas | ||
cancel_if_apiserver_down: "true" | ||
cancel_if_cluster_status_creating: "true" | ||
cancel_if_cluster_status_deleting: "true" | ||
cancel_if_cluster_status_updating: "true" | ||
cancel_if_outside_working_hours: "true" | ||
severity: warning | ||
team: phoenix | ||
topic: autoscaling | ||
- alert: KedaWebhookScaledObjectValidationErrors | ||
annotations: | ||
description: '{{`Validation errors detected in webhook for scaled object {{ $labels.scaledObject }} in namespace {{ $labels.namespace}}.`}}' | ||
expr: increase(keda_webhook_scaled_object_validation_errors[10m]) > 0 | ||
for: 15m | ||
labels: | ||
area: kaas | ||
cancel_if_apiserver_down: "true" | ||
cancel_if_cluster_status_creating: "true" | ||
cancel_if_cluster_status_deleting: "true" | ||
cancel_if_cluster_status_updating: "true" | ||
cancel_if_outside_working_hours: "true" | ||
severity: warning | ||
team: phoenix | ||
topic: autoscaling | ||
- alert: KedaScalerErrors | ||
annotations: | ||
description: '{{`Errors detected in scaler {{ $labels.scaler }} for scaled object {{ $labels.scaledObject }} in namespace {{ $labels.namespace}}.`}}' | ||
expr: increase(keda_scaler_errors[10m]) > 0 | ||
for: 15m | ||
labels: | ||
area: kaas | ||
cancel_if_apiserver_down: "true" | ||
cancel_if_cluster_status_creating: "true" | ||
cancel_if_cluster_status_deleting: "true" | ||
cancel_if_cluster_status_updating: "true" | ||
cancel_if_outside_working_hours: "true" | ||
severity: warning | ||
team: phoenix | ||
topic: autoscaling |