diff --git a/html/includes/graphs/device/routeros_pppoe_sessions.inc.php b/html/includes/graphs/device/routeros_pppoe_sessions.inc.php new file mode 100644 index 0000000000..f57efa6c1f --- /dev/null +++ b/html/includes/graphs/device/routeros_pppoe_sessions.inc.php @@ -0,0 +1,19 @@ +addDataset('pppoe_sessions', 'GAUGE', 0); + + $fields = array( + 'pppoe_sessions' => $pppoe_sessions, + ); + + $tags = compact('rrd_def'); + data_update($device, 'routeros_pppoe_sessions', $tags, $fields); + $graphs['routeros_pppoe_sessions'] = true; +} + +unset($pppoe_sessions);