forked from ganglia/ganglia-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
get_ganglia.php
37 lines (33 loc) · 1.13 KB
/
get_ganglia.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
<?php
#
# Retrieves and parses the XML output from gmond. Results stored
# in global variables: $clusters, $hosts, $hosts_down, $metrics.
# Assumes you have already called get_context.php.
#
if (! Gmetad($conf['ganglia_ip'], $conf['ganglia_port']) )
{
print "<H4>There was an error collecting ganglia data ".
"(${conf['ganglia_ip']}:${conf['ganglia_port']}): $error</H4>\n";
exit;
}
# If we have no child data sources, assume something is wrong.
if (!count($grid) and !count($cluster))
{
print "<H4>Ganglia cannot find a data source. Is gmond running?</H4>";
exit;
}
# If we only have one cluster source, suppress MetaCluster output.
if (count($grid) <= 2 and $context=="meta")
{
# Lets look for one cluster (the other is our grid).
foreach($grid as $source)
if (isset($source['CLUSTER']) and $source['CLUSTER'])
{
$standalone = 1;
$context = "cluster";
# Need to refresh data with new context.
Gmetad($conf['ganglia_ip'], $conf['ganglia_port']);
$clustername = $source['NAME'];
}
}
?>