Files
librenms-librenms/includes/polling/applications/mailcow-postfix.inc.php
Tony Murray 7a8e479b61 Unix Agent and Application fixes (#15460)
* Unix Agent and Application fixes

* Apply fixes from StyleCI

---------

Co-authored-by: StyleCI Bot <bot@styleci.io>
2023-10-16 03:40:40 -05:00

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 <https://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link https://www.librenms.org
* @copyright 2020 LibreNMS
* @author Cercel Valentin <crc@nuamchefazi.ro>
*/
use LibreNMS\Exceptions\JsonAppException;
use LibreNMS\RRD\RrdDefinition;
$name = 'mailcow-postfix';
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_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 = [
'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 = [
'name' => $name,
'app_id' => $app->app_id,
'rrd_name' => ['app', $name, $app->app_id],
'rrd_def' => $rrd_def,
];
data_update($device, 'app', $tags, $fields);
update_application($app, 'OK', $fields);