source: trunk/web/addons/toga/index.php @ 143

Last change on this file since 143 was 143, checked in by bastiaans, 19 years ago

web/addons/toga/libtoga.php:

  • Removed debug print

web/addons/toga/redcross.jpg:

  • Image for clearing date/time fields (tnx walter ;))

web/addons/toga/templates/header.tpl:

  • Header form name configurable

web/addons/toga/templates/search.tpl:

  • Moved javascript back in for modification
  • Misc. cosmetic changes
  • Added clear buttons for date/time fields

web/addons/toga/index.php:

  • Header will now label "Jobsearch" in header

web/addons/toga/search.php:

  • Misc. cleanup
  • Initial graphing code setup

web/addons/toga/graph.php:

  • Modified / modifyable graphing script for archive jobs

web/addons/toga/next.gif:

  • Next month button of datepicker

web/addons/toga/prev.gif:

  • Previous month button of datepicker

web/addons/toga/templates/header.tpl:

  • Configurable form
File size: 8.4 KB
Line 
1<?php
2
3if ( !empty( $_GET ) ) {
4        extract( $_GET );
5}
6
7$my_dir = getcwd();
8
9include_once "./libtoga.php";
10
11global $GANGLIA_PATH;
12chdir( $GANGLIA_PATH );
13
14include_once "./class.TemplatePower.inc.php";
15chdir( $my_dir );
16
17$httpvars = new HTTPVariables( $HTTP_GET_VARS, $_GET );
18$clustername = $httpvars->getClusterName();
19$view = $httpvars->getHttpVar( "view" );
20
21$filter = array();
22
23if( !isset($view) ) $view = "overview";
24if( !isset($sortorder) ) $sortorder = "asc";
25if( !isset($sortby) ) $sortby = "id";
26if( isset($queue) && ($queue!='')) $filter[queue]=$queue;
27if( isset($state) && ($state!='')) $filter[state]=$state;
28if( isset($user) && ($user!='')) $filter[user]=$user;
29if( isset($id) && ($id!='')) $filter[id]=$id;
30
31function makeHeader() {
32
33        global $tpl, $grid, $context, $initgrid;
34        global $jobrange, $jobstart, $title;
35        global $page, $gridwalk, $clustername;
36        global $parentgrid, $physical, $hostname;
37        global $self, $filter, $cluster_url, $get_metric_string;
38        global $metrics, $reports, $m, $default_metric;
39        global $default_refresh, $filterorder, $view;
40        global $TARCHD;
41
42        if( isset($default_metric) and !isset($m) )
43                $metricname = $default_metric;
44        else
45                if( isset( $m ) )
46                        $metricname = $m;
47                else
48                        $metricname = "load_one";
49
50        $header = "header";
51
52        # Maintain our path through the grid tree.
53        $me = $self . "@" . $grid[$self][AUTHORITY];
54
55        $gridstack = array();
56        $gridstack[] = $me;
57
58        if ($gridwalk=="fwd") {
59                # push our info on gridstack, format is "name@url>name2@url".
60                if (end($gridstack) != $me) {
61                        $gridstack[] = $me;
62                }
63        } else if ($gridwalk=="back") {
64                # pop a single grid off stack.
65                if (end($gridstack) != $me) {
66                        array_pop($gridstack);
67                }
68        }
69
70        $gridstack_str = join(">", $gridstack);
71        $gridstack_url = rawurlencode($gridstack_str);
72
73        if ($initgrid or $gridwalk) {
74                # Use cookie so we dont have to pass gridstack around within this site.
75                # Cookie values are automatically urlencoded. Expires in a day.
76                setcookie("gs", $gridstack_str, time() + 86400);
77        }
78
79        # Invariant: back pointer is second-to-last element of gridstack. Grid stack never
80        # has duplicate entries.
81        list($parentgrid, $parentlink) = explode("@", $gridstack[count($gridstack)-2]);
82
83        # Setup a redirect to a remote server if you choose a grid from pulldown menu. Tell
84        # destination server that we're walking foward in the grid tree.
85        if (strstr($clustername, "http://")) {
86                $tpl->assign("refresh", "0");
87                $tpl->assign("redirect", ";URL=$clustername?gw=fwd&gs=$gridstack_url");
88                echo "<h2>Redirecting, please wait...</h2>";
89                $tpl->printToScreen();
90                exit;
91        }
92
93        $tpl->assign( "refresh", $default_refresh );
94        $tpl->assign( "date", date("r") );
95        $tpl->assign( "page_title", $title );
96
97        # The page to go to when "Get Fresh Data" is pressed.
98        $tpl->assign("page","./");
99
100        # Templated Logo image
101        $tpl->assign("images","./templates/$template_name/images");
102
103        #
104        # Used when making graphs via graph.php. Included in most URLs
105        #
106        $sort_url=rawurlencode($sort);
107        $get_metric_string = "m=$metric&r=$range&s=$sort_url&hc=$hostcols";
108
109        if ($jobrange and $jobstart)
110                $get_metric_string .= "&jr=$jobrange&js=$jobstart";
111
112        # Set the Alternate view link.
113        $cluster_url=rawurlencode($clustername);
114        $node_url=rawurlencode($hostname);
115
116        # Make some information available to templates.
117        $tpl->assign("cluster_url", $cluster_url);
118        # Build the node_menu
119        $node_menu = "";
120
121        if ($parentgrid) {
122                $node_menu .= "<B>$parentgrid $meta_designator</B> ";
123                $node_menu .= "<B>&gt;</B>\n";
124        }
125
126        # Show grid.
127        $mygrid =  ($self == "unspecified") ? "" : $self;
128        $node_menu .= "<B>$mygrid $meta_designator</B> ";
129        $node_menu .= "<B>&gt;</B>\n";
130
131        if ($physical)
132                $node_menu .= hiddenvar("p", $physical);
133
134        if ( $clustername ) {
135                $url = rawurlencode($clustername);
136                $node_menu .= "<B><A HREF=\"../../?c=".rawurlencode($clustername)."\">$clustername</A></B> ";
137                $node_menu .= "<B>&gt;</B>\n";
138                $node_menu .= hiddenvar("c", $clustername);
139        }
140
141        if (!count($metrics)) {
142                echo "<h4>Cannot find any metrics for selected cluster \"$clustername\", exiting.</h4>\n";       echo "Check ganglia XML tree (telnet $ganglia_ip $ganglia_port)\n";
143                exit;
144        }
145        $firsthost = key($metrics);
146        foreach ($metrics[$firsthost] as $m => $foo)
147                $context_metrics[] = $m;
148        foreach ($reports as $r => $foo)
149                $context_metrics[] = $r;
150
151        $node_menu .= "<B><A HREF=\"./?c=".rawurlencode($clustername)."\">Joblist</A></B> ";
152
153        if( count( $filter ) > 0 && $view != "search" ) {
154
155                $filter_fields = explode( ",", $filterorder );
156                $onclick_href = array();
157
158                if( count( $filter_fields ) > 1 ) {
159                        //for( $i = (count( $filter_fields )-2); $i >= 0; $i-- ) {
160                               
161                        //      for( $l = intval($i+1); $l <=(count($filter_fields)-1); $l++ ) {
162                                        //$onclick_href[$filter_fields[$i]] = $onclick_href[$filter_fields[$i]] . "removeFilter( '" . $filter_fields[$l] . "' );";
163                        //              if( !isset( $onclick_href[$filter_fields[$i]] ) )
164                        //                      $onclick_href[$filter_fields[$i]] = "removeFilters( '".$filter_fields[$l];
165                        //              else
166                        //                      $onclick_href[$filter_fields[$i]] = $onclick_href[$filter_fields[$i]] . " ". $filter_fields[$l];
167                                               
168                        //      }
169                        //      $onclick_href[$filter_fields[$i]] = $onclick_href[$filter_fields[$i]] . "' )";
170                        //}
171                        foreach( $filter_fields as $filtername ) {
172
173                                $node_menu .= "<B>&gt;</B>\n";
174                                if( isset( $onclick_href[$filtername] ) )
175                                        $node_menu .= "<B><A HREF =\"#\" onClick=\"".$onclick_href[$filtername]."\">$filtername: $filter[$filtername]</A></B> ";
176                                else
177                                        $node_menu .= "<B>$filtername: $filter[$filtername]</B> ";
178                        }
179                } else {
180
181                        foreach( $filter as $filtername=>$filterval ) {
182                                $node_menu .= "<B>&gt;</B>\n";
183                                $node_menu .= "<B>$filtername: $filterval</B> ";
184                        }
185                }
186
187        }
188
189        if( $view == "search" ) {
190                $node_menu .= "<B>&gt;</B>\n";
191                $node_menu .= "<B>Jobarchive</B> ";
192                $tpl->assign("view", "search" );
193                $tpl->assign("form_name", "archive_search_form" );
194        } else {
195                $tpl->assign("form_name", "toga_form" );
196                $tpl->assign("view", "overview" );
197        }
198
199        $tpl->assign("node_menu", $node_menu);
200
201        if( array_key_exists( "id", $filter ) ) {
202
203                if (is_array($context_metrics) ) {
204                        $metric_menu = "<B>Metric</B>&nbsp;&nbsp;"
205                                ."<SELECT NAME=\"m\" OnChange=\"toga_form.submit();\">\n";
206
207                        sort($context_metrics);
208                        foreach( $context_metrics as $k ) {
209                                $url = rawurlencode($k);
210                                $metric_menu .= "<OPTION VALUE=\"$url\" ";
211                                if ($k == $metricname )
212                                        $metric_menu .= "SELECTED";
213                                $metric_menu .= ">$k\n";
214                        }
215                        $metric_menu .= "</SELECT>\n";
216
217                        $tpl->assign("metric_menu", $metric_menu );
218                }
219        }
220        $m = $metricname;
221
222        if( $TARCHD ) {
223                $tpl->newBlock( "search" );
224                $tpl->assignGlobal( "cluster_url", rawurlencode($clustername) );
225                $tpl->assignGlobal( "cluster", $clustername );
226                $tpl->gotoBlock( "_ROOT" );
227        }
228
229        # Make sure that no data is cached..
230        header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT");    # Date in the past
231        header ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); # always modified
232        header ("Cache-Control: no-cache, must-revalidate");  # HTTP/1.1
233        header ("Pragma: no-cache");                          # HTTP/1.0
234}
235
236function makeFooter() {
237        global $tpl, $version, $parsetime;
238
239        $tpl->assign("webfrontend-version",$version["webfrontend"]);
240        $tpl->assign("togaweb-version", "0.1");
241        $tpl->assign("togaarch-version", "0.1");
242        $tpl->assign("togaplug-version", "0.1");
243
244        if ($version["gmetad"]) {
245                $tpl->assign("webbackend-component", "gmetad");
246                $tpl->assign("webbackend-version",$version["gmetad"]);
247        } else if ($version["gmond"]) {
248                $tpl->assign("webbackend-component", "gmond");
249                $tpl->assign("webbackend-version", $version["gmond"]);
250        }
251
252        $tpl->assign("parsetime", sprintf("%.4f", $parsetime) . "s");
253}
254
255function includeSearchpage() {
256        global $tpl;
257
258        $tpl->assignInclude( "main", "templates/search.tpl" );
259
260}
261
262function includeOverview() {
263        global $tpl;
264
265        $tpl->assignInclude( "main", "templates/overview.tpl" );
266}
267
268$tpl = new TemplatePower( "templates/index.tpl" );
269
270$tpl->assignInclude( "header", "templates/header.tpl" );
271
272switch( $view ) {
273
274        case "overview":
275
276                includeOverview();
277                break;
278
279        case "search":
280
281                includeSearchPage();
282                break;
283
284        default:
285
286                includeOverview();
287                break;
288}
289
290$tpl->assignInclude( "footer", "templates/footer.tpl" );
291$tpl->prepare();
292
293$title = "Torque Report";
294makeHeader();
295$tpl->assign("cluster_url", rawurlencode($clustername) );
296$tpl->assign("cluster", $clustername );
297
298switch( $view ) {
299
300        case "overview":
301
302                include "./overview.php";
303                makeOverview();
304                break;
305
306        case "search":
307
308                include "./search.php";
309                makeSearchPage();
310                break;
311
312        default:
313
314                makeOverview();
315                break;
316}
317
318makeFooter();
319
320$tpl->printToScreen();
321?>
Note: See TracBrowser for help on using the repository browser.