blob: 1ae5c954647cafa802d3ae1845915e62bcbbe564 (
plain)
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
|
-- ============================================================================
-- Copyright(c) 2008-2012 Shenzhen TP-LINK Technologies Co.,Ltd.
--
-- FileName : tplink-sysMonitor.mib
-- Description :
-- Reference :
-- Version : 1.0
-- History :
-- V1.0 11Dec12 Created by dengjianjun
-- Original version.
-- ============================================================================
TPLINK-SYSMONITOR-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY
FROM SNMPv2-SMI
OBJECT-TYPE
FROM SNMPv2-SMI
NOTIFICATION-TYPE
FROM SNMPv2-SMI
tplinkMgmt
FROM TPLINK-MIB;
tplinkSysMonitorMIB MODULE-IDENTITY
LAST-UPDATED
"201212110930Z"
ORGANIZATION
"TPLINK"
CONTACT-INFO
"www.tplink.com"
DESCRIPTION
"Private MIB for System Monitor."
::= { tplinkMgmt 4 }
tplinkSysMonitorMIBObjects OBJECT IDENTIFIER ::= { tplinkSysMonitorMIB 1 }
tpSysMonitorCpu OBJECT IDENTIFIER ::= { tplinkSysMonitorMIBObjects 1 }
tpSysMonitorCpuTable OBJECT-TYPE
SYNTAX SEQUENCE OF TPSYSMONITORCPUENTRY
MAX-ACCESS
not-accessible
STATUS
current
DESCRIPTION
"Displays the CPU utilization of all UNITs."
::= { tpSysMonitorCpu 1 }
tpSysMonitorCpuEntry OBJECT-TYPE
SYNTAX TPSYSMONITORCPUENTRY
MAX-ACCESS
not-accessible
STATUS
current
DESCRIPTION
"An entry contains of the information of CPU utilization."
INDEX
{ tpSysMonitorCpuUnitNumber }
::= { tpSysMonitorCpuTable 1 }
TPSYSMONITORCPUENTRY ::=
SEQUENCE
{
tpSysMonitorCpuUnitNumber
INTEGER,
tpSysMonitorCpu5Seconds
INTEGER,
tpSysMonitorCpu1Minute
INTEGER,
tpSysMonitorCpu5Minutes
INTEGER
}
tpSysMonitorCpuUnitNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS
read-only
STATUS
current
DESCRIPTION
"Displays the UNIT number."
::= { tpSysMonitorCpuEntry 1 }
tpSysMonitorCpu5Seconds OBJECT-TYPE
SYNTAX INTEGER
(0..100)
MAX-ACCESS
read-only
STATUS
current
DESCRIPTION
"Displays the CPU utilization in 5 seconds."
::= { tpSysMonitorCpuEntry 2 }
tpSysMonitorCpu1Minute OBJECT-TYPE
SYNTAX INTEGER
(0..100)
MAX-ACCESS
read-only
STATUS
current
DESCRIPTION
"Displays the CPU utilization in 1 minute."
::= { tpSysMonitorCpuEntry 3 }
tpSysMonitorCpu5Minutes OBJECT-TYPE
SYNTAX INTEGER
(0..100)
MAX-ACCESS
read-only
STATUS
current
DESCRIPTION
"Displays the CPU utilization in 5 minutes."
::= { tpSysMonitorCpuEntry 4 }
tpSysMonitorMemory OBJECT IDENTIFIER ::= { tplinkSysMonitorMIBObjects 2 }
tpSysMonitorMemoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF TPSYSMONITORMEMORYENTRY
MAX-ACCESS
not-accessible
STATUS
current
DESCRIPTION
"Displays the memory utilization of all UNITs."
::= { tpSysMonitorMemory 1 }
tpSysMonitorMemoryEntry OBJECT-TYPE
SYNTAX TPSYSMONITORMEMORYENTRY
MAX-ACCESS
not-accessible
STATUS
current
DESCRIPTION
"An entry contains of the information of memory utilization."
INDEX
{ tpSysMonitorMemoryUnitNumber }
::= { tpSysMonitorMemoryTable 1 }
TPSYSMONITORMEMORYENTRY ::=
SEQUENCE
{
tpSysMonitorMemoryUnitNumber
INTEGER,
tpSysMonitorMemoryUtilization
INTEGER
}
tpSysMonitorMemoryUnitNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS
read-only
STATUS
current
DESCRIPTION
"Displays the UNIT number."
::= { tpSysMonitorMemoryEntry 1 }
tpSysMonitorMemoryUtilization OBJECT-TYPE
SYNTAX INTEGER
(0..100)
MAX-ACCESS
read-only
STATUS
current
DESCRIPTION
"Displays the memory utilization."
::= { tpSysMonitorMemoryEntry 2 }
tplinkSysMonitorNotifications OBJECT IDENTIFIER ::= { tplinkSysMonitorMIB 2 }
tpSysMonitorCpuOverLoading NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"CPU utilization reached the threshold."
::= { tplinkSysMonitorNotifications 1 }
tpSysMonitorMemoryOverLoading NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Memory utilization reached the threshold."
::= { tplinkSysMonitorNotifications 2 }
END
|