| 1 | <?php | 
 
 
 
 
 | 2 |  | 
 
 
 
 
 | 3 | # Navigation for the i-scream alerts. | 
 
 
 
 
 | 4 | # pjm2@ukc.ac.uk | 
 
 
 
 
 | 5 | # | 
 
 
 
 
 | 6 | # CONFIGURABLE CONSTANTS: - | 
 
 
 
 
 | 7 |  | 
 
 
 
 
 | 8 | include("alerts_config.inc.php"); | 
 
 
 
 
 | 9 |  | 
 
 
 
 
 | 10 | # | 
 
 
 
 
 | 11 | # END CONFIGURATION | 
 
 
 
 
 | 12 |  | 
 
 
 
 
 | 13 | include("iutils.inc.php"); | 
 
 
 
 
 | 14 |  | 
 
 
 
 
 | 15 | function printLine($title) { | 
 
 
 
 
 | 16 | echo "<hr style=\"color:#9999ff;\">"; | 
 
 
 
 
 | 17 | echo "<b>$title</b>"; | 
 
 
 
 
 | 18 | } | 
 
 
 
 
 | 19 |  | 
 
 
 
 
 | 20 | function getValue($value, $alert) { | 
 
 
 
 
 | 21 | preg_match("/$value=([^\,\}]*)[\,\}]/", $alert, $matches); | 
 
 
 
 
 | 22 | return $matches[1]; | 
 
 
 
 
 | 23 | } | 
 
 
 
 
 | 24 |  | 
 
 
 
 
 | 25 | function printAlert($machine, $alert) { | 
 
 
 
 
 | 26 |  | 
 
 
 
 
 | 27 | include("alerts_config.inc.php"); | 
 
 
 
 
 | 28 |  | 
 
 
 
 
 | 29 | $alertLevel = getValue("alertLevel", $alert); | 
 
 
 
 
 | 30 | $lastAlert = getValue("lastAlert", $alert); | 
 
 
 
 
 | 31 | $thresholdLevel = getValue("thresholdLevel", $alert); | 
 
 
 
 
 | 32 | $source = getValue("source", $alert); | 
 
 
 
 
 | 33 | $thresholdValue = getValue("thresholdValue", $alert); | 
 
 
 
 
 | 34 | $value = getValue("value", $alert); | 
 
 
 
 
 | 35 | $attributeName = getValue("attributeName", $alert); | 
 
 
 
 
 | 36 | $timeTillNextAlert = getValue("timeTillNextAlert", $alert); | 
 
 
 
 
 | 37 | $initialAlertTime = getValue("initialAlertTime", $alert); | 
 
 
 
 
 | 38 |  | 
 
 
 
 
 | 39 | $alertColour = $alertLevelColours[$alertLevel]; | 
 
 
 
 
 | 40 | $alertLevel = $alertLevelNames[$alertLevel]; | 
 
 
 
 
 | 41 | $initialAlertTime = strftime("%x %X", intval($initialAlertTime / 1000)); | 
 
 
 
 
 | 42 |  | 
 
 
 
 
 | 43 | echo <<<EOT | 
 
 
 
 
 | 44 |  | 
 
 
 
 
 | 45 | <table border="0" cellspacing="5"> | 
 
 
 
 
 | 46 | <tr> | 
 
 
 
 
 | 47 | <td><b>$attributeName</b></td> | 
 
 
 
 
 | 48 | <td> </td> | 
 
 
 
 
 | 49 | <td><font color="$alertColour" size="2"><b>$alertLevel</b></font></td> | 
 
 
 
 
 | 50 | <td> </td> | 
 
 
 
 
 | 51 | </tr> | 
 
 
 
 
 | 52 | <tr> | 
 
 
 
 
 | 53 | <td><font size="2">Threshold:</font></td> | 
 
 
 
 
 | 54 | <td>$thresholdValue</td> | 
 
 
 
 
 | 55 | <td><font size="2">Initially raised:</font></td> | 
 
 
 
 
 | 56 | <td>$initialAlertTime</td> | 
 
 
 
 
 | 57 | </tr> | 
 
 
 
 
 | 58 | <tr> | 
 
 
 
 
 | 59 | <td><font size="2">Alert value:</font></td> | 
 
 
 
 
 | 60 | <td><b>$value</b></td> | 
 
 
 
 
 | 61 | <td><!--Next alert time:--> </td> | 
 
 
 
 
 | 62 | <td><!--$timeTillNextAlert--> </td> | 
 
 
 
 
 | 63 | </tr> | 
 
 
 
 
 | 64 | </table> | 
 
 
 
 
 | 65 |  | 
 
 
 
 
 | 66 | EOT; | 
 
 
 
 
 | 67 |  | 
 
 
 
 
 | 68 | printLine(""); | 
 
 
 
 
 | 69 |  | 
 
 
 
 
 | 70 | } | 
 
 
 
 
 | 71 |  | 
 
 
 
 
 | 72 | function printReports($machine) { | 
 
 
 
 
 | 73 | # Get a list of all files in the machine's directory. | 
 
 
 
 
 | 74 | include("alerts_config.inc.php"); | 
 
 
 
 
 | 75 | $alertArray = getdirArray("$alertDirectory/$machine", 'rsort'); | 
 
 
 
 
 | 76 |  | 
 
 
 
 
 | 77 | echo <<<EOT | 
 
 
 
 
 | 78 | <center> | 
 
 
 
 
 | 79 | <font size="4"> | 
 
 
 
 
 | 80 | <b> | 
 
 
 
 
 | 81 | Current alerts for $machine | 
 
 
 
 
 | 82 | </b> | 
 
 
 
 
 | 83 | </font> | 
 
 
 
 
 | 84 | <font size="2"> | 
 
 
 
 
 | 85 | <br>Sorted by time, latest first. | 
 
 
 
 
 | 86 | </font> | 
 
 
 
 
 | 87 | </center> | 
 
 
 
 
 | 88 |  | 
 
 
 
 
 | 89 | EOT; | 
 
 
 
 
 | 90 |  | 
 
 
 
 
 | 91 | printLine(""); | 
 
 
 
 
 | 92 |  | 
 
 
 
 
 | 93 | if ($alertArray != FALSE) { | 
 
 
 
 
 | 94 |  | 
 
 
 
 
 | 95 | foreach($alertArray as $file_name) { | 
 
 
 
 
 | 96 | $input = file("$alertDirectory/$machine/$file_name"); | 
 
 
 
 
 | 97 | $input = $input[0]; | 
 
 
 
 
 | 98 | $alerts[] = $input; | 
 
 
 
 
 | 99 | } | 
 
 
 
 
 | 100 |  | 
 
 
 
 
 | 101 | foreach ($alerts as $alert) { | 
 
 
 
 
 | 102 | printAlert($machine, $alert); | 
 
 
 
 
 | 103 | } | 
 
 
 
 
 | 104 | } | 
 
 
 
 
 | 105 | else { | 
 
 
 
 
 | 106 | echo "There are currently no alerts held about <b>$machine</b>"; | 
 
 
 
 
 | 107 | } | 
 
 
 
 
 | 108 | } | 
 
 
 
 
 | 109 |  | 
 
 
 
 
 | 110 |  | 
 
 
 
 
 | 111 | ?> | 
 
 
 
 
 | 112 |  | 
 
 
 
 
 | 113 | <? include($titleHTML); ?> | 
 
 
 
 
 | 114 |  | 
 
 
 
 
 | 115 | <? printLine("Display the latest alerts for a host"); ?> | 
 
 
 
 
 | 116 |  | 
 
 
 
 
 | 117 | <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>"> | 
 
 
 
 
 | 118 | <? | 
 
 
 
 
 | 119 |  | 
 
 
 
 
 | 120 | $file_array = getdirArray($alertDirectory,'asort'); | 
 
 
 
 
 | 121 | print "<select size=\"1\" name=\"machine\">"; | 
 
 
 
 
 | 122 | if ($machine) { ?> | 
 
 
 
 
 | 123 | <option selected value="<? echo $machine ?>"><? echo $machine ?></option> | 
 
 
 
 
 | 124 | <option value="">----------------</option> | 
 
 
 
 
 | 125 | <? } | 
 
 
 
 
 | 126 | foreach ($file_array as $file_name) { | 
 
 
 
 
 | 127 | #if (is_dir($file_name)) { | 
 
 
 
 
 | 128 | print "<option value=\"$file_name\">$file_name</option>"; | 
 
 
 
 
 | 129 | #} | 
 
 
 
 
 | 130 | } | 
 
 
 
 
 | 131 | print "</select>"; | 
 
 
 
 
 | 132 |  | 
 
 
 
 
 | 133 | ?> | 
 
 
 
 
 | 134 | <input type="submit" name="submit" value="Display"> | 
 
 
 
 
 | 135 | </form> | 
 
 
 
 
 | 136 |  | 
 
 
 
 
 | 137 | <? if ($machine) { | 
 
 
 
 
 | 138 |  | 
 
 
 
 
 | 139 | printLine(""); | 
 
 
 
 
 | 140 |  | 
 
 
 
 
 | 141 | if ($machine == "ALL") { | 
 
 
 
 
 | 142 | $machine_array = getdirArray($alertDirectory, 'asort'); | 
 
 
 
 
 | 143 | foreach ($machine_array as $machine) { | 
 
 
 
 
 | 144 | printReports($machine); | 
 
 
 
 
 | 145 | } | 
 
 
 
 
 | 146 | } | 
 
 
 
 
 | 147 | else { | 
 
 
 
 
 | 148 | printReports($machine); | 
 
 
 
 
 | 149 | } | 
 
 
 
 
 | 150 |  | 
 
 
 
 
 | 151 | } | 
 
 
 
 
 | 152 | else { | 
 
 
 
 
 | 153 | printLine(""); | 
 
 
 
 
 | 154 | } | 
 
 
 
 
 | 155 |  | 
 
 
 
 
 | 156 | ?> | 
 
 
 
 
 | 157 |  | 
 
 
 
 
 | 158 | <? include($bottomHTML); ?> |