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 - SNMP Traps with NXTI
Viewed 4622 times since Tue, Sep 18, 2018
Nagios XI - Using Recurring Downtime
Viewed 4106 times since Wed, Jul 19, 2017
Nagios Core - Monitoring Service and Host Clusters
Viewed 6096 times since Mon, Feb 1, 2016
Nagios XI - Uploading and Managing MIBS
Viewed 12598 times since Thu, Aug 1, 2019
Nagios XI - Using the Negate Plugin
Viewed 6811 times since Thu, Jan 28, 2016
Nagios XI - Business Process Integration
Viewed 6287 times since Thu, Jan 28, 2016
Nagios XI - Using The SNMP Walk Wizard
Viewed 6321 times since Mon, Jul 17, 2017
Nagios XI - How To Monitor A Websensor EM08
Viewed 4743 times since Thu, Jan 28, 2016
Nagios Core - CGI Configuration File Options
Viewed 13196 times since Sun, Jan 31, 2016
Nagios XI - How To Use CA Certificates With check_ldaps Plugin
Viewed 10003 times since Tue, Jul 26, 2016