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

Side by Side Diff: alertserver/alerts.cfg

Issue 1682363003: Migrate fuzzer to use shiny new metrics2 package (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Rename metrics 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 unified diff | Download patch
« no previous file with comments | « no previous file | fuzzer/go/aggregator/aggregator.go » ('j') | fuzzer/go/aggregator/aggregator.go » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file defines alerts to be triggered by the server. 1 # This file defines alerts to be triggered by the server.
2 2
3 # 3 #
4 # AlertServer should tolerate no errors. 4 # AlertServer should tolerate no errors.
5 5
6 6
7 [[rule]] 7 [[rule]]
8 name = "AlertServer Errors" 8 name = "AlertServer Errors"
9 message = "The Error rate for the alertserver is too high, please check the logs ." 9 message = "The Error rate for the alertserver is too high, please check the logs ."
10 database = "graphite" 10 database = "graphite"
(...skipping 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 [[rule]] 1256 [[rule]]
1257 name = "datahopper_internal Google3-Autoroller up-to-date" 1257 name = "datahopper_internal Google3-Autoroller up-to-date"
1258 message = "Commit has not been picked up by Google3-Autoroller for over two hour s." 1258 message = "Commit has not been picked up by Google3-Autoroller for over two hour s."
1259 database = "graphite" 1259 database = "graphite"
1260 query = "select mean(value) from /^ingest-build-webhook.oldest-untested-commit-a ge.value$/ where app='internal' AND host='skia-internal' AND codename='Google3-A utoroller' AND time > now() - 10m" 1260 query = "select mean(value) from /^ingest-build-webhook.oldest-untested-commit-a ge.value$/ where app='internal' AND host='skia-internal' AND codename='Google3-A utoroller' AND time > now() - 10m"
1261 category = "infra" 1261 category = "infra"
1262 condition = "x >= 7200" 1262 condition = "x >= 7200"
1263 actions = ["Email(infra-alerts@skia.org)"] 1263 actions = ["Email(infra-alerts@skia.org)"]
1264 auto-dismiss = true 1264 auto-dismiss = true
1265 nag = "1h" 1265 nag = "1h"
1266
1267 #
1268 # Fuzzer
1269 #
1270
1271 [[rule]]
1272 name = "fuzzer upload binary fuzz"
1273 message = "Binary upload queue has been very full."
1274 database = "graphite"
1275 query = "select mean(value) from /^binary_upload_queue_size.value$/ where app=' fuzzer-be' AND host='skia-fuzzer' AND time > now() - 10m"
1276 category = "infra"
1277 condition = "x >= 90"
1278 actions = ["Email(infra-alerts@skia.org)"]
1279 auto-dismiss = true
1280 nag = "1h"
1281
1282 [[rule]]
1283 name = "fuzzer analysis binary fuzz"
1284 message = "Binary analysis queue has been very full."
1285 database = "graphite"
1286 query = "select mean(value) from /^binary_analysis_queue_size.value$/ where app ='fuzzer-be' AND host='skia-fuzzer' AND time > now() - 10m"
1287 category = "infra"
1288 condition = "x >= 9000"
1289 actions = ["Email(infra-alerts@skia.org)"]
1290 auto-dismiss = true
1291 nag = "1h"
OLDNEW
« no previous file with comments | « no previous file | fuzzer/go/aggregator/aggregator.go » ('j') | fuzzer/go/aggregator/aggregator.go » ('J')

Powered by Google App Engine
This is Rietveld 408576698