1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
BLUECOAT-SG-HEALTHCHECK-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, Counter64
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString
FROM SNMPv2-TC
blueCoatMgmt
FROM BLUECOAT-MIB;
deviceHealthCheckMIB MODULE-IDENTITY
LAST-UPDATED "201305220300Z"
ORGANIZATION "Blue Coat Systems, Inc."
CONTACT-INFO "support.services@bluecoat.com
http://www.bluecoat.com"
DESCRIPTION "The health check MIB is used to monitor
changes in the health of upstream systems."
REVISION "201305220300Z"
DESCRIPTION "Added OID for time of last health check."
REVISION "201305210300Z"
DESCRIPTION "Added OIDs for device health check table."
REVISION "200711050300Z"
DESCRIPTION "Minor corrections and reformatting. Changed the
trap OID for compatibility with SNMPv1."
REVISION "200208280300Z"
DESCRIPTION "Initial revision of this MIB."
::= { blueCoatMgmt 7 }
deviceHealthCheckMIBObjects
OBJECT IDENTIFIER ::= { deviceHealthCheckMIB 1 }
deviceHealthCheckMIBNotifs
OBJECT IDENTIFIER ::= { deviceHealthCheckMIB 2 }
deviceHealthCheckMIBConformance
OBJECT IDENTIFIER ::= { deviceHealthCheckMIB 3 }
deviceHealthCheckMIBNotifsPrefix
OBJECT IDENTIFIER ::= { deviceHealthCheckMIBNotifs 0 }
--
-- Textual conventions
--
HealthCheckMessageString ::= TEXTUAL-CONVENTION
DISPLAY-HINT "255a"
STATUS current
DESCRIPTION "The message describing a change in the health
of an upstream system."
SYNTAX OCTET STRING (SIZE (0..255))
--
-- MIB variables
--
deviceHealthCheckStringValues
OBJECT IDENTIFIER ::= { deviceHealthCheckMIBObjects 1 }
deviceHealthCheckValues
OBJECT IDENTIFIER ::= { deviceHealthCheckMIBObjects 2 }
deviceHealthCheckMessage OBJECT-TYPE
SYNTAX HealthCheckMessageString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The custom message generated for this change in health."
::= { deviceHealthCheckStringValues 1 }
deviceHealthCheckValueTable OBJECT-TYPE
SYNTAX SEQUENCE OF DeviceHealthCheckValueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of Heath Check services."
::= { deviceHealthCheckValues 1 }
deviceHealthCheckValueEntry OBJECT-TYPE
SYNTAX DeviceHealthCheckValueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A deviceHealthCheckValueTable entry describes the status
of a health check service."
INDEX { deviceHealthCheckName }
::= { deviceHealthCheckValueTable 1 }
HealthCheckStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Indicates the current value of the health check.
(1) - unknown
(2) - ok
(3) - ok with errors
(4) - ok for some IPs
(5) - ok but failing
(6) - check failed
(7) - dns failed
(8) - ok on alt server"
SYNTAX INTEGER {
unknown(1),
ok(2),
okWithErrors(3),
okForSomeIPs(4),
okButFailing(5),
checkFailed(6),
dnsFailed(7),
okOnAltServer(8)
}
DeviceHealthCheckValueEntry ::= SEQUENCE {
deviceHealthCheckName DisplayString,
deviceHealthCheckState HealthCheckStatus,
deviceHealthCheckTime Counter64
}
deviceHealthCheckName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..127))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of health check service."
::= { deviceHealthCheckValueEntry 1 }
deviceHealthCheckState OBJECT-TYPE
SYNTAX HealthCheckStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable indicates health check state."
::= { deviceHealthCheckValueEntry 2 }
deviceHealthCheckTime OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable indicates time (duration) in milliseconds the last health check took."
::= { deviceHealthCheckValueEntry 3 }
--
-- notifications
--
deviceHealthCheckTrap NOTIFICATION-TYPE
OBJECTS { deviceHealthCheckMessage }
STATUS current
DESCRIPTION "A notification is generated when the health
of a monitored system changes."
::= { deviceHealthCheckMIBNotifsPrefix 1 }
-- Conformance information *******************************************
deviceHealthCheckMIBCompliances OBJECT IDENTIFIER
::= {deviceHealthCheckMIBConformance 1}
deviceHealthCheckMIBGroups OBJECT IDENTIFIER
::= {deviceHealthCheckMIBConformance 2}
deviceHealthCheckMIBNotifGroups OBJECT IDENTIFIER
::= {deviceHealthCheckMIBConformance 3}
-- Compliance statements *********************************************
deviceHealthCheckMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for health check module. "
MODULE -- this module
MANDATORY-GROUPS { deviceHealthCheckMIBGroup }
OBJECT deviceHealthCheckName
MIN-ACCESS read-only
DESCRIPTION "Write access is not required."
OBJECT deviceHealthCheckState
MIN-ACCESS read-only
DESCRIPTION "Write access is not required."
OBJECT deviceHealthCheckTime
MIN-ACCESS read-only
DESCRIPTION "Write access is not required."
OBJECT deviceHealthCheckMessage
MIN-ACCESS read-only
DESCRIPTION "Write access is not required."
::= { deviceHealthCheckMIBCompliances 1 }
deviceHealthCheckMIBGroup OBJECT-GROUP
OBJECTS {
deviceHealthCheckName,
deviceHealthCheckState,
deviceHealthCheckTime,
deviceHealthCheckMessage
}
STATUS current
DESCRIPTION "Group of Health Check-related objects implemented in ProxySG appliances."
::= { deviceHealthCheckMIBGroups 1 }
deviceHealthCheckMIBNotifGroup NOTIFICATION-GROUP
NOTIFICATIONS { deviceHealthCheckTrap }
STATUS current
DESCRIPTION "Group of Health Check notifications implemented in ProxySG appliances."
::= { deviceHealthCheckMIBNotifGroups 1 }
END
|