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 Core - Large Installation Tweaks
Viewed 4860 times since Mon, Feb 1, 2016
Nagios XI - Using The Core Config Manager For Service Management
Viewed 9698 times since Mon, Aug 8, 2016
Nagios XI - Changing Host Alive Check
Viewed 5038 times since Wed, Jan 27, 2016
Nagios XI - Using Nagios BPI
Viewed 5504 times since Thu, Jan 28, 2016
Nagios XI - Business Process Integration
Viewed 6284 times since Thu, Jan 28, 2016
Nagios XI - How To Monitor Website Defacement With Nagios XI
Viewed 4285 times since Thu, Jan 28, 2016
Nagios XI - Using Nagios XI As A Security Tool - Software Versions
Viewed 3524 times since Wed, Jul 19, 2017
Nagios XI - Passive Monitoring with NRDS
Viewed 5694 times since Thu, Jan 28, 2016
Nagios Core - SNMP Explained - NWC15
Viewed 11247 times since Mon, Feb 8, 2016
Nagios XI - Excluding Hosts And Hostgroups
Viewed 5393 times since Tue, May 2, 2017