# | Line 22 | Line 22 | function getValue($value, $alert) { | |
---|---|---|
22 | return $matches[1]; | |
23 | } | |
24 | ||
25 | < | function printAlert($machine, $alert) { |
25 | > | function printAlert($machine, $alert, $small="") { |
26 | > | |
27 | > | include("alerts_config.inc.php"); |
28 | > | |
29 | $alertLevel = getValue("alertLevel", $alert); | |
30 | $lastAlert = getValue("lastAlert", $alert); | |
31 | $thresholdLevel = getValue("thresholdLevel", $alert); | |
# | Line 33 | Line 36 | function printAlert($machine, $alert) { | |
36 | $timeTillNextAlert = getValue("timeTillNextAlert", $alert); | |
37 | $initialAlertTime = getValue("initialAlertTime", $alert); | |
38 | ||
39 | < | echo <<<EOT |
40 | < | |
41 | < | <table border="0" width="500"> |
42 | < | <tr> |
43 | < | <td><b>$attributeName</b></td> |
44 | < | </td> </td> |
45 | < | <tr> |
46 | < | <td>Alert level:</td> |
47 | < | <td><b>$alertLevelNames[$alertLevel]</b></td> |
48 | < | </tr> |
49 | < | <tr> |
50 | < | <td>Last alert time:</td> |
51 | < | <td>$lastAlert</td> |
52 | < | </tr> |
53 | < | <tr> |
54 | < | <td colspan="2"> |
55 | < | <font size="2"> |
56 | < | $source has exceeded the threshold of $thresholdValue |
57 | < | for $attributeName with a value of <b>$value</b>. |
39 | > | $alertColour = $alertLevelColours[$alertLevel]; |
40 | > | $alertLevel = $alertLevelNames[$alertLevel]; |
41 | > | $initialAlertTime = strftime("%x %X", intval($initialAlertTime / 1000)); |
42 | > | |
43 | > | if ($small == "true") { |
44 | > | echo "small"; |
45 | > | } |
46 | > | else { |
47 | > | echo <<<EOT |
48 | > | |
49 | > | <table border="0" cellspacing="5"> |
50 | > | <tr> |
51 | > | <td><b>$attributeName</b></td> |
52 | > | <td> </td> |
53 | > | <td><font color="$alertColour" size="2"><b>$alertLevel</b></font></td> |
54 | > | <td> </td> |
55 | > | </tr> |
56 | > | <tr> |
57 | > | <td><font size="2">Threshold:</font></td> |
58 | > | <td>$thresholdValue</td> |
59 | > | <td><font size="2">Initially raised:</font></td> |
60 | > | <td>$initialAlertTime</td> |
61 | > | </tr> |
62 | > | <tr> |
63 | > | <td><font size="2">Alert value:</font></td> |
64 | > | <td><b>$value</b></td> |
65 | > | <td><!--Next alert time:--> </td> |
66 | > | <td><!--$timeTillNextAlert--> </td> |
67 | > | </tr> |
68 | > | </table> |
69 | ||
56 | – | </font> |
57 | – | </td> |
58 | – | </tr> |
59 | – | <tr> |
60 | – | <td>Initial alert time:</td> |
61 | – | <td>$initialAlertTime</td> |
62 | – | </tr> |
63 | – | <tr> |
64 | – | <td>Time until next alert:</td> |
65 | – | <td>$timeTillNextAlert</td> |
66 | – | </tr> |
67 | – | </table> |
68 | – | |
70 | EOT; | |
71 | + | printLine(""); |
72 | + | } |
73 | ||
71 | – | printLine(""); |
72 | – | |
74 | } | |
75 | ||
76 | < | function printReports($machine) { |
77 | < | # Get a list of all files in the machine's directory. |
78 | < | include("alerts_config.inc.php"); |
79 | < | $alertArray = getdirArray("$alertDirectory/$machine", 'rsort'); |
76 | > | function printReports($machine, $small="") { |
77 | > | # Get a list of all files in the machine's directory. |
78 | > | include("alerts_config.inc.php"); |
79 | > | $alertArray = getdirArray("$alertDirectory/$machine", 'rsort'); |
80 | > | |
81 | > | if ($small == "true") { |
82 | > | |
83 | > | } |
84 | > | else { |
85 | > | echo <<<EOT |
86 | > | <p> </p> |
87 | > | <table border="0" cellpadding="3" cellspacing="2" bgcolor="#000066" width="100%"> |
88 | > | <tr> |
89 | > | <td> |
90 | > | <font color="white"> |
91 | > | <b> |
92 | > | Current alerts for $machine |
93 | > | </b> |
94 | > | <font size="2"> |
95 | > | <br>Sorted by time, latest first. |
96 | > | </font> |
97 | > | </font> |
98 | > | </td> |
99 | > | </tr> |
100 | > | <tr> |
101 | > | <td bgcolor="white"> |
102 | > | |
103 | > | EOT; |
104 | > | |
105 | > | printLine(""); |
106 | > | } |
107 | > | |
108 | > | if ($alertArray != FALSE) { |
109 | > | |
110 | > | foreach($alertArray as $file_name) { |
111 | > | $input = file("$alertDirectory/$machine/$file_name"); |
112 | > | $input = $input[0]; |
113 | > | $alerts[] = $input; |
114 | > | } |
115 | ||
116 | < | foreach($alertArray as $file_name) { |
117 | < | $input = file("$alertDirectory/$machine/$file_name"); |
118 | < | $input = $input[0]; |
119 | < | $alerts[] = $input; |
120 | < | } |
121 | < | |
122 | < | foreach ($alerts as $alert) { |
123 | < | printAlert($machine, $alert); |
124 | < | } |
116 | > | foreach ($alerts as $alert) { |
117 | > | printAlert($machine, $alert, $small); |
118 | > | } |
119 | > | } |
120 | > | else { |
121 | > | echo "There are currently no alerts held about <b>$machine</b>"; |
122 | > | printLine(""); |
123 | > | } |
124 | > | |
125 | > | if ($small == "true") { |
126 | > | |
127 | > | } |
128 | > | else { |
129 | > | echo <<<EOT |
130 | > | </td> |
131 | > | </tr> |
132 | > | </table> |
133 | > | EOT; |
134 | > | } |
135 | } | |
136 | ||
137 | ||
# | Line 104 | Line 150 | function printReports($machine) { | |
150 | <option selected value="<? echo $machine ?>"><? echo $machine ?></option> | |
151 | <option value="">----------------</option> | |
152 | <? } | |
153 | < | foreach($file_array as $file_name) { |
153 | > | foreach ($file_array as $file_name) { |
154 | #if (is_dir($file_name)) { | |
155 | print "<option value=\"$file_name\">$file_name</option>"; | |
156 | #} | |
# | Line 112 | Line 158 | function printReports($machine) { | |
158 | print "</select>"; | |
159 | ||
160 | ?> | |
161 | + | <input type="hidden" name="small" value="<?=$small?>"> |
162 | <input type="submit" name="submit" value="Display"> | |
163 | </form> | |
164 | ||
# | Line 119 | Line 166 | function printReports($machine) { | |
166 | ||
167 | printLine(""); | |
168 | ||
169 | < | printReports($machine); |
169 | > | if ($machine == "ALL") { |
170 | > | $machine_array = getdirArray($alertDirectory, 'asort'); |
171 | > | if ($machine_array != FALSE) { |
172 | > | foreach ($machine_array as $machine) { |
173 | > | printReports($machine, $small); |
174 | > | } |
175 | > | } |
176 | > | } |
177 | > | else { |
178 | > | printReports($machine, $small); |
179 | > | } |
180 | ||
181 | + | } |
182 | + | else { |
183 | + | printLine(""); |
184 | } | |
185 | ||
186 | ?> |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |