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.15
Committed: Wed Mar 21 12:13:15 2001 UTC (23 years, 2 months ago) by pjm2
Branch: MAIN
Changes since 1.14: +9 -2 lines
Log Message:
Each machine name appears under a smaller heading when viewed in small
mode

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.14 function printAlert($machine, $alert, $small="") {
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.14 if ($small == "true") {
44     echo "small";
45 pjm2 1.13 }
46     else {
47     echo <<<EOT
48    
49     <table border="0" cellspacing="5">
50     <tr>
51     <td><b>$attributeName</b></td>
52     <td>&nbsp;</td>
53     <td><font color="$alertColour" size="2"><b>$alertLevel</b></font></td>
54     <td>&nbsp;</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    
70 pjm2 1.4 EOT;
71 pjm2 1.13 printLine("");
72     }
73 pjm2 1.4
74 pjm2 1.1 }
75    
76 pjm2 1.14 function printReports($machine, $small="") {
77 pjm2 1.7 # 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 pjm2 1.14 if ($small == "true") {
82 pjm2 1.15 echo <<<EOT
83     <table border="0" cellpadding="2" cellspacing="2" bgcolor="#ffffff" width="100%">
84     <tr>
85     <td bgcolor="#000066">
86     <font color="white"><b>$machine</b></font>
87     </td>
88     </tr>
89     EOT;
90 pjm2 1.14 }
91     else {
92     echo <<<EOT
93     <p>&nbsp;</p>
94     <table border="0" cellpadding="3" cellspacing="2" bgcolor="#000066" width="100%">
95     <tr>
96     <td>
97     <font color="white">
98     <b>
99     Current alerts for $machine
100     </b>
101     <font size="2">
102     <br>Sorted by time, latest first.
103     </font>
104     </font>
105     </td>
106     </tr>
107     <tr>
108     <td bgcolor="white">
109 pjm2 1.7
110     EOT;
111    
112 pjm2 1.14 printLine("");
113     }
114 pjm2 1.7
115 pjm2 1.8 if ($alertArray != FALSE) {
116    
117     foreach($alertArray as $file_name) {
118     $input = file("$alertDirectory/$machine/$file_name");
119     $input = $input[0];
120     $alerts[] = $input;
121     }
122    
123     foreach ($alerts as $alert) {
124 pjm2 1.14 printAlert($machine, $alert, $small);
125 pjm2 1.8 }
126 pjm2 1.7 }
127 pjm2 1.8 else {
128     echo "There are currently no alerts held about <b>$machine</b>";
129 pjm2 1.11 printLine("");
130 pjm2 1.7 }
131 pjm2 1.10
132 pjm2 1.14 if ($small == "true") {
133 pjm2 1.15 echo "</table>";
134 pjm2 1.14 }
135     else {
136     echo <<<EOT
137     </td>
138     </tr>
139     </table>
140 pjm2 1.10 EOT;
141 pjm2 1.14 }
142 pjm2 1.4 }
143    
144    
145 pjm2 1.1 ?>
146    
147     <? include($titleHTML); ?>
148    
149 pjm2 1.3 <? printLine("Display the latest alerts for a host"); ?>
150 pjm2 1.1
151     <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
152     <?
153    
154     $file_array = getdirArray($alertDirectory,'asort');
155     print "<select size=\"1\" name=\"machine\">";
156     if ($machine) { ?>
157     <option selected value="<? echo $machine ?>"><? echo $machine ?></option>
158     <option value="">----------------</option>
159     <? }
160 pjm2 1.9 foreach ($file_array as $file_name) {
161 pjm2 1.1 #if (is_dir($file_name)) {
162     print "<option value=\"$file_name\">$file_name</option>";
163     #}
164     }
165     print "</select>";
166    
167     ?>
168 pjm2 1.14 <input type="hidden" name="small" value="<?=$small?>">
169 pjm2 1.1 <input type="submit" name="submit" value="Display">
170     </form>
171    
172     <? if ($machine) {
173 pjm2 1.3
174     printLine("");
175 pjm2 1.1
176 pjm2 1.9 if ($machine == "ALL") {
177     $machine_array = getdirArray($alertDirectory, 'asort');
178 pjm2 1.12 if ($machine_array != FALSE) {
179     foreach ($machine_array as $machine) {
180 pjm2 1.14 printReports($machine, $small);
181 pjm2 1.12 }
182 pjm2 1.9 }
183     }
184     else {
185 pjm2 1.14 printReports($machine, $small);
186 pjm2 1.9 }
187 pjm2 1.1
188 pjm2 1.5 }
189     else {
190     printLine("");
191 pjm2 1.1 }
192    
193     ?>
194    
195     <? include($bottomHTML); ?>