function ultimate_cron_nagios_functions in Ultimate Cron 7
Same name and namespace in other branches
- 8.2 ultimate_cron.nagios.inc \ultimate_cron_nagios_functions()
- 8 ultimate_cron.nagios.inc \ultimate_cron_nagios_functions()
- 6 ultimate_cron.nagios.inc \ultimate_cron_nagios_functions()
Return a list of nagios check functions
See also
3 calls to ultimate_cron_nagios_functions()
- ultimate_cron_nagios in ./
ultimate_cron.nagios.inc - Implementation of hook_nagios().
- ultimate_cron_nagios_checks in ./
ultimate_cron.nagios.inc - Implementation of hook_nagios_checks().
- ultimate_cron_nagios_settings in ./
ultimate_cron.nagios.inc - Implementation of hook_nagios_settings().
File
- ./
ultimate_cron.nagios.inc, line 101
Code
function ultimate_cron_nagios_functions() {
return array(
'ultimate_cron_running' => t('Check number of currently running jobs'),
'ultimate_cron_failed' => t('Check the number of jobs that failed last run'),
'ultimate_cron_longrunning' => t('Check the number of jobs that are running longer than usual'),
);
}