You are here

function nagios_nagios_info in Nagios Monitoring 8

Same name and namespace in other branches
  1. 5 nagios.module \nagios_nagios_info()
  2. 6 nagios.module \nagios_nagios_info()
  3. 7 nagios.module \nagios_nagios_info()

Implements hook_nagios_info()

Any module may implement hooks to add status information. This hook allows to the Settings page to show a checkbox. Specifically, this shows up in the 'Modules' fieldset.

File

./nagios.module, line 120
Main file for Nagios service monitoring.

Code

function nagios_nagios_info() {
  return [
    'name' => 'Nagios Monitoring',
    'id' => 'NAGIOS',
  ];
}