mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
fix service graphs, add CISCO-PRODUCT-MIB
git-svn-id: http://www.observium.org/svn/observer/trunk@1655 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
25
html/includes/graphs/service/availability.inc.php
Executable file
25
html/includes/graphs/service/availability.inc.php
Executable file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
$scale_min = "0";
|
||||
$scale_max = "1";
|
||||
|
||||
include("includes/graphs/common.inc.php");
|
||||
|
||||
$service_text = substr(str_pad($service['service_type'], 28),0,28);
|
||||
|
||||
$rrd_options .= " COMMENT:' Cur Avail\\n'";
|
||||
$rrd_options .= " DEF:status=$rrd_filename:status:AVERAGE";
|
||||
$rrd_options .= " CDEF:percent=status,100,*";
|
||||
$rrd_options .= " CDEF:down=status,1,LT,status,UNKN,IF";
|
||||
$rrd_options .= " CDEF:percentdown=down,100,*";
|
||||
$rrd_options .= " AREA:percent#CCFFCC";
|
||||
$rrd_options .= " AREA:percentdown#FFCCCC";
|
||||
$rrd_options .= " LINE1.5:percent#009900:'" . $service_text . "'"; # Ugly hack :(
|
||||
$rrd_options .= " LINE1.5:percentdown#cc0000";
|
||||
$rrd_options .= " GPRINT:status:LAST:%3.0lf";
|
||||
$rrd_options .= " GPRINT:percent:AVERAGE:%3.5lf%%\\\\l";
|
||||
|
||||
|
||||
|
||||
|
||||
?>
|
Reference in New Issue
Block a user