source: branches/1.0/web/addons/job_monarch/overview.php @ 931

Last change on this file since 931 was 931, checked in by ramonb, 11 years ago

job_monarch/templates/overview.tpl:

  • renamed nodes field to: hosts

job_monarch/overview.php:

  • added sortby hosts
  • see #169
  • Property svn:keywords set to Id
File size: 28.2 KB
Line 
1<?php
2/*
3 *
4 * This file is part of Jobmonarch
5 *
6 * Copyright (C) 2006-2013  Ramon Bastiaans
7 *
8 * Jobmonarch is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * Jobmonarch 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 *
22 * SVN $Id: overview.php 931 2013-08-06 12:45:34Z ramonb $
23 */
24
25global $GANGLIA_PATH, $clustername, $tpl_data, $filter, $cluster, $get_metric_string, $cluster_url, $sh;
26global $hosts_up, $m, $start, $end, $filterorder, $COLUMN_REQUESTED_MEMORY, $COLUMN_QUEUED, $COLUMN_NODES, $hostname, $piefilter;
27global $longtitle, $title, $range;
28
29include_once "./dwoo/dwooAutoload.php";
30
31global $dwoo;
32
33$tpl = new Dwoo_Template_File("templates/overview.tpl");
34$tpl_data = array();
35
36$tpl_data[ "clustername"]= $clustername ;
37
38if( $JOB_ARCHIVE )
39{
40    $tpl_data[ "cluster_url"]= rawurlencode($clustername) ;
41}
42
43$rjqj_start = null;
44$ds         = new DataSource();
45$myxml_data = $ds->getData();
46
47//print_r( $myxml_data );
48
49$data_gatherer = new DataGatherer( $clustername );
50$data_gatherer->parseXML( $myxml_data );
51
52$parsetime = $data_gatherer->parsetime;
53$heartbeat = $data_gatherer->getHeartbeat();
54$jobs      = $data_gatherer->getJobs();
55$gnodes    = $data_gatherer->getNodes();
56$cpus      = $data_gatherer->getCpus();
57
58//print_r( $gnodes );
59
60function setupFilterSettings() 
61{
62
63    global $tpl_data, $filter, $clustername, $piefilter, $data_gatherer, $myxml_data, $filterorder, $_SESSION, $data_gatherer;
64    global $jobs, $gnodes;
65
66    $filter_image_url = "";
67
68    foreach( $filter as $filtername => $filtervalue ) 
69    {
70        $tpl_data[ $filtername ] = $filtervalue;
71
72        $filter_image_url    .= "&$filtername=$filtervalue";
73    }
74
75    session_start();
76
77    unset( $_SESSION["data"] );
78    $_SESSION["data"] = &$myxml_data;
79
80    $ic = new ClusterImage( $myxml_data, $clustername );
81
82    $ic->setJobs( $jobs );
83    $ic->setNodes( $gnodes );
84    $ic->setBig();
85    $ic->setNoimage();
86    $ic->draw();
87
88    $tpl_data[ "clusterimage"]= "./image.php?". session_name() . "=" . session_id() ."&c=".rawurlencode($clustername)."&j_view=big-clusterimage".$filter_image_url;
89
90    $tpl_data[ "node_clustermap"]= "yes";
91    $tpl_data[ "node_area_map"]= $ic->getImagemapArea();
92
93    $tpl_data[ "order"]= $filterorder;
94}
95
96function timeToEpoch( $time ) 
97{
98    $time_fields = explode( ':', $time );
99
100    if( count( $time_fields ) == 3 ) 
101    {
102        $hours   = $time_fields[0];
103        $minutes = $time_fields[1];
104        $seconds = $time_fields[2];
105
106    } 
107    else if( count( $time_fields ) == 2 ) 
108    {
109        $hours   = 0;
110        $minutes = $time_fields[0];
111        $seconds = $time_fields[1];
112
113    } 
114    else if( count( $time_fields ) == 1 ) 
115    {
116        $hours   = 0;
117        $minutes = 0;
118        $seconds = $time_fields[0];
119    }
120
121    $myepoch = intval( $seconds + (intval( $minutes * 60 )) + (intval( $hours * 3600 )) );
122
123    return $myepoch;
124}
125
126function colorRed( $color ) 
127{
128    return substr( $color, 0, 2 );
129}
130
131function colorGreen( $color ) 
132{
133    return substr( $color, 2, 2 );
134}
135
136function colorBlue( $color ) 
137{
138    return substr( $color, 4, 2 );
139}
140
141function colorDiffer( $first, $second ) 
142{
143    // Make sure these two colors differ atleast 50 R/G/B
144    $min_diff = 50;
145
146    $c1r   = hexDec( colorRed( $first ) );
147    $c1g   = hexDec( colorGreen( $first ) );
148    $c1b   = hexDec( colorBlue( $first ) );
149
150    $c2r   = hexDec( colorRed( $second ) );
151    $c2g   = hexDec( colorGreen( $second ) );
152    $c2b   = hexDec( colorBlue( $second ) );
153
154    $rdiff = ($c1r >= $c2r) ? $c1r - $c2r : $c2r - $c1r;
155    $gdiff = ($c1g >= $c2g) ? $c1g - $c2g : $c2g - $c1g;
156    $bdiff = ($c1b >= $c2b) ? $c1b - $c2b : $c2b - $c1b;
157
158    if( $rdiff >= $min_diff or $gdiff >= $min_diff or $bdiff >= $min_diff ) 
159    {
160        return TRUE;
161
162    } 
163    else 
164    {
165        return FALSE;
166    }
167}
168
169function randomColor( $known_colors ) 
170{
171    // White (000000) would be invisible
172    $start       = "004E00";
173   
174    $start_red   = colorRed( $start );
175    $start_green = colorGreen( $start );
176    $start_blue  = colorBlue( $start );
177   
178    $end         = "FFFFFF";
179
180    $end_red     = colorRed( $end );
181    $end_green   = colorGreen( $end );
182    $end_blue    = colorBlue( $end );
183
184    $change_color= TRUE;
185
186    while( $change_color ) 
187    {
188        $change_color= FALSE;
189
190        $new_red     = rand( hexDec( $start_red ), hexDec( $end_red ) );
191        $new_green   = rand( hexDec( $start_green ), hexDec( $end_green ) );
192        $new_blue    = rand( hexDec( $start_blue ), hexDec( $end_blue ) );
193
194        $new         = decHex( $new_red ) . decHex( $new_green ) . decHex( $new_blue );
195
196        foreach( $known_colors as $old )
197        {
198            if( !colorDiffer( $new, $old ) )
199            {
200                 $change_color = TRUE;
201            }
202        }
203    }
204
205    // Whoa! Actually found a good color ;)
206    return $new;
207}
208
209function sortJobs( $jobs, $sortby, $sortorder ) 
210{
211    $sorted    = array();
212
213    $cmp    = create_function( '$a, $b', 
214        "global \$sortby, \$sortorder;".
215
216        "if( \$a == \$b ) return 0;".
217
218        "if (\$sortorder==\"desc\")".
219            "return ( \$a > \$b ) ? 1 : -1;".
220        "else if (\$sortorder==\"asc\")".
221            "return ( \$a < \$b ) ? 1 : -1;" );
222
223    if( isset( $jobs ) && count( $jobs ) > 0 ) 
224    {
225        foreach( $jobs as $jobid => $jobattrs ) 
226        {
227                $state     = $jobattrs['status'];
228                $owner     = $jobattrs['owner'];
229                $queue     = $jobattrs['queue'];
230                $name      = $jobattrs['name'];
231                $req_cpu   = $jobattrs['requested_time'];
232                $req_memory= $jobattrs['requested_memory'];
233
234                if( $state == 'R' )
235                {
236                    $nodes = count( $jobattrs['nodes'] );
237
238                    $job_hosts = $jobattrs['nodes'][0];
239
240                }
241                else
242                {
243                    $nodes = $jobattrs['nodes'];
244                    $job_hosts = '';
245                }
246
247                $ppn         = (int) $jobattrs['ppn'] ? $jobattrs['ppn'] : 1;
248                $cpus        = $nodes * $ppn;
249                $queued_time = (int) $jobattrs['queued_timestamp'];
250                $start_time  = (int) $jobattrs['start_timestamp'];
251                $runningtime = $report_time - $start_time;
252
253                switch( $sortby ) 
254                {
255                    case "id":
256                        $sorted[$jobid] = $jobid;
257                        break;
258
259                    case "state":
260                        $sorted[$jobid] = $state;
261                        break;
262
263                    case "owner":
264                        $sorted[$jobid] = $owner;
265                        break;
266
267                    case "queue":
268                        $sorted[$jobid] = $queue;
269                        break;
270
271                    case "name":
272                        $sorted[$jobid] = $name;
273                        break;
274
275                    case "req_cpu":
276                        $sorted[$jobid] = timeToEpoch( $req_cpu );
277                        break;
278
279                    case "req_mem":
280                        $sorted[$jobid] = $req_memory;
281                        break;
282
283                    case "nodes":
284                        $sorted[$jobid] = $nodes;
285                        break;
286
287                    case "hosts":
288                        $sorted[$jobid] = $job_hosts;
289                        break;
290
291                    case "cpus":
292                        $sorted[$jobid] = $cpus;
293                        break;
294
295                    case "queued":
296                        $sorted[$jobid] = $queued_time;
297                        break;
298
299                    case "start":
300                        $sorted[$jobid] = $start_time;
301                        break;
302
303                    case "runningtime":
304                        $sorted[$jobid] = $runningtime;
305                        break;
306
307                    default:
308                        break;
309                }
310        }
311    }
312
313    if( $sortorder == "asc" )
314    {
315        asort( $sorted );
316    }
317    else if( $sortorder == "desc" )
318    {
319        arsort( $sorted );
320    }
321
322    return $sorted;
323}
324
325function makeOverview() 
326{
327    global $dwoo, $tpl, $tpl_data, $jobs, $nodes, $heartbeat, $clustername, $tpl_data;
328    global $sortorder, $sortby, $filter, $sh, $hc, $m, $range;
329    global $cluster_url, $get_metric_string, $host_url, $metrics;
330    global $start, $end, $reports, $gnodes, $default_showhosts;
331    global $COLUMN_QUEUED, $COLUMN_REQUESTED_MEMORY, $COLUMN_NODES, $hostname;
332    global $cluster, $use_fqdn, $myxml_data, $data_gatherer;
333
334    $metricname        = $m;
335    if( isset($conf['default_metric']) and ($metricname =='') )
336        $metricname = $conf['default_metric'];
337    else
338        if( isset( $m ) )
339            $metricname = $m;
340        else
341            $metricname = "load_one";
342
343    $tpl_data["sortorder"]= $sortorder;
344    $tpl_data["sortby"]= $sortby;
345
346    $sorted_jobs        = sortJobs( $jobs, $sortby, $sortorder );
347
348    $even               = 1;
349
350    $used_jobs          = 0;
351    $used_cpus          = 0;
352    $used_nodes         = 0;
353
354    $queued_jobs        = 0;
355    $queued_nodes       = 0;
356    $queued_cpus        = 0;
357
358    $total_nodes        = 0;
359    $total_cpus         = 0;
360    $total_jobs         = 0;
361
362    $all_used_nodes     = array();
363    $total_used_nodes   = array();
364
365    $running_name_nodes = array();
366
367    $running_nodes      = 0;
368    $running_jobs       = 0;
369    $running_cpus       = 0;
370
371    $avail_nodes        = count( $gnodes );
372    $avail_cpus         = cluster_sum("cpu_num", $metrics);
373
374    $view_cpus          = 0;
375    $view_jobs          = 0;
376    $view_nodes         = 0;
377
378    $all_nodes          = 0;
379    $all_jobs           = 0;
380    $all_cpus           = 0;
381
382    $view_name_nodes    = array();
383
384    // Is the "requested memory" column enabled in the config
385    //
386    if( $COLUMN_REQUESTED_MEMORY ) 
387    {
388        $tpl_data[ "column_header_req_mem"]= "yes";
389    }
390
391    // Is the "nodes hostnames" column enabled in the config
392    //
393    if( $COLUMN_NODES ) 
394    {
395        $tpl_data[ "column_header_nodes"]= "yes";
396    }
397
398    // Is the "queued time" column enabled in the config
399    //
400    if( $COLUMN_QUEUED ) 
401    {
402        $tpl_data[ "column_header_queued"]= "yes" ;
403    }
404
405    $last_displayed_job = null;
406
407    $rjqj_host = null;
408
409    $na_nodes  = 0;
410    $na_cpus   = 0;
411
412    foreach( $metrics as $bhost => $bmetric )
413    {
414        foreach( $bmetric as $mname => $mval )
415        {
416            if( ( $mname == 'zplugin_monarch_rj' ) || ($mname == 'zplugin_monarch_qj') )
417            {
418                $rjqj_host = $bhost;
419            }
420        }
421    }
422
423    foreach( $gnodes as $ghost => $gnode )
424    {
425        if( $gnode->isDown() || $gnode->isOffline() )
426        {
427            $na_nodes += 1;
428            $na_cpus  += $metrics[$ghost]['cpu_num']['VAL'];
429        }
430    }
431
432    $node_list = array();
433
434    foreach( $sorted_jobs as $jobid => $sortdec ) 
435    {
436        $report_time     = $jobs[$jobid]['reported'];
437
438        if( $jobs[$jobid]['status'] == 'R' )
439        {
440            $nodes = count( $jobs[$jobid]['nodes'] );
441        }
442        else if( $jobs[$jobid]['status'] == 'Q' )
443        {
444            $nodes = $jobs[$jobid]['nodes'];
445        }
446
447        $ppn  = isset( $jobs[$jobid]['ppn'] ) ? $jobs[$jobid]['ppn'] : 1;
448        $cpus = $nodes * $ppn;
449
450        if( $report_time == $heartbeat ) 
451        {
452            $display_job    = 1;
453
454            if( $jobs[$jobid]['status'] == 'R' ) 
455            {
456                foreach( $jobs[$jobid]['nodes'] as $tempnode ) 
457                {
458                    $all_used_nodes[] = $tempnode;
459                }
460            }
461
462            $used_cpus += $cpus;
463
464            if( $jobs[$jobid]['status'] == 'R' ) 
465            {
466                $running_cpus     += $cpus;
467
468                $running_jobs++;
469
470                $found_node_job    = 0;
471
472                foreach( $jobs[$jobid]['nodes'] as $tempnode ) 
473                {
474                    $running_name_nodes[] = $tempnode;
475
476                    $hostnode = $data_gatherer->makeHostname( $tempnode, $jobs[$jobid]['domain'] );
477
478                    if( isset( $hostname ) && $hostname != '' ) 
479                    {
480                        if( $hostname == $hostnode ) 
481                        {
482                            $found_node_job = 1;
483                            $display_job = 1;
484                        } 
485                        else if( !$found_node_job ) 
486                        {
487                            $display_job = 0;
488                        }
489                    }
490                }
491            }
492
493            if( $jobs[$jobid]['status'] == 'Q' ) 
494            {
495                if( isset( $hostname ) && $hostname != '' )
496                {
497                    $display_job = 0;
498                }
499
500                $queued_cpus  += $cpus;
501                $queued_nodes += $nodes;
502
503                $queued_jobs++;
504            }
505
506            foreach( $filter as $filtername=>$filtervalue ) 
507            {
508                if( $filtername == 'id' && $jobid != $filtervalue )
509                {
510                    $display_job = 0;
511                }
512                else if( $filtername == 'state' && $jobs[$jobid]['status'] != $filtervalue )
513                {
514                    $display_job = 0;
515                }
516                else if( $filtername == 'queue' && $jobs[$jobid]['queue'] != $filtervalue )
517                {
518                    $display_job = 0;
519                }
520                else if( $filtername == 'owner' && $jobs[$jobid]['owner'] != $filtervalue )
521                {
522                    $display_job = 0;
523                }
524            }
525
526
527            if( $display_job ) 
528            {
529                unset( $job_loop );
530                $job_loop = array();
531                $job_loop["clustername"] = $clustername;
532
533                $job_loop["id"] = $jobid;
534
535                $last_displayed_job     = $jobid;
536
537                $job_loop["state"] = $jobs[$jobid]['status'];
538
539                $fullstate         = '';
540
541                if( $jobs[$jobid]['status'] == 'R' ) 
542                {
543                    $fullstate     = "Running";
544                } 
545                else if( $jobs[$jobid]['status'] == 'Q' ) 
546                {
547                    $fullstate     = "Queued";
548                }
549
550                $job_loop["fullstate"] = $fullstate;
551               
552                $job_loop["owner"] = $jobs[$jobid]['owner'];
553                $job_loop["queue"] = $jobs[$jobid]['queue'];
554
555                $fulljobname         = $jobs[$jobid]['name'];
556                $shortjobname        = '';
557
558                $job_loop["fulljobname"] = $fulljobname;
559
560                $fulljobname_fields    = explode( ' ', $fulljobname );
561
562                $capjobname        = 0;
563
564                if( strlen( $fulljobname_fields[0] ) > 10 )
565                {
566                    $capjobname    = 1;
567                }
568
569                if( $capjobname ) 
570                {
571                    $job_loop[ "jobname_hint_start" ] = "yes";
572
573                    $shortjobname     = substr( $fulljobname, 0, 10 ) . '..';
574                } 
575                else 
576                {
577                    $shortjobname     = $fulljobname;
578                }
579               
580                $job_loop["name"] = $shortjobname;
581
582                if( $capjobname ) 
583                {
584                    $job_loop[ "jobname_hint_end" ] = "yes";
585                }
586
587                $domain         = $jobs[$jobid]['domain'];
588
589                $job_loop["req_cpu"] = makeTime( timeToEpoch( $jobs[$jobid]['requested_time'] ) );
590
591                if( $COLUMN_REQUESTED_MEMORY ) 
592                {
593                    $job_loop[ "column_req_mem" ] = "yes";
594                    $job_loop["req_memory"] = $jobs[$jobid]['requested_memory'];
595                }
596
597
598                if( $COLUMN_QUEUED ) 
599                {
600                    $job_loop[ "column_queued" ] = "yes";
601                    $job_loop["queued"] = makeDate( $jobs[$jobid]['queued_timestamp'] );
602                }
603                if( $COLUMN_NODES ) 
604                {
605                    $job_loop[ "column_nodes" ] = "yes";
606                    //echo "colum nodes";
607                }
608
609                $ppn       = isset( $jobs[$jobid]['ppn'] ) ? $jobs[$jobid]['ppn'] : 1;
610                $cpus      = $nodes * $ppn;
611
612                $job_loop["nodes"] = $nodes;
613                $job_loop["cpus"] = $cpus;
614
615                $start_time= (int) $jobs[$jobid]['start_timestamp'];
616                $job_start = $start_time;
617
618
619                $view_cpus += $cpus;
620
621                $view_jobs++;
622
623                if( $jobs[$jobid]['status'] == 'R' ) 
624                {
625                    $job_runningtime    = $heartbeat - $start_time;
626                    if( $rjqj_start == null ) 
627                    {
628                        $rjqj_start = intval( $start_time - (intval( $job_runningtime * 0.10 ) ) );
629                    }
630                    else if( $start_time < $rjqj_start )
631                    {
632                        $rjqj_start = intval( $start_time - (intval( $job_runningtime * 0.10 ) ) );
633                    }
634
635                    foreach( $jobs[$jobid]['nodes'] as $tempnode )
636                    {
637                        $view_name_nodes[]     = $tempnode;
638                    }
639
640                    if( $COLUMN_NODES ) 
641                    {
642                        $job_loop[ "column_nodes" ] = "yes";
643
644                        $mynodehosts         = array();
645
646                        foreach( $jobs[$jobid]['nodes'] as $shortnode ) 
647                        {
648                            $domain         = $jobs[$jobid]['domain'];
649                            $mynode         = $data_gatherer->makeHostname( $shortnode, $domain );
650                            $myhost_href    = "./?c=".$clustername."&h=".$mynode;
651                            $mynodehosts[]  = "<A HREF=\"".$myhost_href."\">".$shortnode."</A>";
652                        }
653
654                        $nodes_hostnames    = implode( " ", $mynodehosts );
655
656                        $job_loop["nodes_hostnames"] = $nodes_hostnames;
657                    }
658                } 
659                else if( $jobs[$jobid]['status'] == 'Q' ) 
660                {
661                    $view_nodes     += (int) $jobs[$jobid]['nodes'];
662                }
663
664                if( $even ) 
665                {
666                    $job_loop["nodeclass"] = "even";
667
668                    $even         = 0;
669                } 
670                else 
671                {
672                    $job_loop["nodeclass"] = "odd";
673
674                    $even         = 1;
675                }
676
677                if( $start_time ) 
678                {
679                    $runningtime        = makeTime( $report_time - $start_time );
680                    $job_runningtime    = $heartbeat - $start_time;
681
682                    $job_loop["started"] = makeDate( $start_time );
683                    $job_loop["runningtime"] = $runningtime;
684                }
685                $node_list[] = &$job_loop;
686            }
687            $tpl_data["node_list"]= &$node_list ;
688        }
689    }
690    if( intval($view_jobs) == 1 and $start_time )
691    {
692        if( $last_displayed_job != null )
693        {
694            $filter['id'] = $last_displayed_job;
695        }
696    }
697    // Running / queued amount jobs graph
698    //
699    if( $rjqj_host != null )
700    {
701        $rjqj_graphargs = "?z=overview-medium&c=$clustername&h=$rjqj_host&g=job_report&r=$range";
702        if( $range == 'job' )
703        {
704            $rjqj_end = time();
705
706            if( $rjqj_start == null ) 
707            { // probably no running jobs in this view: only queued
708                $rjqj_start = $rjqj_end - (24 * 3600); // default to 1 day
709            }
710            $rjqj_title = rawurlencode( makeTime( ($rjqj_end - $rjqj_start) ) );
711            $rjqj_graphargs .= "&period_start=$rjqj_start&period_stop=$rjqj_end&t=$rjqj_title";
712        }
713        else
714        {
715            $rjqj_graphargs .= "&st=$cluster[LOCALTIME]";
716        }
717        if( intval($view_jobs) == 1 and $start_time )
718        {
719            $job_start     = $jobs[$last_displayed_job]['start_timestamp'];
720            $rjqj_graphargs .= "&job_start=$start_time";
721        }
722
723        $rjqj_str  = "<A HREF=\"./graph.php$rjqj_graphargs\">";
724        $rjqj_str .= "<IMG BORDER=0 SRC=\"./graph.php$rjqj_graphargs\">";
725        $rjqj_str .= "</A>";
726
727        $tpl_data[ "rjqj_graph"]= $rjqj_str ;
728    }
729
730    $all_used_nodes     = array_unique( $all_used_nodes );
731    $view_name_nodes    = array_unique( $view_name_nodes );
732    $running_name_nodes = array_unique( $running_name_nodes );
733
734    $used_nodes         = count( $all_used_nodes );
735    $view_nodes        += count( $view_name_nodes );
736    $running_nodes     += count( $running_name_nodes );
737
738    $total_nodes        = $queued_nodes + $running_nodes;
739    $total_cpus         = $queued_cpus + $running_cpus;
740    $total_jobs         = $queued_jobs + $running_jobs;
741
742    $free_nodes         = $avail_nodes - $running_nodes - $na_nodes;
743    $free_nodes         = ( $free_nodes >= 0 ) ? $free_nodes : 0;
744    $free_cpus          = $avail_cpus - $running_cpus - $na_cpus;
745    $free_cpus          = ( $free_cpus >= 0 ) ? $free_cpus : 0;
746
747    $tpl_data[ "avail_nodes"]= $avail_nodes ;
748    $tpl_data[ "avail_cpus"]= $avail_cpus ;
749
750    $tpl_data[ "queued_nodes"]= $queued_nodes ;
751    $tpl_data[ "queued_jobs"]= $queued_jobs ;
752    $tpl_data[ "queued_cpus"]= $queued_cpus ;
753
754    // Only display "Unavailable" in count overview there are any
755    //
756    if( $na_nodes > 0 )
757    {
758        $tpl_data[ "show_na_nodes"]= "yes";
759
760        $tpl_data[ "na_nodes"]= $na_nodes ;
761        $tpl_data[ "na_cpus"]= $na_cpus ;
762    }
763
764    $tpl_data[ "total_nodes"]= $total_nodes ;
765    $tpl_data[ "total_jobs"]= $total_jobs ;
766    $tpl_data[ "total_cpus"]= $total_cpus ;
767
768    $tpl_data[ "running_nodes"]= $running_nodes ;
769    $tpl_data[ "running_jobs"]= $running_jobs ;
770    $tpl_data[ "running_cpus"]= $running_cpus ;
771
772    $tpl_data[ "used_nodes"]= $used_nodes ;
773    $tpl_data[ "used_jobs"]= $used_jobs ;
774    $tpl_data[ "used_cpus"]= $used_cpus ;
775
776    $tpl_data[ "free_nodes"]= $free_nodes ;
777    $tpl_data[ "free_cpus"]= $free_cpus ;
778
779    $tpl_data[ "view_nodes"]= $view_nodes ;
780    $tpl_data[ "view_jobs"]= $view_jobs ;
781    $tpl_data[ "view_cpus"]= $view_cpus ;
782
783    $tpl_data[ "report_time"]= makeDate( $heartbeat);
784
785
786    global $longtitle, $title;
787
788    $longtitle = "Batch Report :: Powered by Job Monarch!";
789    $title = "Batch Report";
790
791    makeHeader( 'overview', $title, $longtitle );
792
793    setupFilterSettings();
794
795    if( intval($view_jobs) == 1 and $start_time )
796    {
797        $tpl_data[ "showhosts"]= "yes" ;
798
799        $showhosts     = isset($sh) ? $sh : $default_showhosts;
800
801        $tpl_data[ "checked$showhosts"]= "checked" ;
802
803        $sorted_list = array();
804
805        if( $showhosts )
806        {
807            if( !isset( $start ) )
808            {
809                $start    ="jobstart";
810            }
811            if( !isset( $stop ) )
812            {
813                $stop    ="now";
814            }
815
816            $sorted_hosts = array();
817            $hosts_up     = $jobs[$filter['id']]['nodes'];
818
819            $r            = intval($job_runningtime * 1.2);
820
821            $jobrange     = -$r ;
822            $jobstart     = $start_time;
823
824            if ( $reports[$metricname] )
825            {
826                $metricval     = "g";
827            }
828            else
829            {
830                $metricval    = "m";
831            }
832               
833            foreach ( $hosts_up as $host )
834            {
835                $host             = $data_gatherer->makeHostname( $host, $domain );
836
837                $cpus             = 0;
838
839                $cpus             = $metrics[$host]["cpu_num"]["VAL"];
840
841                if( $cpus == 0 )
842                {
843                    $cpus        = 1;
844                }
845
846                $load_one         = $metrics[$host]["load_one"]['VAL'];
847                $load             = ((float) $load_one) / $cpus;
848                $host_load[$host] = $load;
849
850                $percent_hosts[load_color($load)] ++;
851
852                if ($metricname=="load_one")
853                {
854                    $sorted_hosts[$host]     = $load;
855                }
856                else
857                {
858                    $sorted_hosts[$host]     = $metrics[$host][$metricname]['VAL'];
859                }
860            }
861
862            switch ( $sort )
863            {
864                case "descending":
865                    arsort( $sorted_hosts );
866                    break;
867
868                case "by hostname":
869                    ksort( $sorted_hosts );
870                    break;
871
872                case "ascending":
873                    asort( $sorted_hosts );
874                    break;
875
876                default:
877                    break;
878            }
879
880            // First pass to find the max value in all graphs for this
881            // metric. The $start,$end variables comes from get_context.php,
882            // included in index.php.
883            //
884            list($min, $max) = find_limits($sorted_hosts, $metricname);
885
886            // Second pass to output the graphs or metrics.
887            $i = 1;
888
889            $metric_loop = array();
890            foreach ( $sorted_hosts as $host=>$value  )
891            {
892                $host_url    = rawurlencode( $host );
893                $cluster_url = rawurlencode( $clustername );
894
895                $textval     = "";
896
897                $val         = $metrics[$host][$metricname];
898                $class       = "metric";
899
900                if ( $val["TYPE"] == "timestamp" || $always_timestamp[$metricname] )
901                {
902                    $textval     = date( "r", $val["VAL"] );
903                }
904                elseif ( $val["TYPE"] == "string" || $val["SLOPE"] == "zero" || $always_constant[$metricname] || ($max_graphs > 0 and $i > $max_graphs ))
905                {
906                    $textval     = $val["VAL"] . " " . $val["UNITS"];
907                }
908                else
909                {
910                    $job_start     = $jobs[$last_displayed_job]['start_timestamp'];
911                    $period_end    = $cluster['LOCALTIME'];
912                    $runningtime   = intval( $period_end ) - intval( $job_start );
913                    $load_color    = load_color($host_load[$host]);
914                    $period_start  = intval( $job_start - (intval( $runningtime * 0.10 ) ) );
915                    //printf("last job %s job start %s runningtime %s period start %s", $last_displayed_job, $jobstart, $job_runningtime, $period_start);
916                    $graphargs     = ($reports[$metricname]) ? "g=$metricname&" : "m=$metricname&";
917                    $graphargs    .= "z=overview-medium&c=$cluster_url&r=$range&h=$host_url&l=$load_color&v=".$val['VAL']."&job_start=$job_start&vl=".$val['UNITS'];
918                    $host_link     = "?j_view=overview-host&c=$cluster_url&r=$range&h=$host_url&job_start=$jobstart";
919
920                    if( $range == 'job' )
921                    {
922                        $graphargs     .= "&period_start=$period_start&period_stop=$period_end";
923                        $host_link     .= "&period_start=$period_start&period_stop=$period_end";
924                    }
925                    else
926                    {
927                        $graphargs     .= "&st=$period_end";
928                        $host_link     .= "&st=$period_end";
929                    }
930                    if( $max > 0 )
931                    {
932                        $graphargs    .= "&x=$max&n=$min";
933                    }
934                }
935                if ($textval)
936                {
937                    $cell    = "<td class=$class>".  "<b><a href=$host_link>$host</a></b><br>".  "<i>$metricname:</i> <b>$textval</b></td>";
938                } else {
939                    $cell    = "<A HREF=\"$host_link\">" . "<IMG SRC=\"./graph.php?$graphargs\" " . "ALT=\"$host\" BORDER=0></A>";
940                }
941
942                $metric_loop["metric_image"] = $cell;
943
944                //if(! ($i++ % $hostcols) )
945                //{
946                //     $metric_loop["br"] = "</tr><tr>";
947                //}
948                $sorted_list[] = $metric_loop;
949            }
950            $tpl_data["sorted_list"]= $sorted_list ;
951        }
952    }
953    $dwoo->output($tpl, $tpl_data);
954}
955
956?>
Note: See TracBrowser for help on using the repository browser.