blob: ff7501ece4da1c19420865bfc77650716358b406 (
plain)
1
2
3
4
5
6
7
8
|
//
// Refine the preceding rule to apply only between the hours of 9am and 5pm,
// and to require that just 3 of the four samples exceed the threshold
//
$hour >= 9 && $hour <= 17 && some_inst 75 %_sample
disk.dev.total @0..3 > 40 count/sec
-> print "disk busy for 20 sec" &
shell 5 min "dkvis";
|