function nagios_functions in Nagios Monitoring 6
Same name and namespace in other branches
- 8 nagios.module \nagios_functions()
- 5 nagios.module \nagios_functions()
- 7 nagios.module \nagios_functions()
Functions to be performed by the base nagios module.
3 calls to nagios_functions()
- nagios_nagios in ./
nagios.module - Implementation of hook_nagios
- nagios_nagios_checks in ./
nagios.module - Implementation of hook_nagios_checks().
- nagios_nagios_settings in ./
nagios.module - Implementation of hook_nagios_settings()
File
- ./
nagios.module, line 38
Code
function nagios_functions() {
return array(
'requirements' => t('Checking of hook_requirements. This includes the following: module updates, database schema, files directory writability, update.php protected, Lots of other good stuff ...'),
'watchdog' => t('Check recent watchdog entries'),
'cron' => t('Check whether cron has been running regularly'),
'session_anon' => t('Check the number of anonymous sessions for nagios performance data'),
'session_auth' => t('Check the number of authenticated sessions for nagios performance data'),
'nodes' => t('Check the number of nodes for nagios performance data'),
'users' => t('Check the number of users for nagios performance data'),
'modules' => t('Check the number of modules for nagios performance data'),
'themes' => t('Check the number of themes for nagios performance data'),
);
}