enchancements from robje

git-svn-id: http://www.observium.org/svn/observer/trunk@2008 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Adam Amstrong
2011-04-03 17:09:09 +00:00
parent a16f1ee071
commit 402acf67e9
3 changed files with 9 additions and 3 deletions

View File

@@ -1,6 +1,9 @@
<?php
$check = shell_exec($config['nagios_plugins'] . "/check_mysql -H ".$service['hostname']." ".$service['service_param']);
// provide some sane default
if ($service['service_param']) { $dbname = $service['service_param']; } else { $dbname = "mysql"; }
$check = shell_exec($config['nagios_plugins'] . "/check_mysql -H ".$service['hostname']." ".$dbname);
list($check, $time) = split("\|", $check);