Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(234)

Unified Diff: alertserver/alerts.cfg

Issue 1692693006: Add alert for buildbot scheduler (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: alertserver/alerts.cfg
diff --git a/alertserver/alerts.cfg b/alertserver/alerts.cfg
index 148f10fbd1d1590357766bbfd39a7112f0bab1d1..355243b744874b334d3081350a206993dddcfb3b 100644
--- a/alertserver/alerts.cfg
+++ b/alertserver/alerts.cfg
@@ -772,6 +772,21 @@ auto-dismiss = true
nag = "1h"
#
+# Buildbot Scheduler
+#
+
+[[rule]]
+name = "Buildbot Scheduler Failing"
+message = "The buildbot scheduler has failed to schedule builds for the last 10 minutes."
+database = "skmetrics"
+query = "select mean(value) from liveness where app='buildbot_scheduler' and host='skia-build-scheduler' and \"name\"='time-since-last-successful-scheduling' and time > now() - 5m group by app, host"
+category = "infra"
+condition = "x > 10 * 60 * 1000 * 1000 * 1000"
+actions = ["Email(infra-alerts@skia.org)"]
+auto-dismiss = true
+nag = "1h"
+
+#
# CTFE
#
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698