This repository has been archived by the owner on May 8, 2019. It is now read-only.
forked from mattiasgeniar/MoZBX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hostitems.php
executable file
·60 lines (51 loc) · 2.34 KB
/
hostitems.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
<?php
// First list: short version, all hosts listed
if (is_array($arrZabbixItems["hostgroups"]) && count($arrZabbixItems["hostgroups"]) > 0) {
foreach ($arrZabbixItems["hostgroups"] as $hostgroupid => $hostgroup) {
echo "<ul id=\"hostgroup_". $hostgroupid ."\" title=\"". $hostgroup["group"]["name"] ."\">";
if (key_exists("hosts", $hostgroup) && is_array($hostgroup["hosts"]) && count($hostgroup["hosts"]) > 0) {
$hosts = $hostgroup["hosts"];
foreach ($hosts as $hostid => $host) {
echo "<li><a href=\"#host_detail_". $hostid ."\">". $host["host"]["host"] ."</a></li>";
}
}
echo "</ul>";
}
}
// Second list: detail view of each host
if (is_array($arrZabbixItems["hostgroups"]) && count($arrZabbixItems["hostgroups"]) > 0) {
foreach ($arrZabbixItems["hostgroups"] as $hostgroupid => $hostgroup) {
if (key_exists("hosts", $hostgroup) && is_array($hostgroup["hosts"]) && count($hostgroup["hosts"]) > 0) {
$hosts = $hostgroup["hosts"];
foreach ($hosts as $hostid => $host) {
$host_object = $host["host"];
$trigger = key_exists("triggers", $host) && is_array($host["triggers"]) ? $host["triggers"] : array();;
//print_r($host_object);
// Start our detailed list
echo "<ul id=\"host_detail_". $hostid ."\" title=\"". $host_object["host"] ."\">";
echo "<li>General info</li>";
// Give a small overview of this host
echo "<ul id=\"host_detail_". $hostid ."_summary\">";
echo " <li>DNS: ". $host_object["dns"] ."</li>";
echo " <li>IP: ". $host_object["ip"] ."</li>";
echo " <li>Availability: ". $zabbix->getAvailability($host_object["available"]) ."</li>";
if ($host_object["available"] != 1)
echo "<li>Error: ". $host_object["error"] ."</li>";
echo "</ul>";
// Show possible graphs
echo "<li><a href=\"host_detail_". $hostid ."_graphs\">Graphs</a></li>";
if (key_exists("graphs", $host) && is_array($host["graphs"]) && count($host["graphs"]) > 0) {
echo "<ul id=\"host_detail_". $hostid ."_graphs\">";
foreach ($host["graphs"] as $graphid => $graph) {
echo " <li>". $graph["name"] ."</li>";
}
echo "</ul>";
} else {
echo "<li>No graphs available</li>";
}
echo "</ul>";
}
}
}
}
?>