Skip to content

melmorabity/ansible-nagios-object

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 

Repository files navigation

nagios_object

Manage object definitions on Nagios.

Synopsis

  • Manage object definitions on Nagios, using the pynag library.
  • This module only works on Python 2, since the pynag library isn't available yet for Python 3.

Requirements

The below requirements are needed on the host that executes this module.

  • pynag

Options

parameter required default choices comments
parameters no Nagios object attributes. Attribute values must be integers, strings or null. To remove an attribute from an existing Nagios object, its value can be set to null.
type yes
  • host
  • hostgroup
  • service
  • servicegroup
  • contact
  • contactgroup
  • timeperiod
  • command
  • servicedependency
  • serviceescalation
  • hostdependency
  • hostescalation
Nagios object type.
nagios_cfg no Path to the main Nagios configuration file nagios.cfg. If no path is specified, such a path will be detected automatically.
update no True Use to control if resource parameters must be updated if the resource exists. If enabled, the resource will be updated with specified parameters.
nagios_bin no Path to the Nagios executable file, called if validatation is enabled. If no path is specified, such a path will be detected automatically.
state no present
  • present
  • absent
Assert the state of the object. If absent, the object will be removed, as well as references to this one (for example, if you delete a host, remove its name from all hostgroup members entries).
others no All arguments accepted by the file module also work here.
follow no False This flag indicates that filesystem links, if they exist, should be followed.
path no Path to the file where Nagios object will be written. This only applies to new objects. If the object already exists in Nagios, modifications will be done on the configuration file which actually defines the object. If no path is specified, new objects will be written in the Nagios configuration directory, in pynag/<object type>/<object description>.cfg. Be sure to set up Nagios to allow such configuration paths to be loaded (using the cfg_file/cfg_dir attributes in nagios.cfg)!
backup no False Create a backup file including the timestamp information so you can get the original file back if you somehow clobbered it incorrectly.
validate no False Validate the Nagios configuration, after changes, by running "nagios -v" on the Nagios configuration file. If validation fails, changes are rolled back.

Examples

# Create a new host
- local_action:
    module: nagios_object
    type: host
    parameters:
      host_name: host1
      alias: Host 1
      use: generic-host

# Add service to the previous host
- local_action:
    module: nagios_object
    type: service
    parameters:
      host: host1
      service_description: Ping
      check_command: check_ping!100.0,20%!500.0,60%
      use: generic-service

About

Ansible module to manage object definitions on Nagios

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages