Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
50 | public function getAlarms() |
||
51 | { |
||
52 | return array( |
||
53 | array("ComparisonOperator" => "LessThanOrEqualToThreshold", |
||
54 | "Threshold" => 0, |
||
55 | "Name" => $this->name . " shutdown"), |
||
56 | array("ComparisonOperator" => "GreaterThanThreshold", |
||
57 | "Threshold" => $this->maxApacheProcess, |
||
58 | "Name" => $this->name . " max process") |
||
59 | ); |
||
60 | } |
||
61 | } |
||
62 |