Files
librenms-librenms/includes/html/graphs/application/suricata_extract_sub_2xx.inc.php
Zane C. Bowers-Hadley 00cf300d1a add Suricata Extract submission stats app (#15105)
* add suricata_extract

* convert from dervive to gauge and use delta

* add suricata_extract to includes/html/pages/apps.inc.php

* graph cleanup

* add sub_size

* add sub_size graph

* add docs for suricata extract

* add tests for suricata_extract

* add rules for suricata extract

* minor test tweaks
2023-06-25 20:48:26 +02:00

13 lines
302 B
PHP

<?php
$ds = 'sub_2xx';
$unit_text = 'HTML Status';
$descr = '2xx';
$filename = Rrd::name($device['hostname'], ['app', 'suricata_extract', $app->app_id]);
if (! Rrd::checkRrdExists($filename)) {
d_echo('RRD "' . $filename . '" not found');
}
require 'includes/html/graphs/generic_stats.inc.php';