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.2 by pjm2, Thu Mar 15 10:55:03 2001 UTC vs.
Revision 1.10 by pjm2, Fri Mar 16 20:07:29 2001 UTC

# Line 23 | Line 23 | function getValue($value, $alert) {
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);
# Line 32 | Line 35 | function printAlert($machine, $alert) {
35      $attributeName = getValue("attributeName", $alert);
36      $timeTillNextAlert = getValue("timeTillNextAlert", $alert);
37      $initialAlertTime = getValue("initialAlertTime", $alert);
38 <    echo "<b>$alertLevel</b>$alert<br>";
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>&nbsp;</td>
49 >        <td><font color="$alertColour" size="2"><b>$alertLevel</b></font></td>
50 >        <td>&nbsp;</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 +         <table border="0" cellpadding="3" cellspacing="2" bgcolor="#000066" width="100%">
79 +          <tr>
80 +           <td>
81 +            <font color="white">
82 +             <b>
83 +              Current alerts for $machine
84 +             </b>
85 +             <font size="2">
86 +              <br>Sorted by time, latest first.
87 +             </font>
88 +            </font>
89 +           </td>
90 +          </tr>
91 +          <tr>
92 +           <td bgcolor="white">
93 +    
94 + EOT;
95 +
96 +    printLine("");
97 +  
98 +    if ($alertArray != FALSE) {
99 +
100 +        foreach($alertArray as $file_name) {
101 +            $input = file("$alertDirectory/$machine/$file_name");
102 +            $input = $input[0];
103 +            $alerts[] = $input;
104 +        }
105 +      
106 +        foreach ($alerts as $alert) {
107 +            printAlert($machine, $alert);
108 +        }
109 +    }
110 +    else {
111 +        echo "There are currently no alerts held about <b>$machine</b>";
112 +    }
113 +
114 +    echo <<<EOT
115 +         </td>
116 +        </tr>
117 +       </table>
118 + EOT;
119 + }
120 +
121 +
122   ?>
123  
124   <? include($titleHTML); ?>
125  
126 < <? printLine("Display alerts about all hosts, or a host"); ?>
126 > <? printLine("Display the latest alerts for a host"); ?>
127  
128   <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
129   <?
# Line 50 | Line 134 | function printAlert($machine, $alert) {
134          <option selected value="<? echo $machine ?>"><? echo $machine ?></option>
135          <option value="">----------------</option>
136      <? }
137 <    foreach($file_array as $file_name) {
137 >    foreach ($file_array as $file_name) {
138          #if (is_dir($file_name)) {
139              print "<option value=\"$file_name\">$file_name</option>";
140          #}
# Line 63 | Line 147 | function printAlert($machine, $alert) {
147  
148   <? if ($machine) {
149  
150 <       # Get a list of all files in the machine's directory.
151 <       $alertArray = getdirArray("$alertDirectory/$machine", 'rsort');
152 <      
153 <       foreach($alertArray as $file_name) {
154 <           $input = file("$alertDirectory/$machine/$file_name");
155 <           $input = $input[0];
156 <           $alerts[] = $input;
150 >       printLine("");
151 >
152 >       if ($machine == "ALL") {
153 >           $machine_array = getdirArray($alertDirectory, 'asort');
154 >           foreach ($machine_array as $machine) {
155 >               printReports($machine);
156 >           }
157         }
158 <      
159 <       foreach ($alerts as $alert) {
76 <           printAlert($machine, $alert);
158 >       else {
159 >           printReports($machine);
160         }
161 <
161 >      
162     }
163 +   else {
164 +       printLine("");
165 +   }
166  
167   ?>
82
83 <? printLine(""); ?>
168  
169   <? include($bottomHTML); ?>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines