Home » Categories » Multiple Categories

Nagios Core - Time Period Inheritance

Overview

This article describes how time period inheritance works in Nagios Core.

The name directive must be defined in the parent object for inheritance to work.

The parent object is being referenced by the use directive.

The name directive is not mandatory and hence it can be mistaken with the timeperiod_name directive.

 

Examples

Here is an example of a config that WILL NOT inherit the parent object 24x7 because the name directive does NOT exist.

define timeperiod {
    timeperiod_name 24x7
    alias 24 Hours A Day, 7 Days A Week
    sunday 00:00-24:00
    monday 00:00-24:00
    tuesday 00:00-24:00
    wednesday 00:00-24:00
    thursday 00:00-24:00
    friday 00:00-24:00
    saturday 00:00-24:00
    }

define timeperiod {
    timeperiod_name maintenance-periods
    alias Maintenance Periods
    sunday 01:00-02:00
    saturday 01:00-02:00
    }

define timeperiod {
    timeperiod_name 24x7-except-maintenance-periods
    alias 24x7 Except Maintenance Periods
    use 24x7
    exclude maintenance-periods
    }

 

 

Here is an example of a config that will inherit the parent object 24x7 because the name directive exists.

define timeperiod {
    timeperiod_name 24x7
    name 24x7
    alias 24 Hours A Day, 7 Days A Week
    sunday 00:00-24:00
    monday 00:00-24:00
    tuesday 00:00-24:00
    wednesday 00:00-24:00
    thursday 00:00-24:00
    friday 00:00-24:00
    saturday 00:00-24:00
    }

define timeperiod {
    timeperiod_name maintenance-periods
    alias Maintenance Periods
    sunday 01:00-02:00
    saturday 01:00-02:00
    }

define timeperiod {
    timeperiod_name 24x7-except-maintenance-periods
    alias 24x7 Except Maintenance Periods
    use 24x7
    exclude maintenance-periods
    }

 

 

Final Thoughts

For any support related questions please visit the Nagios Support Forums at:

http://support.nagios.com/forum/

0 (0)
Article Rating (No Votes)
Rate this article
  • Icon PDFExport to PDF
  • Icon MS-WordExport to MS Word
Attachments Attachments
There are no attachments for this article.
Related Articles RSS Feed
Nagios XI - Monitor Active Directory with LDAP
Viewed 7518 times since Thu, Jan 28, 2016
Nagios XI - Using Recurring Downtime
Viewed 4098 times since Wed, Jul 19, 2017
Nagios Core - Host and Service Dependencies
Viewed 6925 times since Mon, Feb 1, 2016
Nagios XI - Monitoring AIX With Nagios
Viewed 6674 times since Thu, Jan 28, 2016
Nagios XI - Adding Services To Pre-existing Switch or Router
Viewed 8283 times since Wed, Jan 27, 2016
Nagios Core - Passive Monitoring with Nagios - NWC14
Viewed 9935 times since Mon, Feb 8, 2016
Nagios XI - How to Integrate the Bischeck Plugin Extension with Nagios XI
Viewed 4330 times since Thu, Jan 28, 2016
Nagios XI - Monitoring Linux Using SNMP
Viewed 10687 times since Thu, Jan 28, 2016
Nagios XI - Monitoring Hosts Using SSH
Viewed 8331 times since Thu, Jan 28, 2016
Nagios XI - Installing The AIX Agent
Viewed 7743 times since Wed, Jan 27, 2016