1<?php
2
3/**
4 * Observium
5 *
6 *   This file is part of Observium.
7 *
8 * @package    observium
9 * @subpackage graphs
10 * @copyright  (C) 2006-2013 Adam Armstrong, (C) 2013-2019 Observium Limited
11 *
12 */
13
14$rrdfile = get_rrd_path($device, "wifi-radio-". $radio['serial'] . '-' . $radio['radio_number'].".rrd");
15
16$rrd_list[0]['filename'] = $rrdfile;
17$rrd_list[0]['descr'] = "Refused connections";
18$rrd_list[0]['ds'] = "RefusedConnectionCo";
19
20$unit_text = "connections";
21
22$units='';
23$total_units='';
24$colours='mixed';
25
26$scale_min = "0";
27
28$nototal = 1;
29
30if ($rrd_list)
31{
32  include($config['html_dir']."/includes/graphs/generic_multi_line.inc.php");
33}
34
35?>
36