summaryrefslogtreecommitdiffstats
path: root/src-mib/nagios-root.mib
diff options
context:
space:
mode:
Diffstat (limited to 'src-mib/nagios-root.mib')
-rw-r--r--src-mib/nagios-root.mib90
1 files changed, 90 insertions, 0 deletions
diff --git a/src-mib/nagios-root.mib b/src-mib/nagios-root.mib
new file mode 100644
index 0000000..ebde04b
--- /dev/null
+++ b/src-mib/nagios-root.mib
@@ -0,0 +1,90 @@
1$Id$
2
3
4NAGIOS-ROOT-MIB DEFINITIONS ::= BEGIN
5IMPORTS
6 MODULE-IDENTITY, enterprises
7 FROM SNMPv2-SMI
8 TEXTUAL-CONVENTION
9 FROM SNMPv2-TC;
10
11
12nagios MODULE-IDENTITY
13 LAST-UPDATED "200503090000Z" -- March 9, 2005
14 ORGANIZATION "Nagios"
15 CONTACT-INFO
16 " Subhendu Ghosh
17
18 Telephone: +1 201 232 2851
19 Email: sghosh@users.sourceforge.net
20
21 Nagios Information:
22 http://www.nagios.org
23 "
24 DESCRIPTION
25 "Objects for Nagios(tm) NMS"
26 REVISION "200503090000Z" -- March 9, 2005
27 DESCRIPTION
28 "Spell check"
29 REVISION "200501200000Z" --January 20, 2005
30 DESCRIPTION
31 "Initial Version"
32 ::= {enterprises 20006}
33
34--
35-- Textual Conventions
36--
37
38NotifyType ::= TEXTUAL-CONVENTION
39 STATUS current
40 DESCRIPTION
41 "A string identifying the type of notification that is being sent
42 (PROBLEM, RECOVERY, ACKNOWLEDGEMENT, FLAPPINGSTART or FLAPPINGSTOP).
43 "
44 SYNTAX INTEGER {
45 problem(0),
46 recovery(1),
47 acknowledgement(2),
48 flappingstart(3),
49 flappingstop(4)
50 }
51
52HostStateID ::= TEXTUAL-CONVENTION
53 STATUS current
54 DESCRIPTION
55 "A number that corresponds to the current state of the host: 0=UP, 1=DOWN,
56 2=UNREACHABLE."
57 SYNTAX INTEGER {
58 up(0),
59 down(1),
60 unreachable(3)
61 }
62
63HostStateType ::= TEXTUAL-CONVENTION
64 STATUS current
65 DESCRIPTION
66 "A string indicating the state type for the current host check (HARD or
67 SOFT). Soft states occur when host checks return a non-OK (non-UP) state
68 and are in the process of being retried. Hard states result when host
69 checks have been checked a specified maximum number of times."
70 SYNTAX INTEGER {
71 hard(0),
72 soft(1)
73 }
74
75ServiceStateID ::= TEXTUAL-CONVENTION
76 STATUS current
77 DESCRIPTION
78 "A number that corresponds to the current state of the service: 0=OK,
79 1=WARNING, 2=CRITICAL, 3=UNKNOWN.
80 "
81 SYNTAX INTEGER{
82 ok(0),
83 warning(1),
84 critical(2),
85 unknown(3)
86 }
87
88
89END
90