Files
librenms-librenms/html/includes/graphs/device/pf_states.inc.php
Martin Nilsson 2bd88a2f2b device: Added support for OpenBSD PF states (#8211)
* First basic support for graphing openbsd pf states

* Now openbsd pf state graphing actually works

* First basic support for graphing openbsd pf states

* Now openbsd pf state graphing actually works

* Wrong graph types for searches, removals and inserts

* Removed unused file "openbsd_pfstates.inc.php"

* Remove openbsd from filenames, make it more generic
2018-02-08 20:54:29 +00:00

17 lines
258 B
PHP

<?php
$rrd_filename = rrd_name($device['hostname'], 'pf_states');
$ds = 'states';
$colour_area = '9999cc';
$colour_line = '0000cc';
$colour_area_max = '9999cc';
$graph_max = 1;
$unit_text = 'States';
require 'includes/graphs/generic_simplex.inc.php';