diff options
Diffstat (limited to 'plugin/snmp.php')
-rw-r--r-- | plugin/snmp.php | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/plugin/snmp.php b/plugin/snmp.php deleted file mode 100644 index 4fbebbb..0000000 --- a/plugin/snmp.php +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | # Collectd snmp plugin | ||
4 | |||
5 | require_once 'conf/common.inc.php'; | ||
6 | |||
7 | |||
8 | switch(GET('t')) { | ||
9 | case 'if_octets': | ||
10 | require_once 'type/GenericIO.class.php'; | ||
11 | $obj = new Type_GenericIO($CONFIG, $_GET); | ||
12 | $obj->data_sources = array('rx', 'tx'); | ||
13 | $obj->legend = array( | ||
14 | 'rx' => 'Receive', | ||
15 | 'tx' => 'Transmit', | ||
16 | ); | ||
17 | $obj->colors = array( | ||
18 | 'rx' => '0000ff', | ||
19 | 'tx' => '00b000', | ||
20 | ); | ||
21 | $obj->rrd_title = sprintf('Interface Traffic (%s)', $obj->args['tinstance']); | ||
22 | $obj->rrd_vertical = sprintf('%s per second', ucfirst($CONFIG['network_datasize'])); | ||
23 | $obj->scale = $CONFIG['network_datasize'] == 'bits' ? 8 : 1; | ||
24 | break; | ||
25 | default: | ||
26 | require_once 'type/Default.class.php'; | ||
27 | $obj = new Type_Default($CONFIG, $_GET); | ||
28 | $obj->rrd_title = sprintf('SNMP: %s (%s)', $obj->args['type'], $obj->args['tinstance']); | ||
29 | break; | ||
30 | } | ||
31 | |||
32 | $obj->rrd_format = '%5.1lf%s'; | ||
33 | |||
34 | $obj->rrd_graph(); | ||
35 | |||