]> git.pld-linux.org Git - projects/nagios-config.git/blame - timeperiods.cfg
- imported from nagios-config.patch
[projects/nagios-config.git] / timeperiods.cfg
CommitLineData
8934a459
ER
1################################################################################
2# object config file for Nagios
3#
4################################################################################
5
6################################################################################
7# TIMEPERIOD DEFINITIONS
8#
9################################################################################
10
11# This defines a timeperiod where all times are valid for checks,
12# notifications, etc. The classic "24x7" support nightmare. :-)
13define timeperiod {
14 timeperiod_name 24x7
15 alias 24 Hours A Day, 7 Days A Week
16
17 monday 00:00-24:00
18 tuesday 00:00-24:00
19 wednesday 00:00-24:00
20 thursday 00:00-24:00
21 friday 00:00-24:00
22 saturday 00:00-24:00
23 sunday 00:00-24:00
24}
25
26# 'workhours' timeperiod definition
27define timeperiod {
28 timeperiod_name workhours
29 alias "Normal" Working Hours
30
31 monday 09:00-17:00
32 tuesday 09:00-17:00
33 wednesday 09:00-17:00
34 thursday 09:00-17:00
35 friday 09:00-17:00
36}
37
38
39# 'nonworkhours' timeperiod definition
40define timeperiod {
41 timeperiod_name nonworkhours
42 alias Non-Work Hours
43
44 monday 00:00-09:00,17:00-24:00
45 tuesday 00:00-09:00,17:00-24:00
46 wednesday 00:00-09:00,17:00-24:00
47 thursday 00:00-09:00,17:00-24:00
48 friday 00:00-09:00,17:00-24:00
49 saturday 00:00-24:00
50 sunday 00:00-24:00
51}
52
53define timeperiod {
54 timeperiod_name daytime
55 alias Working Hours and Afternoon
56
57 monday 09:00-23:50
58 tuesday 09:00-23:50
59 wednesday 09:00-23:50
60 thursday 09:00-23:50
61 friday 09:00-23:50
62 saturday 09:00-23:50
63 sunday 09:00-23:50
64}
65
66
67# 'none' timeperiod definition
68define timeperiod {
69 timeperiod_name none
70 alias No Time Is A Good Time
71}
72
73# vim:ts=8:sw=8
This page took 0.088181 seconds and 4 git commands to generate.