source: branches/1.1/web/addons/job_monarch/overview.php @ 934

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

job_monarch/templates/overview.tpl:

  • renamed nodes field to: hosts

job_monarch/overview.php:

  • added sortby hosts
  • closes #169
  • Property svn:keywords set to Id
File size: 28.0 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 934 2013-08-06 13:44:46Z 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    if( isset( $jobs ) && count( $jobs ) > 0 ) 
214    {
215        foreach( $jobs as $jobid => $jobattrs ) 
216        {
217                $state     = $jobattrs['status'];
218                $owner     = $jobattrs['owner'];
219                $queue     = $jobattrs['queue'];
220                $name      = $jobattrs['name'];
221                $req_cpu   = $jobattrs['requested_time'];
222                $req_memory= $jobattrs['requested_memory'];
223
224                if( $state == 'R' )
225                {
226                    $nodes = count( $jobattrs['nodes'] );
227
228                    $job_hosts = $jobattrs['nodes'][0];
229                }
230                else
231                {
232                    $nodes = $jobattrs['nodes'];
233
234                    $job_hosts = '';
235                }
236
237                $ppn         = (int) $jobattrs['ppn'] ? $jobattrs['ppn'] : 1;
238                $cpus        = $nodes * $ppn;
239                $queued_time = (int) $jobattrs['queued_timestamp'];
240                $start_time  = (int) $jobattrs['start_timestamp'];
241                $runningtime = $report_time - $start_time;
242
243                switch( $sortby ) 
244                {
245                    case "id":
246                        $sorted[$jobid] = $jobid;
247                        break;
248
249                    case "state":
250                        $sorted[$jobid] = $state;
251                        break;
252
253                    case "owner":
254                        $sorted[$jobid] = $owner;
255                        break;
256
257                    case "queue":
258                        $sorted[$jobid] = $queue;
259                        break;
260
261                    case "name":
262                        $sorted[$jobid] = $name;
263                        break;
264
265                    case "req_cpu":
266                        $sorted[$jobid] = timeToEpoch( $req_cpu );
267                        break;
268
269                    case "req_mem":
270                        $sorted[$jobid] = $req_memory;
271                        break;
272
273                    case "nodes":
274                        $sorted[$jobid] = $nodes;
275                        break;
276
277                    case "hosts":
278                        $sorted[$jobid] = $job_hosts;
279                        break;
280
281                    case "cpus":
282                        $sorted[$jobid] = $cpus;
283                        break;
284
285                    case "queued":
286                        $sorted[$jobid] = $queued_time;
287                        break;
288
289                    case "start":
290                        $sorted[$jobid] = $start_time;
291                        break;
292
293                    case "runningtime":
294                        $sorted[$jobid] = $runningtime;
295                        break;
296
297                    default:
298                        break;
299                }
300        }
301    }
302
303    if( $sortorder == "asc" )
304    {
305        asort( $sorted );
306    }
307    else if( $sortorder == "desc" )
308    {
309        arsort( $sorted );
310    }
311
312    return $sorted;
313}
314
315function makeOverview() 
316{
317    global $dwoo, $tpl, $tpl_data, $jobs, $nodes, $heartbeat, $clustername, $tpl_data;
318    global $sortorder, $sortby, $filter, $sh, $hc, $m, $range;
319    global $cluster_url, $get_metric_string, $host_url, $metrics;
320    global $start, $end, $reports, $gnodes, $default_showhosts;
321    global $COLUMN_QUEUED, $COLUMN_REQUESTED_MEMORY, $COLUMN_NODES, $hostname;
322    global $cluster, $use_fqdn, $myxml_data, $data_gatherer;
323
324    $metricname        = $m;
325    if( isset($conf['default_metric']) and ($metricname =='') )
326        $metricname = $conf['default_metric'];
327    else
328        if( isset( $m ) )
329            $metricname = $m;
330        else
331            $metricname = "load_one";
332
333    $tpl_data["sortorder"]= $sortorder;
334    $tpl_data["sortby"]= $sortby;
335
336    $sorted_jobs        = sortJobs( $jobs, $sortby, $sortorder );
337
338    $even               = 1;
339
340    $used_jobs          = 0;
341    $used_cpus          = 0;
342    $used_nodes         = 0;
343
344    $queued_jobs        = 0;
345    $queued_nodes       = 0;
346    $queued_cpus        = 0;
347
348    $total_nodes        = 0;
349    $total_cpus         = 0;
350    $total_jobs         = 0;
351
352    $all_used_nodes     = array();
353    $total_used_nodes   = array();
354
355    $running_name_nodes = array();
356
357    $running_nodes      = 0;
358    $running_jobs       = 0;
359    $running_cpus       = 0;
360
361    $avail_nodes        = count( $gnodes );
362    $avail_cpus         = cluster_sum("cpu_num", $metrics);
363
364    $view_cpus          = 0;
365    $view_jobs          = 0;
366    $view_nodes         = 0;
367
368    $all_nodes          = 0;
369    $all_jobs           = 0;
370    $all_cpus           = 0;
371
372    $view_name_nodes    = array();
373
374    // Is the "requested memory" column enabled in the config
375    //
376    if( $COLUMN_REQUESTED_MEMORY ) 
377    {
378        $tpl_data[ "column_header_req_mem"]= "yes";
379    }
380
381    // Is the "nodes hostnames" column enabled in the config
382    //
383    if( $COLUMN_NODES ) 
384    {
385        $tpl_data[ "column_header_nodes"]= "yes";
386    }
387
388    // Is the "queued time" column enabled in the config
389    //
390    if( $COLUMN_QUEUED ) 
391    {
392        $tpl_data[ "column_header_queued"]= "yes" ;
393    }
394
395    $last_displayed_job = null;
396
397    $rjqj_host = null;
398
399    $na_nodes  = 0;
400    $na_cpus   = 0;
401
402    foreach( $metrics as $bhost => $bmetric )
403    {
404        foreach( $bmetric as $mname => $mval )
405        {
406            if( ( $mname == 'zplugin_monarch_rj' ) || ($mname == 'zplugin_monarch_qj') )
407            {
408                $rjqj_host = $bhost;
409            }
410        }
411    }
412
413    foreach( $gnodes as $ghost => $gnode )
414    {
415        if( $gnode->isDown() || $gnode->isOffline() )
416        {
417            $na_nodes += 1;
418            $na_cpus  += $metrics[$ghost]['cpu_num']['VAL'];
419        }
420    }
421
422    $node_list = array();
423
424    foreach( $sorted_jobs as $jobid => $sortdec ) 
425    {
426        $report_time     = $jobs[$jobid]['reported'];
427
428        if( $jobs[$jobid]['status'] == 'R' )
429        {
430            $nodes = count( $jobs[$jobid]['nodes'] );
431        }
432        else if( $jobs[$jobid]['status'] == 'Q' )
433        {
434            $nodes = $jobs[$jobid]['nodes'];
435        }
436
437        $ppn  = isset( $jobs[$jobid]['ppn'] ) ? $jobs[$jobid]['ppn'] : 1;
438        $cpus = $nodes * $ppn;
439
440        if( $report_time == $heartbeat ) 
441        {
442            $display_job    = 1;
443
444            if( $jobs[$jobid]['status'] == 'R' ) 
445            {
446                foreach( $jobs[$jobid]['nodes'] as $tempnode ) 
447                {
448                    $all_used_nodes[] = $tempnode;
449                }
450            }
451
452            $used_cpus += $cpus;
453
454            if( $jobs[$jobid]['status'] == 'R' ) 
455            {
456                $running_cpus     += $cpus;
457
458                $running_jobs++;
459
460                $found_node_job    = 0;
461
462                foreach( $jobs[$jobid]['nodes'] as $tempnode ) 
463                {
464                    $running_name_nodes[] = $tempnode;
465
466                    $hostnode = $data_gatherer->makeHostname( $tempnode, $jobs[$jobid]['domain'] );
467
468                    if( isset( $hostname ) && $hostname != '' ) 
469                    {
470                        if( $hostname == $hostnode ) 
471                        {
472                            $found_node_job = 1;
473                            $display_job = 1;
474                        } 
475                        else if( !$found_node_job ) 
476                        {
477                            $display_job = 0;
478                        }
479                    }
480                }
481            }
482
483            if( $jobs[$jobid]['status'] == 'Q' ) 
484            {
485                if( isset( $hostname ) && $hostname != '' )
486                {
487                    $display_job = 0;
488                }
489
490                $queued_cpus  += $cpus;
491                $queued_nodes += $nodes;
492
493                $queued_jobs++;
494            }
495
496            foreach( $filter as $filtername=>$filtervalue ) 
497            {
498                if( $filtername == 'id' && $jobid != $filtervalue )
499                {
500                    $display_job = 0;
501                }
502                else if( $filtername == 'state' && $jobs[$jobid]['status'] != $filtervalue )
503                {
504                    $display_job = 0;
505                }
506                else if( $filtername == 'queue' && $jobs[$jobid]['queue'] != $filtervalue )
507                {
508                    $display_job = 0;
509                }
510                else if( $filtername == 'owner' && $jobs[$jobid]['owner'] != $filtervalue )
511                {
512                    $display_job = 0;
513                }
514            }
515
516
517            if( $display_job ) 
518            {
519                unset( $job_loop );
520                $job_loop = array();
521                $job_loop["clustername"] = $clustername;
522
523                $job_loop["id"] = $jobid;
524
525                $last_displayed_job     = $jobid;
526
527                $job_loop["state"] = $jobs[$jobid]['status'];
528
529                $fullstate         = '';
530
531                if( $jobs[$jobid]['status'] == 'R' ) 
532                {
533                    $fullstate     = "Running";
534                } 
535                else if( $jobs[$jobid]['status'] == 'Q' ) 
536                {
537                    $fullstate     = "Queued";
538                }
539
540                $job_loop["fullstate"] = $fullstate;
541               
542                $job_loop["owner"] = $jobs[$jobid]['owner'];
543                $job_loop["queue"] = $jobs[$jobid]['queue'];
544
545                $fulljobname         = $jobs[$jobid]['name'];
546                $shortjobname        = '';
547
548                $job_loop["fulljobname"] = $fulljobname;
549
550                $fulljobname_fields    = explode( ' ', $fulljobname );
551
552                $capjobname        = 0;
553
554                if( strlen( $fulljobname_fields[0] ) > 10 )
555                {
556                    $capjobname    = 1;
557                }
558
559                if( $capjobname ) 
560                {
561                    $job_loop[ "jobname_hint_start" ] = "yes";
562
563                    $shortjobname     = substr( $fulljobname, 0, 10 ) . '..';
564                } 
565                else 
566                {
567                    $shortjobname     = $fulljobname;
568                }
569               
570                $job_loop["name"] = $shortjobname;
571
572                if( $capjobname ) 
573                {
574                    $job_loop[ "jobname_hint_end" ] = "yes";
575                }
576
577                $domain         = $jobs[$jobid]['domain'];
578
579                $job_loop["req_cpu"] = makeTime( timeToEpoch( $jobs[$jobid]['requested_time'] ) );
580
581                if( $COLUMN_REQUESTED_MEMORY ) 
582                {
583                    $job_loop[ "column_req_mem" ] = "yes";
584                    $job_loop["req_memory"] = $jobs[$jobid]['requested_memory'];
585                }
586
587
588                if( $COLUMN_QUEUED ) 
589                {
590                    $job_loop[ "column_queued" ] = "yes";
591                    $job_loop["queued"] = makeDate( $jobs[$jobid]['queued_timestamp'] );
592                }
593                if( $COLUMN_NODES ) 
594                {
595                    $job_loop[ "column_nodes" ] = "yes";
596                    //echo "colum nodes";
597                }
598
599                $ppn       = isset( $jobs[$jobid]['ppn'] ) ? $jobs[$jobid]['ppn'] : 1;
600                $cpus      = $nodes * $ppn;
601
602                $job_loop["nodes"] = $nodes;
603                $job_loop["cpus"] = $cpus;
604
605                $start_time= (int) $jobs[$jobid]['start_timestamp'];
606                $job_start = $start_time;
607
608
609                $view_cpus += $cpus;
610
611                $view_jobs++;
612
613                if( $jobs[$jobid]['status'] == 'R' ) 
614                {
615                    $job_runningtime    = $heartbeat - $start_time;
616                    if( $rjqj_start == null ) 
617                    {
618                        $rjqj_start = intval( $start_time - (intval( $job_runningtime * 0.10 ) ) );
619                    }
620                    else if( $start_time < $rjqj_start )
621                    {
622                        $rjqj_start = intval( $start_time - (intval( $job_runningtime * 0.10 ) ) );
623                    }
624
625                    foreach( $jobs[$jobid]['nodes'] as $tempnode )
626                    {
627                        $view_name_nodes[]     = $tempnode;
628                    }
629
630                    if( $COLUMN_NODES ) 
631                    {
632                        $job_loop[ "column_nodes" ] = "yes";
633
634                        $mynodehosts         = array();
635
636                        foreach( $jobs[$jobid]['nodes'] as $shortnode ) 
637                        {
638                            $domain         = $jobs[$jobid]['domain'];
639                            $mynode         = $data_gatherer->makeHostname( $shortnode, $domain );
640                            $myhost_href    = "./?c=".$clustername."&h=".$mynode;
641                            $mynodehosts[]  = "<A HREF=\"".$myhost_href."\">".$shortnode."</A>";
642                        }
643
644                        $nodes_hostnames    = implode( " ", $mynodehosts );
645
646                        $job_loop["nodes_hostnames"] = $nodes_hostnames;
647                    }
648                } 
649                else if( $jobs[$jobid]['status'] == 'Q' ) 
650                {
651                    $view_nodes     += (int) $jobs[$jobid]['nodes'];
652                }
653
654                if( $even ) 
655                {
656                    $job_loop["nodeclass"] = "even";
657
658                    $even         = 0;
659                } 
660                else 
661                {
662                    $job_loop["nodeclass"] = "odd";
663
664                    $even         = 1;
665                }
666
667                if( $start_time ) 
668                {
669                    $runningtime        = makeTime( $report_time - $start_time );
670                    $job_runningtime    = $heartbeat - $start_time;
671
672                    $job_loop["started"] = makeDate( $start_time );
673                    $job_loop["runningtime"] = $runningtime;
674                }
675                $node_list[] = &$job_loop;
676            }
677            $tpl_data["node_list"]= &$node_list ;
678        }
679    }
680    if( intval($view_jobs) == 1 and $start_time )
681    {
682        if( $last_displayed_job != null )
683        {
684            $filter['id'] = $last_displayed_job;
685        }
686    }
687    // Running / queued amount jobs graph
688    //
689    if( $rjqj_host != null )
690    {
691        $rjqj_graphargs = "?z=overview-medium&c=$clustername&h=$rjqj_host&g=job_report&r=$range";
692        if( $range == 'job' )
693        {
694            $rjqj_end = time();
695
696            if( $rjqj_start == null ) 
697            { // probably no running jobs in this view: only queued
698                $rjqj_start = $rjqj_end - (24 * 3600); // default to 1 day
699            }
700            $rjqj_title = rawurlencode( makeTime( ($rjqj_end - $rjqj_start) ) );
701            $rjqj_graphargs .= "&period_start=$rjqj_start&period_stop=$rjqj_end&t=$rjqj_title";
702        }
703        else
704        {
705            $rjqj_graphargs .= "&st=$cluster[LOCALTIME]";
706        }
707        if( intval($view_jobs) == 1 and $start_time )
708        {
709            $job_start     = $jobs[$last_displayed_job]['start_timestamp'];
710            $rjqj_graphargs .= "&job_start=$start_time";
711        }
712
713        $rjqj_str  = "<A HREF=\"./graph.php$rjqj_graphargs\">";
714        $rjqj_str .= "<IMG BORDER=0 SRC=\"./graph.php$rjqj_graphargs\">";
715        $rjqj_str .= "</A>";
716
717        $tpl_data[ "rjqj_graph"]= $rjqj_str ;
718    }
719
720    $all_used_nodes     = array_unique( $all_used_nodes );
721    $view_name_nodes    = array_unique( $view_name_nodes );
722    $running_name_nodes = array_unique( $running_name_nodes );
723
724    $used_nodes         = count( $all_used_nodes );
725    $view_nodes        += count( $view_name_nodes );
726    $running_nodes     += count( $running_name_nodes );
727
728    $total_nodes        = $queued_nodes + $running_nodes;
729    $total_cpus         = $queued_cpus + $running_cpus;
730    $total_jobs         = $queued_jobs + $running_jobs;
731
732    $free_nodes         = $avail_nodes - $running_nodes - $na_nodes;
733    $free_nodes         = ( $free_nodes >= 0 ) ? $free_nodes : 0;
734    $free_cpus          = $avail_cpus - $running_cpus - $na_cpus;
735    $free_cpus          = ( $free_cpus >= 0 ) ? $free_cpus : 0;
736
737    $tpl_data[ "avail_nodes"]= $avail_nodes ;
738    $tpl_data[ "avail_cpus"]= $avail_cpus ;
739
740    $tpl_data[ "queued_nodes"]= $queued_nodes ;
741    $tpl_data[ "queued_jobs"]= $queued_jobs ;
742    $tpl_data[ "queued_cpus"]= $queued_cpus ;
743
744    // Only display "Unavailable" in count overview there are any
745    //
746    if( $na_nodes > 0 )
747    {
748        $tpl_data[ "show_na_nodes"]= "yes";
749
750        $tpl_data[ "na_nodes"]= $na_nodes ;
751        $tpl_data[ "na_cpus"]= $na_cpus ;
752    }
753
754    $tpl_data[ "total_nodes"]= $total_nodes ;
755    $tpl_data[ "total_jobs"]= $total_jobs ;
756    $tpl_data[ "total_cpus"]= $total_cpus ;
757
758    $tpl_data[ "running_nodes"]= $running_nodes ;
759    $tpl_data[ "running_jobs"]= $running_jobs ;
760    $tpl_data[ "running_cpus"]= $running_cpus ;
761
762    $tpl_data[ "used_nodes"]= $used_nodes ;
763    $tpl_data[ "used_jobs"]= $used_jobs ;
764    $tpl_data[ "used_cpus"]= $used_cpus ;
765
766    $tpl_data[ "free_nodes"]= $free_nodes ;
767    $tpl_data[ "free_cpus"]= $free_cpus ;
768
769    $tpl_data[ "view_nodes"]= $view_nodes ;
770    $tpl_data[ "view_jobs"]= $view_jobs ;
771    $tpl_data[ "view_cpus"]= $view_cpus ;
772
773    $tpl_data[ "report_time"]= makeDate( $heartbeat);
774
775
776    global $longtitle, $title;
777
778    $longtitle = "Batch Report :: Powered by Job Monarch!";
779    $title = "Batch Report";
780
781    makeHeader( 'overview', $title, $longtitle );
782
783    setupFilterSettings();
784
785    if( intval($view_jobs) == 1 and $start_time )
786    {
787        $tpl_data[ "showhosts"]= "yes" ;
788
789        $showhosts     = isset($sh) ? $sh : $default_showhosts;
790
791        $tpl_data[ "checked$showhosts"]= "checked" ;
792
793        $sorted_list = array();
794
795        if( $showhosts )
796        {
797            if( !isset( $start ) )
798            {
799                $start    ="jobstart";
800            }
801            if( !isset( $stop ) )
802            {
803                $stop    ="now";
804            }
805
806            $sorted_hosts = array();
807            $hosts_up     = $jobs[$filter['id']]['nodes'];
808
809            $r            = intval($job_runningtime * 1.2);
810
811            $jobrange     = -$r ;
812            $jobstart     = $start_time;
813
814            if ( $reports[$metricname] )
815            {
816                $metricval     = "g";
817            }
818            else
819            {
820                $metricval    = "m";
821            }
822               
823            foreach ( $hosts_up as $host )
824            {
825                $host             = $data_gatherer->makeHostname( $host, $domain );
826
827                $cpus             = 0;
828
829                $cpus             = $metrics[$host]["cpu_num"]["VAL"];
830
831                if( $cpus == 0 )
832                {
833                    $cpus        = 1;
834                }
835
836                $load_one         = $metrics[$host]["load_one"]['VAL'];
837                $load             = ((float) $load_one) / $cpus;
838                $host_load[$host] = $load;
839
840                $percent_hosts[load_color($load)] ++;
841
842                if ($metricname=="load_one")
843                {
844                    $sorted_hosts[$host]     = $load;
845                }
846                else
847                {
848                    $sorted_hosts[$host]     = $metrics[$host][$metricname]['VAL'];
849                }
850            }
851
852            switch ( $sort )
853            {
854                case "descending":
855                    arsort( $sorted_hosts );
856                    break;
857
858                case "by hostname":
859                    ksort( $sorted_hosts );
860                    break;
861
862                case "ascending":
863                    asort( $sorted_hosts );
864                    break;
865
866                default:
867                    break;
868            }
869
870            // First pass to find the max value in all graphs for this
871            // metric. The $start,$end variables comes from get_context.php,
872            // included in index.php.
873            //
874            list($min, $max) = find_limits($sorted_hosts, $metricname);
875
876            // Second pass to output the graphs or metrics.
877            $i = 1;
878
879            $metric_loop = array();
880            foreach ( $sorted_hosts as $host=>$value  )
881            {
882                $host_url    = rawurlencode( $host );
883                $cluster_url = rawurlencode( $clustername );
884
885                $textval     = "";
886
887                $val         = $metrics[$host][$metricname];
888                $class       = "metric";
889
890                if ( $val["TYPE"] == "timestamp" || $always_timestamp[$metricname] )
891                {
892                    $textval     = date( "r", $val["VAL"] );
893                }
894                elseif ( $val["TYPE"] == "string" || $val["SLOPE"] == "zero" || $always_constant[$metricname] || ($max_graphs > 0 and $i > $max_graphs ))
895                {
896                    $textval     = $val["VAL"] . " " . $val["UNITS"];
897                }
898                else
899                {
900                    $job_start     = $jobs[$last_displayed_job]['start_timestamp'];
901                    $period_end    = $cluster['LOCALTIME'];
902                    $runningtime   = intval( $period_end ) - intval( $job_start );
903                    $load_color    = load_color($host_load[$host]);
904                    $period_start  = intval( $job_start - (intval( $runningtime * 0.10 ) ) );
905                    //printf("last job %s job start %s runningtime %s period start %s", $last_displayed_job, $jobstart, $job_runningtime, $period_start);
906                    $graphargs     = ($reports[$metricname]) ? "g=$metricname&" : "m=$metricname&";
907                    $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'];
908                    $host_link     = "?j_view=overview-host&c=$cluster_url&r=$range&h=$host_url&job_start=$jobstart";
909
910                    if( $range == 'job' )
911                    {
912                        $graphargs     .= "&period_start=$period_start&period_stop=$period_end";
913                        $host_link     .= "&period_start=$period_start&period_stop=$period_end";
914                    }
915                    else
916                    {
917                        $graphargs     .= "&st=$period_end";
918                        $host_link     .= "&st=$period_end";
919                    }
920                    if( $max > 0 )
921                    {
922                        $graphargs    .= "&x=$max&n=$min";
923                    }
924                }
925                if ($textval)
926                {
927                    $cell    = "<td class=$class>".  "<b><a href=$host_link>$host</a></b><br>".  "<i>$metricname:</i> <b>$textval</b></td>";
928                } else {
929                    $cell    = "<A HREF=\"$host_link\">" . "<IMG SRC=\"./graph.php?$graphargs\" " . "ALT=\"$host\" BORDER=0></A>";
930                }
931
932                $metric_loop["metric_image"] = $cell;
933
934                //if(! ($i++ % $hostcols) )
935                //{
936                //     $metric_loop["br"] = "</tr><tr>";
937                //}
938                $sorted_list[] = $metric_loop;
939            }
940            $tpl_data["sorted_list"]= $sorted_list ;
941        }
942    }
943    $dwoo->output($tpl, $tpl_data);
944}
945
946?>
Note: See TracBrowser for help on using the repository browser.