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 - Monitoring VMware Virtualization Using vMA - NWC14
Viewed 6261 times since Thu, Feb 4, 2016
Nagios XI - Using Nagios XI As A Security Tool - Software Versions
Viewed 3519 times since Wed, Jul 19, 2017
Nagios Core - Object Configuration Overview
Viewed 5151 times since Sun, Jan 31, 2016
Nagios XI - Installing The Solaris Agent
Viewed 6179 times since Wed, Jan 27, 2016
Nagios XI - Restoring Default Configuration
Viewed 9615 times since Tue, Jan 26, 2016
Nagios XI - Migrating From Nagios Core
Viewed 5546 times since Thu, Jan 28, 2016
Nagios XI - Monitoring AIX With Nagios
Viewed 6674 times since Thu, Jan 28, 2016
Nagios XI - BPI XML Cache
Viewed 4541 times since Thu, Mar 9, 2017
Nagios XI - Monitoring Websites With Nagios XI
Viewed 4610 times since Thu, Jan 28, 2016
Nagios XI - Manual Config File Management
Viewed 10416 times since Tue, Jan 26, 2016