You are here

function prod_check_nagios_info in Production check & Production monitor 6

Same name and namespace in other branches
  1. 7 prod_check.module \prod_check_nagios_info()

Implementation of hook_nagios_info()

File

./prod_check.module, line 307

Code

function prod_check_nagios_info() {
  if (variable_get('prod_check_enable_nagios', 0)) {
    return array(
      'name' => 'Production check',
      'id' => 'PRDCHK',
    );
  }
}