ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/php/graphs/graphs.php
Revision: 1.7
Committed: Wed May 4 14:27:48 2005 UTC (19 years ago) by tdb
Branch: MAIN
Changes since 1.6: +23 -5 lines
Log Message:
Give option to show all graphs for a particular machine.

File Contents

# User Rev Content
1 tdb 1.1 <?php
2    
3 tdb 1.2 #
4     # i-scream central monitoring system
5 tdb 1.4 # http://www.i-scream.org
6 tdb 1.2 # Copyright (C) 2000-2002 i-scream
7     #
8     # This program is free software; you can redistribute it and/or
9     # modify it under the terms of the GNU General Public License
10     # as published by the Free Software Foundation; either version 2
11     # of the License, or (at your option) any later version.
12     #
13     # This program is distributed in the hope that it will be useful,
14     # but WITHOUT ANY WARRANTY; without even the implied warranty of
15     # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16     # GNU General Public License for more details.
17     #
18     # You should have received a copy of the GNU General Public License
19     # along with this program; if not, write to the Free Software
20     # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21     #
22    
23 tdb 1.1 # Navigation for the i-scream graphs
24 tdb 1.4 # tim@i-scream.org
25 tdb 1.1 #
26     # CONFIGURABLE CONSTANTS: -
27    
28     include("graphs_config.inc.php");
29    
30     #
31     # END CONFIGURATION
32    
33    
34     include("iutils.inc.php");
35    
36 tdb 1.5 if ($formMethod == "GET") {
37 tdb 1.6 $machine_name = isset($_GET['machine_name']) ? $_GET['machine_name'] : "";
38     $graph = isset($_GET['graph']) ? $_GET['graph'] : "";
39     $submit = isset($_GET['submit']) ? $_GET['submit'] : "";
40 tdb 1.7 $PHP_SELF = isset($_GET['PHP_SELF']) ? $_GET['PHP_SELF'] : "";
41 tdb 1.5 }
42    
43 tdb 1.7 $file_array = getdirArray($imgdir,'asort');
44    
45 tdb 1.1 ?>
46    
47     <? include($titleHTML); ?>
48    
49     <hr weight="1" color="<? echo $lineColor ?>">
50    
51     <b>Graphs available for these machines:</b>
52    
53     <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
54     <select size="1" name="machine_name">
55     <? if ($machine_name) { ?>
56     <option selected value="<? echo $machine_name ?>"><? echo $machine_name ?></option>
57     <option value="">----------------</option>
58     <? } else { ?>
59     <option selected value="">[select machine]</option>
60     <? } ?>
61     <?
62     foreach($file_array as $file_name) {
63     if(is_dir("$imgdir/$file_name")) { ?>
64     <option value="<? echo $file_name ?>"><? echo $file_name ?></option>
65     <? }
66     }
67     ?>
68     </select>
69    
70     <input type="submit" name="submit" value="Go">
71     </form>
72    
73     <hr weight="1" color="<? echo $lineColor ?>">
74    
75     <? if ($machine_name) { ?>
76    
77     <b>Available graphs for <? echo $machine_name ?></b>
78    
79     <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
80     <select size="1" name="graph">
81     <? if ($graph) { ?>
82     <option selected value="<? echo $graph ?>"><? echo tidyName($machine_name, $graph) ?></option>
83     <option value="">----------------</option>
84     <? } else { ?>
85     <option selected value="">[select graph]</option>
86     <? } ?>
87 tdb 1.7 <option value="ALL">ALL</option>
88 tdb 1.1 <?
89     $file_array = getdirArray("$imgdir/$machine_name",'asort');
90     foreach($file_array as $file_name) {
91     if(preg_match("/^(\S+)\-3h.png$/", $file_name, $matches)) { ?>
92     <option value="<? echo $matches[1] ?>"><? echo tidyName($machine_name, $matches[1]) ?></option>
93     <? }
94     }
95     ?>
96     </select>
97    
98     <input type="hidden" name="machine_name" value="<? echo $machine_name ?>">
99     <input type="submit" name="submit" value="Show">
100     </form>
101    
102     <hr weight="1" color="<? echo $lineColor ?>">
103    
104     <? } ?>
105    
106     </p>
107    
108    
109     <?
110     if ($submit == "Show" && $machine_name && $graph) {
111 tdb 1.7 if ($graph == "ALL") {
112     ?>
113     <center><b>[<? echo $machine_name; ?>] - All graphs</b></center>
114    
115     <center>
116     <?
117     foreach($file_array as $file_name) {
118     if(preg_match("/^(\S+)\-3h.png$/", $file_name, $matches)) { ?>
119     <p><b><? echo tidyName($machine_name, $matches[1]) ?>:</b><br>
120     <a href="<?=$PHP_SELF.'?'.'graph='.$matches[1].'&machine_name='.$machine_name.'&submit=Show'?>">
121     <img border="0" src="<? echo "$imgwebdir/$machine_name/$matches[1]-3h.png" ?>"></a></p>
122     <? }
123     }
124     ?>
125     </center>
126     <?
127     } else { // if graph== All
128 tdb 1.1 ?>
129     <center><b>[<? echo $machine_name; ?>] - '<? echo tidyName($machine_name, $graph) ?>' graphs</b></center>
130    
131     <center>
132     <p><b>Last 3 hours :</b><br><img border="0" src="<? echo "$imgwebdir/$machine_name/$graph-3h.png" ?>"></p>
133     <p><b>Last day :</b><br><img border="0" src="<? echo "$imgwebdir/$machine_name/$graph-1d.png" ?>"></p>
134     <p><b>Last week :</b><br><img border="0" src="<? echo "$imgwebdir/$machine_name/$graph-1w.png" ?>"></p>
135     <p><b>Last month :</b><br><img border="0" src="<? echo "$imgwebdir/$machine_name/$graph-1m.png" ?>"></p>
136     <p><b>Last year :</b><br><img border="0" src="<? echo "$imgwebdir/$machine_name/$graph-1y.png" ?>"></p>
137     </center>
138 tdb 1.7 <? } /* if graph == All */ ?>
139 tdb 1.1 <hr weight="1" color="<? echo $lineColor ?>">
140    
141     <b>Latest data</b>
142     <p>
143     Latest set of data received from
144     <a href="<? echo "latest.php?machine=$machine_name"; ?>"><?=$machine_name?></a>
145     <br>
146     Alerts for <a href="alerts.php?machine=<?=$machine_name?>"><?=$machine_name?></a>
147    
148    
149     <hr weight="1" color="<? echo $lineColor ?>">
150 tdb 1.7 <? } // if show, machine and graph
151 tdb 1.1 ?>
152    
153     <? include($bottomHTML); ?>