forked from ganglia/ganglia-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
show_node.php
145 lines (125 loc) · 4.89 KB
/
show_node.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?php
# Shows information on a particular node, specified by
# node host name. Used in concert with the physical_view page.
#
# Although this page repeats some information from
# host_view, it had the concept of Constant Metrics before
# the SLOPE=zero attribute. It also uses style sheets for clean
# looks. In the future, it may display process information for
# the node as well.
#
# Originally by Federico Sacerdoti <fds@sdsc.edu>
#
# Host is specified in get_context.php.
if (empty($hostname)) {
print "<h1>Missing a Node Name</h1>";
return;
}
$tpl = new Dwoo_Template_File( template("show_node.tpl") );
$data = new Dwoo_Data();
$data->assign("extra", template("node_extra.tpl"));
$up = $hosts_up ? 1 : 0;
$class = ($up) ? "even" : "down";
$data->assign("class",$class);
$data->assign("name", $hostname);
# $metrics is an array of [Metrics][Hostname][NAME|VAL|TYPE|UNITS|SOURCE].
# Find the host's physical location in the cluster.
$hostattrs = ($up) ? $hosts_up : $hosts_down;
list($rack,$rank,$plane) = findlocation($hostattrs);
$location = ($rack<0) ? "Unknown" : "Rack $rack, Rank $rank, Plane $plane.";
$data->assign("location",$location);
if(isset($hostattrs['ip'])) {
$data->assign("ip", $hostattrs['ip']);
} else {
$data->assign("ip", "");
}
# The metrics we need for this node.
$mem_total_gb = $metrics['mem_total']['VAL']/1048576;
$load_one=$metrics['load_one']['VAL'];
$load_five=$metrics['load_five']['VAL'];
$load_fifteen=$metrics['load_fifteen']['VAL'];
$cpu_user=$metrics['cpu_user']['VAL'];
$cpu_system=$metrics['cpu_system']['VAL'];
$cpu_idle=$metrics['cpu_idle']['VAL'];
$cpu_num=$metrics['cpu_num']['VAL'];
# Cannot be zero, since we use it as a divisor.
if (!$cpu_num) { $cpu_num=1; }
$cpu_speed=round($metrics['cpu_speed']['VAL']/1000, 2);
$disk_total=$metrics['disk_total']['VAL'];
$disk_free=$metrics['disk_free']['VAL'];
$disk_use = $disk_total - $disk_free;
$disk_units=$metrics['disk_total']['UNITS'];
$part_max_used=$metrics['part_max_used']['VAL'];
# Disk metrics are newer (as of 2.5.0), so we check more carefully.
$disk = ($disk_total) ? "Using $disk_use of $disk_total $disk_units" : "Unknown";
$part_max = ($part_max_used) ? "$part_max_used% used." : "Unknown";
# Compute time of last heartbeat from node's dendrite.
$clustertime=$cluster['LOCALTIME'];
$data->assign("clustertime", strftime("%c", $clustertime));
$heartbeat=$hostattrs['REPORTED'];
$age = $clustertime - $heartbeat;
if ($age > 3600) {
$data->assign("age", uptime($age));
} else {
$s = ($age > 1) ? "s" : "";
$data->assign("age", "$age second$s");
}
# The these hardware units should be more flexible.
$s = ($cpu_num>1) ? "s" : "";
$data->assign("s",$s);
$data->assign("cpu", sprintf("%s x %.2f GHz", $cpu_num, $cpu_speed));
$data->assign("mem", sprintf("%.2f GB", $mem_total_gb));
$data->assign("disk","$disk");
$data->assign("part_max_used", "$part_max");
$data->assign("load_one",$load_one);
$data->assign("load_five",$load_five);
$data->assign("load_fifteen",$load_fifteen);
$data->assign("cpu_user",$cpu_user);
$data->assign("cpu_system",$cpu_system);
$data->assign("cpu_idle",$cpu_idle);
# Choose a load color from a unix load value.
function loadindex($load) {
global $cpu_num;
# Highest color comes at a load of loadscalar*10.
$loadscalar=0.2;
$level=intval($load/($loadscalar*$cpu_num))+1;
# Trim level to a max of 10.
$level = $level > 10 ? "L10" : "L$level";
return $level;
}
# Choose a load color from a 0-100 percentage.
function percentindex($val) {
$level = intval($val/10 + 1);
$level = $level>10 ? "L10" : "L$level";
return $level;
}
$data->assign("load1",loadindex($load_one));
$data->assign("load5",loadindex($load_five));
$data->assign("load15",loadindex($load_fifteen));
$data->assign("user",percentindex($cpu_user));
$data->assign("sys",percentindex($cpu_system));
$data->assign("idle",percentindex(100 - $cpu_idle));
# Software metrics
$os_name=$metrics['os_name']['VAL'];
$os_release=$metrics['os_release']['VAL'];
$machine_type=$metrics['machine_type']['VAL'];
$boottime=$metrics['boottime']['VAL'];
$booted=date("F j, Y, g:i a", $boottime);
$uptime=uptime($cluster['LOCALTIME'] - $metrics['boottime']['VAL']);
# Turning into MBs. A MB is 1024 bytes.
$swap_free=$metrics['swap_free']['VAL']/1024.0;
$swap_total=sprintf("%.1f", $metrics['swap_total']['VAL']/1024.0);
$swap_used=sprintf("%.1f", $swap_total - $swap_free);
$data->assign("OS","$os_name $os_release ($machine_type)");
$data->assign("booted","$booted");
$data->assign("uptime", $up ? $uptime : "[down]");
$data->assign("swap","Using $swap_used of $swap_total MB swap.");
# For the back link.
$cluster_url=rawurlencode($clustername);
$data->assign("physical_view","./?p=$physical&c=$cluster_url");
# For the full host view link.
$data->assign("full_host_view","./?c=$cluster_url&h=$hostname&$get_metric_string");
# For the reload link.
$data->assign("self","./?c=$cluster_url&h=$hostname&p=$physical");
$dwoo->output($tpl, $data);
?>