ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/php/alerts/alerts.php
(Generate patch)

Comparing projects/cms/source/reports/php/alerts/alerts.php (file contents):
Revision 1.4 by pjm2, Thu Mar 15 16:53:59 2001 UTC vs.
Revision 1.21 by pjm2, Wed Mar 21 17:41:31 2001 UTC

# Line 22 | Line 22 | function getValue($value, $alert) {
22      return $matches[1];
23   }
24  
25 < function printAlert($machine, $alert) {
26 <    $alertLevel = getValue("alertLevel", $alert);
25 > function printAlert($machine, $alert, $small="") {
26 >
27 >    include("alerts_config.inc.php");
28 >
29 >    $alertLevelNum = getValue("alertLevel", $alert);
30      $lastAlert = getValue("lastAlert", $alert);
31      $thresholdLevel = getValue("thresholdLevel", $alert);
32      $source = getValue("source", $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>&nbsp;</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[$alertLevelNum];
40 >    $alertLevel = $alertLevelNames[$alertLevelNum];
41 >    $initialAlertTime = strftime("%x %X", intval($initialAlertTime / 1000));
42 >
43 >    if ($small == "true") {
44 >        echo <<<EOT
45 >            <tr>
46 >             <td width="50">
47 >              &nbsp;
48 >             </td>
49 >             <td align="left">
50 >              <img src="level$alertLevelNum.gif" width="41" height="9" border="0" alt="$alertLevel">
51 >             </td>
52 >             <td align="left">
53 >              <font size="3" color="$alertColour"><b>$alertLevel</b></font>
54 >             </td>
55 >             <td align="left">
56 >              <font size="3">$attributeName</font>
57 >             </td>
58 >             <td>
59 >              &nbsp;
60 >             </td>
61 >            </tr>
62 > EOT;
63 >    }
64 >    else {
65 >        echo <<<EOT
66 >        
67 >        <table border="0" cellspacing="5">
68 >          <tr>
69 >            <td><b>$attributeName</b></td>
70 >            <td>&nbsp;</td>
71 >            <td>
72 >              <img src="level$alertLevelNum.gif" width="41" height="9" border="0" alt="$alertLevel">
73 >              <font color="$alertColour" size="2"><b>$alertLevel</b></font>
74 >            </td>
75 >            <td>&nbsp;</td>
76 >          </tr>
77 >          <tr>
78 >            <td><font size="2">Threshold:</font></td>
79 >            <td>$thresholdValue</td>
80 >            <td><font size="2">Initially raised:</font></td>
81 >            <td>$initialAlertTime</td>
82 >          </tr>
83 >          <tr>
84 >            <td><font size="2">Alert value:</font></td>
85 >            <td><b>$value</b></td>
86 >            <td><!--Next alert time:--> </td>
87 >            <td><!--$timeTillNextAlert--> </td>
88 >          </tr>
89 >        </table>
90              
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    
91   EOT;
92 +        printLine("");
93 +    }
94  
71    printLine("");
72
95   }
96  
97 < function printReports($machine) {
98 <   # Get a list of all files in the machine's directory.
99 <   include("alerts_config.inc.php");
100 <   $alertArray = getdirArray("$alertDirectory/$machine", 'rsort');
97 > function printReports($machine, $small="") {
98 >    # Get a list of all files in the machine's directory.
99 >    include("alerts_config.inc.php");
100 >    $alertArray = getdirArray("$alertDirectory/$machine", 'rsort');
101 >  
102 >    if ($small == "true") {
103 >        echo <<<EOT
104 >           <table border="0" cellpadding="2" cellspacing="0">
105 >            <tr>
106 >             <td colspan="5">
107 >              <font size="+1"><b>$machine</b></font>
108 >             </td>
109 >            </tr>
110 > EOT;
111 >    }
112 >    else {
113 >        echo <<<EOT
114 >             <p>&nbsp;</p>
115 >             <table border="0" cellpadding="3" cellspacing="2" bgcolor="#000066" width="100%">
116 >               <tr>
117 >               <td>
118 >                <font color="white">
119 >                 <b>
120 >                  Current alerts for $machine
121 >                 </b>
122 >                 <font size="2">
123 >                  <br>Sorted by time, latest first.
124 >                 </font>
125 >                </font>
126 >               </td>
127 >              </tr>
128 >              <tr>
129 >               <td bgcolor="white">
130 >    
131 > EOT;
132 >
133 >        printLine("");
134 >    }
135 >  
136 >    if ($alertArray != FALSE) {
137 >
138 >        foreach($alertArray as $file_name) {
139 >            $input = file("$alertDirectory/$machine/$file_name");
140 >            $input = $input[0];
141 >            $alerts[] = $input;
142 >        }
143        
144 <   foreach($alertArray as $file_name) {
145 <       $input = file("$alertDirectory/$machine/$file_name");
146 <       $input = $input[0];
147 <       $alerts[] = $input;
148 <   }
149 <      
150 <   foreach ($alerts as $alert) {
151 <       printAlert($machine, $alert);
152 <   }
144 >        foreach ($alerts as $alert) {
145 >            printAlert($machine, $alert, $small);
146 >        }
147 >    }
148 >    else {
149 >        if ($small != "true") {
150 >            echo "There are currently no alerts held about <b>$machine</b>";
151 >            printLine("");
152 >        }
153 >    }
154 >
155 >    if ($small == "true") {
156 >        echo "</table>";
157 >    }
158 >    else {
159 >        echo <<<EOT
160 >             </td>
161 >            </tr>
162 >           </table>
163 > EOT;
164 >    }
165   }
166  
167  
# Line 93 | Line 169 | function printReports($machine) {
169  
170   <? include($titleHTML); ?>
171  
172 < <? printLine("Display the latest alerts for a host"); ?>
172 > <? if (!$hideform) { ?>
173  
174 + <? printLine("Latest alerts for hosts"); ?>
175 +
176   <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
177   <?
178  
# Line 104 | Line 182 | function printReports($machine) {
182          <option selected value="<? echo $machine ?>"><? echo $machine ?></option>
183          <option value="">----------------</option>
184      <? }
185 <    foreach($file_array as $file_name) {
185 >    foreach ($file_array as $file_name) {
186          #if (is_dir($file_name)) {
187              print "<option value=\"$file_name\">$file_name</option>";
188          #}
# Line 112 | Line 190 | function printReports($machine) {
190      print "</select>";
191  
192   ?>
193 + <input type="hidden" name="small" value="<?=$small?>">
194   <input type="submit" name="submit" value="Display">
195   </form>
196  
197 + <? } ?>
198 +
199   <? if ($machine) {
200  
201         printLine("");
202  
203 <       printReports($machine);
203 >       if ($machine == "ALL") {
204 >           $machine_array = getdirArray($alertDirectory, 'asort');
205 >           if ($machine_array != FALSE) {
206 >               foreach ($machine_array as $machine) {
207 >                   printReports($machine, $small);
208 >               }
209 >           }
210 >       }
211 >       else {
212 >           printReports($machine, $small);
213 >       }
214        
215 +   }
216 +   else {
217 +       printLine("");
218     }
219  
220   ?>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines