diff options
author | Subhendu Ghosh <sghosh@users.sourceforge.net> | 2005-03-11 18:04:21 +0000 |
---|---|---|
committer | Subhendu Ghosh <sghosh@users.sourceforge.net> | 2005-03-11 18:04:21 +0000 |
commit | 6238bb6ff2515e34992f93b56cd43fc910250e2e (patch) | |
tree | f8a35e506c8db39cd6ce3f023a83a5d86fb824aa /src-mib/nagios-root.mib | |
parent | ec8f90449b83a3d4cd762cc2c447cf99a49a15f1 (diff) | |
download | nagios-mib-6238bb6ff2515e34992f93b56cd43fc910250e2e.tar.gz |
Initial revision
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosmib/trunk@1150 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'src-mib/nagios-root.mib')
-rw-r--r-- | src-mib/nagios-root.mib | 90 |
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 | |||
4 | NAGIOS-ROOT-MIB DEFINITIONS ::= BEGIN | ||
5 | IMPORTS | ||
6 | MODULE-IDENTITY, enterprises | ||
7 | FROM SNMPv2-SMI | ||
8 | TEXTUAL-CONVENTION | ||
9 | FROM SNMPv2-TC; | ||
10 | |||
11 | |||
12 | nagios 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 | |||
38 | NotifyType ::= 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 | |||
52 | HostStateID ::= 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 | |||
63 | HostStateType ::= 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 | |||
75 | ServiceStateID ::= 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 | |||
89 | END | ||
90 | |||