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