mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* app-mailcow-dockerized-postfix * fix docs * updated niceCase * test-data * snmprec upload * new test data * new test data
79 lines
3.0 KiB
PHP
79 lines
3.0 KiB
PHP
<?php
|
|
/*
|
|
* 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/>.
|
|
*
|
|
* @package LibreNMS
|
|
* @link http://librenms.org
|
|
* @copyright 2020 LibreNMS
|
|
* @author Cercel Valentin <crc@nuamchefazi.ro>
|
|
*/
|
|
|
|
use LibreNMS\Exceptions\JsonAppException;
|
|
use LibreNMS\RRD\RrdDefinition;
|
|
|
|
$name = 'mailcow-postfix';
|
|
$app_id = $app['app_id'];
|
|
|
|
d_echo($name);
|
|
|
|
try {
|
|
$mailcow_postfix = json_app_get($device, $name);
|
|
} catch (JsonAppException $e) {
|
|
echo PHP_EOL . $name . ':' . $e->getCode() . ':' . $e->getMessage() . PHP_EOL;
|
|
update_application($app, $e->getCode() . ':' . $e->getMessage(), []); // Set empty metrics and error message
|
|
return;
|
|
}
|
|
|
|
$rrd_name = array('app', $name, $app_id);
|
|
|
|
$rrd_def = RrdDefinition::make()
|
|
->addDataset('received', 'GAUGE', 0)
|
|
->addDataset('delivered', 'GAUGE', 0)
|
|
->addDataset('forwarded', 'GAUGE', 0)
|
|
->addDataset('deferred', 'GAUGE', 0)
|
|
->addDataset('bounced', 'GAUGE', 0)
|
|
->addDataset('rejected', 'GAUGE', 0)
|
|
->addDataset('rejectwarnings', 'GAUGE', 0)
|
|
->addDataset('held', 'GAUGE', 0)
|
|
->addDataset('discarded', 'GAUGE', 0)
|
|
->addDataset('bytesreceived', 'GAUGE', 0)
|
|
->addDataset('bytesdelivered', 'GAUGE', 0)
|
|
->addDataset('senders', 'GAUGE', 0)
|
|
->addDataset('sendinghostsdomains', 'GAUGE', 0)
|
|
->addDataset('recipients', 'GAUGE', 0)
|
|
->addDataset('recipienthostsdomains', 'GAUGE', 0);
|
|
|
|
|
|
$fields = array(
|
|
'received' => $mailcow_postfix['data']['received'],
|
|
'delivered' => $mailcow_postfix['data']['delivered'],
|
|
'forwarded' => $mailcow_postfix['data']['forwarded'],
|
|
'deferred' => $mailcow_postfix['data']['deferred'],
|
|
'bounced' => $mailcow_postfix['data']['bounced'],
|
|
'rejected' => $mailcow_postfix['data']['rejected'],
|
|
'rejectwarnings' => $mailcow_postfix['data']['rejectwarnings'],
|
|
'held' => $mailcow_postfix['data']['held'],
|
|
'discarded' => $mailcow_postfix['data']['discarded'],
|
|
'bytesreceived' => $mailcow_postfix['data']['bytesreceived'],
|
|
'bytesdelivered' => $mailcow_postfix['data']['bytesdelivered'],
|
|
'senders' => $mailcow_postfix['data']['senders'],
|
|
'sendinghostsdomains' => $mailcow_postfix['data']['sendinghostsdomains'],
|
|
'recipients' => $mailcow_postfix['data']['recipients'],
|
|
'recipienthostsdomains' => $mailcow_postfix['data']['recipienthostsdomains'],
|
|
);
|
|
|
|
$tags = compact('name', 'app_id', 'rrd_name', 'rrd_def');
|
|
data_update($device, 'app', $tags, $fields);
|
|
update_application($app, 'OK', $fields);
|