mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* feature: Allow customisation of rrd step/heartbeat when creating new rrd files * revert defaults * added docs + webui config option * Move RrdDefinition to an Object to make them easier to create and remove the possibility of typos. * Fix style/lint issues and missing use statements * 3 more missing use statements * updated doc + moved schema file
59 lines
2.3 KiB
PHP
59 lines
2.3 KiB
PHP
<?php
|
|
/*
|
|
* Copyright (C) 2015 Daniel Preussker <f0o@devilcode.org>
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
* TinyDNS Statistics
|
|
* @author Daniel Preussker <f0o@devilcode.org>
|
|
* @copyright 2015 f0o, LibreNMS
|
|
* @license GPL
|
|
* @package LibreNMS
|
|
* @subpackage Polling
|
|
*/
|
|
|
|
use LibreNMS\RRD\RrdDefinition;
|
|
|
|
$name = 'tinydns';
|
|
$app_id = $app['app_id'];
|
|
if (!empty($agent_data['app'][$name]) && $app_id > 0) {
|
|
echo ' tinydns';
|
|
$rrd_name = array('app', $name, $app_id);
|
|
$rrd_def = RrdDefinition::make()
|
|
->addDataset('a', 'COUNTER', 0, 125000000000)
|
|
->addDataset('ns', 'COUNTER', 0, 125000000000)
|
|
->addDataset('cname', 'COUNTER', 0, 125000000000)
|
|
->addDataset('soa', 'COUNTER', 0, 125000000000)
|
|
->addDataset('ptr', 'COUNTER', 0, 125000000000)
|
|
->addDataset('hinfo', 'COUNTER', 0, 125000000000)
|
|
->addDataset('mx', 'COUNTER', 0, 125000000000)
|
|
->addDataset('txt', 'COUNTER', 0, 125000000000)
|
|
->addDataset('rp', 'COUNTER', 0, 125000000000)
|
|
->addDataset('sig', 'COUNTER', 0, 125000000000)
|
|
->addDataset('key', 'COUNTER', 0, 125000000000)
|
|
->addDataset('aaaa', 'COUNTER', 0, 125000000000)
|
|
->addDataset('axfr', 'COUNTER', 0, 125000000000)
|
|
->addDataset('any', 'COUNTER', 0, 125000000000)
|
|
->addDataset('total', 'COUNTER', 0, 125000000000)
|
|
->addDataset('other', 'COUNTER', 0, 125000000000)
|
|
->addDataset('notauth', 'COUNTER', 0, 125000000000)
|
|
->addDataset('notimpl', 'COUNTER', 0, 125000000000)
|
|
->addDataset('badclass', 'COUNTER', 0, 125000000000)
|
|
->addDataset('noquery', 'COUNTER', 0, 125000000000);
|
|
|
|
$tags = compact('name', 'app_id', 'rrd_name', 'rrd_def');
|
|
data_update($device, 'app', $tags, $fields);
|
|
}//end if
|