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.7 by pjm2, Thu Mar 15 17:37:59 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 33 | Line 36 | function printAlert($machine, $alert) {
36      $timeTillNextAlert = getValue("timeTillNextAlert", $alert);
37      $initialAlertTime = getValue("initialAlertTime", $alert);
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" width="500">
45 >    <table border="0" cellspacing="5">
46        <tr>
47          <td><b>$attributeName</b></td>
48 <        </td>&nbsp;</td>
49 <      <tr>
50 <        <td>Alert level:</td>
44 <        <td><b>$alertLevelNames[$alertLevel]</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>Last alert time:</td>
54 <        <td>$lastAlert</td>
55 <      </tr>
50 <      <tr>
51 <        <td colspan="2">
52 <          <font size="2">
53 <            $source has exceeded the threshold of $thresholdValue
54 <            for $attributeName with a value of <b>$value</b>.
55 <            
56 <          </font>
57 <        </td>
58 <      </tr>
59 <      <tr>
60 <        <td>Initial alert time:</td>
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>Time until next alert:</td>
60 <        <td>$timeTillNextAlert</td>
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      
# Line 73 | Line 70 | EOT;
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');
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 >        <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        
99 <   foreach($alertArray as $file_name) {
100 <       $input = file("$alertDirectory/$machine/$file_name");
101 <       $input = $input[0];
83 <       $alerts[] = $input;
84 <   }
85 <      
86 <   foreach ($alerts as $alert) {
87 <       printAlert($machine, $alert);
88 <   }
99 >    foreach ($alerts as $alert) {
100 >        printAlert($machine, $alert);
101 >    }
102   }
103  
104  
# Line 121 | Line 134 | function printReports($machine) {
134  
135         printReports($machine);
136        
137 +   }
138 +   else {
139 +       printLine("");
140     }
141  
142   ?>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines