mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 16:04:35 +02:00
Initial Import
git-svn-id: http://www.observium.org/svn/observer/trunk@2 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@@ -0,0 +1,112 @@
|
||||
<?php
|
||||
|
||||
|
||||
$sql = mysql_query("SELECT * FROM `devices` WHERE `uptime` > '0' AND `uptime` < '86400'");
|
||||
while($device = mysql_fetch_array($sql)){
|
||||
$rebooted[] = "$device[id]";
|
||||
}
|
||||
?>
|
||||
|
||||
<table border=0 cellpadding=15 cellspacing=10 width=100%>
|
||||
<tr>
|
||||
<td bgcolor=#e5e5e5 width=50% valign=top>
|
||||
<div class=graphhead>Nodes with Outages</div>
|
||||
<table width=100% border=0><tr><td></td><td width=35 align=center><div class=tablehead>Host</div></td><td align=center width=35><div class=tablehead>Int</div></td><td align=center width=35><div class=tablehead>Srv</div></tr>
|
||||
<?php
|
||||
|
||||
$nodes = array();
|
||||
|
||||
$sql = mysql_query("SELECT * FROM `devices` WHERE `status` = '0'");
|
||||
while($device = mysql_fetch_array($sql)){
|
||||
unset($already);
|
||||
$i = 0;
|
||||
while ($i <= count($nodes)) {
|
||||
$thisnode = "$device[id]";
|
||||
if ($nodes[$i] == $thisnode) {
|
||||
$already = "yes";
|
||||
}
|
||||
$i++;
|
||||
}
|
||||
if(!$already) { $nodes[] = "$device[id]"; }
|
||||
}
|
||||
|
||||
$sql = mysql_query("SELECT D.id as `id` FROM `interfaces` AS I, `devices` AS D WHERE I.host = D.id AND up = 'down' AND up_admin = 'up'");
|
||||
while($device = mysql_fetch_array($sql)){
|
||||
unset($already);
|
||||
$i = 0;
|
||||
while ($i <= count($nodes)) {
|
||||
$thisnode = "$device[id]";
|
||||
if ($nodes[$i] == $thisnode) {
|
||||
$already = "yes";
|
||||
}
|
||||
$i++;
|
||||
}
|
||||
if(!$already) { $nodes[] = "$device[id]"; }
|
||||
}
|
||||
|
||||
$sql = mysql_query("SELECT D.id as `id` FROM `services` AS S, `devices` AS D WHERE S.service_host = D.id AND service_status = 'down'");
|
||||
while($device = mysql_fetch_array($sql)){
|
||||
unset($already);
|
||||
$i = 0;
|
||||
while ($i <= count($nodes)) {
|
||||
$thisnode = "$device[id]";
|
||||
if ($nodes[$i] == $thisnode) {
|
||||
$already = "yes";
|
||||
}
|
||||
$i++;
|
||||
}
|
||||
if(!$already) { $nodes[] = "$device[id]"; }
|
||||
}
|
||||
|
||||
foreach($nodes as $node) {
|
||||
|
||||
unset($srvpop);
|
||||
|
||||
$host = gethostbyid($node);
|
||||
|
||||
$ints = mysql_result(mysql_query("SELECT count(id) FROM `interfaces` WHERE `up` = 'down' AND `up_admin` = 'up' AND `host` = '$node'"),0);
|
||||
$services = mysql_result(mysql_query("SELECT count(service_id) FROM `services` WHERE `service_status` = '0' AND `service_host` = '$node'"),0);
|
||||
|
||||
$intlist = array();
|
||||
$sql = mysql_query("SELECT `if`, `name` FROM interfaces WHERE `up` = 'down' AND `up_admin` = 'up' AND `host` = '$node'");
|
||||
while($int = mysql_fetch_row($sql)) { $intlist[] = "<b>$int[0]</b> - $int[1]"; }
|
||||
foreach ($intlist as $intname) { $intpop .= "$br $intname"; $br = "<br />"; }
|
||||
unset($br);
|
||||
if($intpop) {$intpop = "onmouseover=\"return overlib('$intpop', WIDTH, 350);\" onmouseout=\"return nd();\""; }
|
||||
|
||||
$srvlist = array();
|
||||
$sql = mysql_query("SELECT `service_type`, `service_message` FROM services WHERE `service_status` = '0' AND `service_host` = '$node'");
|
||||
while($srv = mysql_fetch_row($sql)) { $srvlist[] = "<b>$srv[0]</b> - " . trim($srv[1]); }
|
||||
foreach ($srvlist as $srvname) { $srvpop .= "$br " . truncate($srvname, 100); $br = "<br />"; }
|
||||
unset($br);
|
||||
if($srvpop) {
|
||||
$srvpop = "onmouseover=\"return overlib('$srvpop', WIDTH, 350);\" onmouseout=\"return nd();\"";
|
||||
$srvpop = str_replace("\n", ". ", $srvpop);
|
||||
}
|
||||
|
||||
$mouseover = "onmouseover=\"return overlib('<img src=\'graph.php?host=$node&from=$week&to=$now&width=400&height=120&type=cpu\'>');\"
|
||||
onmouseout=\"return nd();\"";
|
||||
|
||||
if(hoststatus($node)) { $statimg = "<img align=absmiddle src=images/16/lightbulb.png alt='Host Up'>"; }
|
||||
else { $statimg = "<img align=absmiddle src=images/16/lightbulb_off.png alt='Host Down'>";}
|
||||
if($bg == "#ffffff") { $bg = "#e5e5e5"; } else { $bg="#ffffff"; }
|
||||
echo("<tr bgcolor=$bg>
|
||||
<td><a href='?page=device&id=$node' $mouseover>$host</a></td>
|
||||
<td align=center>$statimg</td>
|
||||
<td align=center><a $intpop>$ints</a></td>
|
||||
<td align=center><a $srvpop>$services</a></td></tr>");
|
||||
|
||||
unset($int, $ints, $intlist, $intpop, $srv, $srvlist, $srvname, $srvpop);
|
||||
|
||||
}
|
||||
|
||||
echo("</table>");
|
||||
|
||||
?>
|
||||
</td>
|
||||
<td bgcolor=#e5e5e5 width=50% valign=top>
|
||||
<div class=graphhead>Network Infrastructure Diagram</div>
|
||||
<img src="network.png" alt="Auto-generated network diagram">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
Reference in New Issue
Block a user