File: alteon_failures_sessions.inc.php

package info (click to toggle)
jffnms 0.8.3dfsg.1-2.1etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 4,928 kB
  • ctags: 5,050
  • sloc: php: 19,981; sh: 266; makefile: 91; perl: 52
file content (24 lines) | stat: -rw-r--r-- 705 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/* This file is part of JFFNMS
 * Copyright (C) <2005> Craig Small <csmall@enc.com.au>
 * This program is licensed under the GNU GPL, full terms in the LICENSE file
 */

function graph_alteon_failures_sessions($data)
{
	$opts_DEF = rrdtool_get_def($data,array('failures','total_sessions'));

	$opts_GRAPH = array(
		"CDEF:fail_pct=failures,100,*,total_sessions,/",
		"LINE3:fail_pct#FF0000:'Failures\:   '",
		"GPRINT:fail_pct:MAX:'Max\: %8.4lf %s%%'",
		"GPRINT:fail_pct:AVERAGE:'Average\: %8.4lf %s%%'",
		"GPRINT:fail_pct:LAST:'Last\: %8.4lf %s%%\\n'",
	);

	$opts_header[] = "--vertical-label='Failures by Sessions Rate'";

	return array ($opts_header, @array_merge($opts_DEF,$opts_GRAPH));
}