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.14
Committed: Wed Mar 21 12:07:59 2001 UTC (23 years, 8 months ago) by pjm2
Branch: MAIN
Changes since 1.13: +40 -29 lines
Log Message:
Different table arrangements are shown on individual and "all" reports if
&small=true is in the query string

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    
83     }
84     else {
85     echo <<<EOT
86     <p>&nbsp;</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 pjm2 1.7
103     EOT;
104    
105 pjm2 1.14 printLine("");
106     }
107 pjm2 1.7
108 pjm2 1.8 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 ($alerts as $alert) {
117 pjm2 1.14 printAlert($machine, $alert, $small);
118 pjm2 1.8 }
119 pjm2 1.7 }
120 pjm2 1.8 else {
121     echo "There are currently no alerts held about <b>$machine</b>";
122 pjm2 1.11 printLine("");
123 pjm2 1.7 }
124 pjm2 1.10
125 pjm2 1.14 if ($small == "true") {
126    
127     }
128     else {
129     echo <<<EOT
130     </td>
131     </tr>
132     </table>
133 pjm2 1.10 EOT;
134 pjm2 1.14 }
135 pjm2 1.4 }
136    
137    
138 pjm2 1.1 ?>
139    
140     <? include($titleHTML); ?>
141    
142 pjm2 1.3 <? printLine("Display the latest alerts for a host"); ?>
143 pjm2 1.1
144     <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
145     <?
146    
147     $file_array = getdirArray($alertDirectory,'asort');
148     print "<select size=\"1\" name=\"machine\">";
149     if ($machine) { ?>
150     <option selected value="<? echo $machine ?>"><? echo $machine ?></option>
151     <option value="">----------------</option>
152     <? }
153 pjm2 1.9 foreach ($file_array as $file_name) {
154 pjm2 1.1 #if (is_dir($file_name)) {
155     print "<option value=\"$file_name\">$file_name</option>";
156     #}
157     }
158     print "</select>";
159    
160     ?>
161 pjm2 1.14 <input type="hidden" name="small" value="<?=$small?>">
162 pjm2 1.1 <input type="submit" name="submit" value="Display">
163     </form>
164    
165     <? if ($machine) {
166 pjm2 1.3
167     printLine("");
168 pjm2 1.1
169 pjm2 1.9 if ($machine == "ALL") {
170     $machine_array = getdirArray($alertDirectory, 'asort');
171 pjm2 1.12 if ($machine_array != FALSE) {
172     foreach ($machine_array as $machine) {
173 pjm2 1.14 printReports($machine, $small);
174 pjm2 1.12 }
175 pjm2 1.9 }
176     }
177     else {
178 pjm2 1.14 printReports($machine, $small);
179 pjm2 1.9 }
180 pjm2 1.1
181 pjm2 1.5 }
182     else {
183     printLine("");
184 pjm2 1.1 }
185    
186     ?>
187    
188     <? include($bottomHTML); ?>