]> git.pld-linux.org Git - projects/nagios-config.git/blob - timeperiods.cfg
use .xz for archive format
[projects/nagios-config.git] / timeperiods.cfg
1 ###############################################################################
2 # TIMEPERIODS.CFG
3 #
4 ###############################################################################
5
6 ###############################################################################
7 ###############################################################################
8 #
9 # TIME PERIODS
10 #
11 ###############################################################################
12 ###############################################################################
13
14 # This defines a timeperiod where all times are valid for checks, 
15 # notifications, etc.  The classic "24x7" support nightmare. :-)
16 define timeperiod {
17         timeperiod_name     24x7
18         alias               24 Hours A Day, 7 Days A Week
19
20         monday              00:00-24:00
21         tuesday             00:00-24:00
22         wednesday           00:00-24:00
23         thursday            00:00-24:00
24         friday              00:00-24:00
25         saturday            00:00-24:00
26         sunday              00:00-24:00
27 }
28
29 # 'workhours' timeperiod definition
30 define timeperiod {
31         timeperiod_name     workhours
32         alias               Normal Work Hours
33
34         monday              09:00-17:00
35         tuesday             09:00-17:00
36         wednesday           09:00-17:00
37         thursday            09:00-17:00
38         friday              09:00-17:00
39 }
40
41 define timeperiod {
42         timeperiod_name     daytime
43         alias               Normal Daytime
44
45         monday              09:00-21:00
46         tuesday             09:00-21:00
47         wednesday           09:00-21:00
48         thursday            09:00-21:00
49         friday              09:00-21:00
50         saturday            09:00-21:00
51         sunday              09:00-21:00
52 }
53
54 # 'none' timeperiod definition
55 define timeperiod {
56         timeperiod_name         none
57         alias                   No Time Is A Good Time
58 }
59
60 # vim:ft=nagios
This page took 0.083867 seconds and 3 git commands to generate.