Skip to content
Snippets Groups Projects
Commit 403baff5 authored by hahn's avatar hahn
Browse files

shorten label texts in appmonitor tiles; add ssl check

parent 5d776423
Branches
No related tags found
No related merge requests found
......@@ -143,6 +143,17 @@ $oMonitor->addCheck(
)
);
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']){
$oMonitor->addCheck(
array(
"name" => "Certificate check",
"description" => "Check if SSL cert is valid and does not expire soon",
"check" => array(
"function" => "Cert",
),
)
);
}
// ----------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment