Skip to content

Commit

Permalink
feat(plugins) Show alert in 15 minutes (#439)
Browse files Browse the repository at this point in the history
  • Loading branch information
gciezkowski-acc committed Nov 27, 2024
1 parent b903270 commit d91bd71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/manager/alerts/operator.alerts
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ groups:
expr: greenhouse_cluster_k8s_versions_total{version=~"v1\\.(1[0-9]|2[0-1])\\..*"} == 1
labels:
severity: warning
- alert: GreenhousePluginTooManyErrors
- alert: GreenhousePluginHasErrors
annotations:
summary: "Plugin has too mane errors"
summary: "Plugin has errors"
description: "Plugin {{ $labels.plugin }} in organization {{ $labels.organization }} has more then 10 errors"
expr: increase(greenhouse_plugin_reconcile_total{result="error"}[1h] > 10) by (plugin, organization)
expr: increase(greenhouse_plugin_reconcile_total{result="error"}[15m] > 0) by (plugin, organization)
labels:
severity: warning

0 comments on commit d91bd71

Please sign in to comment.