Files
librenms-librenms/includes/polling/applications/certificate.inc.php
Jellyfrog 071ca9bc2a Apply fixes from StyleCI (#15698)
Co-authored-by: StyleCI Bot <bot@styleci.io>
2024-01-04 22:39:12 -06:00

45 lines
1.3 KiB
PHP

<?php
use LibreNMS\Exceptions\JsonAppException;
use LibreNMS\Exceptions\JsonAppMissingKeysException;
use LibreNMS\RRD\RrdDefinition;
$name = 'certificate';
$output = 'OK';
try {
$certificate_data = json_app_get($device, $name, 1)['data'];
} catch (JsonAppMissingKeysException $e) {
$certificate_data = $e->getParsedJson();
} 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 = ['app', $name, $app->app_id];
$rrd_def = RrdDefinition::make()
->addDataset('age', 'GAUGE', 0)
->addDataset('remaining_days', 'GAUGE', 0);
$metrics = [];
foreach ($certificate_data as $data) {
$cert_name = $data['cert_name'];
$age = $data['age'];
$remaining_days = $data['remaining_days'];
$rrd_name = ['app', $name, $app->app_id, $cert_name];
$fields = [
'age' => $age,
'remaining_days' => $remaining_days,
];
$metrics[$cert_name] = $fields;
$tags = ['name' => $cert_name, 'app_id' => $app->app_id, 'rrd_def' => $rrd_def, 'rrd_name' => $rrd_name];
data_update($device, 'app', $tags, $fields);
}
update_application($app, $output, $metrics);