mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* 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
17 lines
258 B
PHP
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';
|