ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/php/alerts/alerts.php
Revision: 1.7
Committed: Thu Mar 15 17:37:59 2001 UTC (23 years, 2 months ago) by pjm2
Branch: MAIN
Changes since 1.6: +28 -12 lines
Log Message:
Minor changes.

File Contents

# User Rev Content
1 pjm2 1.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 pjm2 1.2 function getValue($value, $alert) {
21     preg_match("/$value=([^\,\}]*)[\,\}]/", $alert, $matches);
22     return $matches[1];
23     }
24    
25 pjm2 1.1 function printAlert($machine, $alert) {
26 pjm2 1.5
27     include("alerts_config.inc.php");
28    
29 pjm2 1.2 $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 pjm2 1.4
39 pjm2 1.5 $alertColour = $alertLevelColours[$alertLevel];
40     $alertLevel = $alertLevelNames[$alertLevel];
41 pjm2 1.6 $initialAlertTime = strftime("%x %X", intval($initialAlertTime / 1000));
42 pjm2 1.5
43 pjm2 1.4 echo <<<EOT
44    
45 pjm2 1.6 <table border="0" cellspacing="5">
46 pjm2 1.4 <tr>
47     <td><b>$attributeName</b></td>
48 pjm2 1.5 <td>&nbsp;</td>
49 pjm2 1.6 <td><font color="$alertColour" size="2"><b>$alertLevel</b></font></td>
50     <td>&nbsp;</td>
51 pjm2 1.4 </tr>
52     <tr>
53 pjm2 1.6 <td><font size="2">Threshold:</font></td>
54 pjm2 1.5 <td>$thresholdValue</td>
55 pjm2 1.6 <td><font size="2">Initially raised:</font></td>
56 pjm2 1.4 <td>$initialAlertTime</td>
57     </tr>
58     <tr>
59 pjm2 1.6 <td><font size="2">Alert value:</font></td>
60 pjm2 1.5 <td><b>$value</b></td>
61     <td><!--Next alert time:--> </td>
62     <td><!--$timeTillNextAlert--> </td>
63 pjm2 1.4 </tr>
64     </table>
65    
66     EOT;
67    
68     printLine("");
69    
70 pjm2 1.1 }
71    
72 pjm2 1.4 function printReports($machine) {
73 pjm2 1.7 # 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     foreach($alertArray as $file_name) {
94     $input = file("$alertDirectory/$machine/$file_name");
95     $input = $input[0];
96     $alerts[] = $input;
97     }
98 pjm2 1.4
99 pjm2 1.7 foreach ($alerts as $alert) {
100     printAlert($machine, $alert);
101     }
102 pjm2 1.4 }
103    
104    
105 pjm2 1.1 ?>
106    
107     <? include($titleHTML); ?>
108    
109 pjm2 1.3 <? printLine("Display the latest alerts for a host"); ?>
110 pjm2 1.1
111     <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
112     <?
113    
114     $file_array = getdirArray($alertDirectory,'asort');
115     print "<select size=\"1\" name=\"machine\">";
116     if ($machine) { ?>
117     <option selected value="<? echo $machine ?>"><? echo $machine ?></option>
118     <option value="">----------------</option>
119     <? }
120     foreach($file_array as $file_name) {
121     #if (is_dir($file_name)) {
122     print "<option value=\"$file_name\">$file_name</option>";
123     #}
124     }
125     print "</select>";
126    
127     ?>
128     <input type="submit" name="submit" value="Display">
129     </form>
130    
131     <? if ($machine) {
132 pjm2 1.3
133     printLine("");
134 pjm2 1.1
135 pjm2 1.4 printReports($machine);
136 pjm2 1.1
137 pjm2 1.5 }
138     else {
139     printLine("");
140 pjm2 1.1 }
141    
142     ?>
143    
144     <? include($bottomHTML); ?>