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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
|
-- *****************************************************************
-- NMS-PROCESS-MIB.my: MIB for CPU and process statistics
--
-- October 2003
--
-- Copyright (c) 2003 by NMS, Inc.
-- All rights reserved.
-- *****************************************************************
--
NMS-PROCESS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32,
Gauge32
FROM SNMPv2-SMI
TimeStamp,
DisplayString
FROM SNMPv2-TC
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
nmsMgmt
FROM NMS-SMI
-- Unsigned32, EntPhysicalIndexOrZero
-- FROM NMS-TC;
Unsigned32
FROM SNMPv2-SMI
EntPhysicalIndexOrZero
FROM NMS-TC;
nmsProcessMIB MODULE-IDENTITY
LAST-UPDATED "200311060000Z"
ORGANIZATION ""
CONTACT-INFO
""
DESCRIPTION
"The MIB module to describe active system processes."
REVISION "200310160000Z"
DESCRIPTION
"Initial version of this MIB."
::= { nmsMgmt 109 }
-- This MIB displays memory and CPU utilization on nms devices. CPU
-- utilization will give a general idea of how busy the processor is.
-- The numbers are a ratio of the current idle time over the longest
-- idle time. Please note that this information should be used as an
-- estimate only.
nmsProcessMIBObjects OBJECT IDENTIFIER ::= { nmsProcessMIB 1 }
nmspmCPU OBJECT IDENTIFIER ::= { nmsProcessMIBObjects 1 }
nmspmProcess OBJECT IDENTIFIER ::= { nmsProcessMIBObjects 2 }
--NMS CPU Total Table
nmspmCPUTotalTable OBJECT-TYPE
SYNTAX SEQUENCE OF NMSpmCPUTotalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of overall CPU statistics. "
::= { nmspmCPU 1 }
nmspmCPUTotalEntry OBJECT-TYPE
SYNTAX NMSpmCPUTotalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Overall information about the CPU load. Entries in this
table come and go as CPUs are added and removed from the
system."
INDEX { nmspmCPUTotalIndex }
::= { nmspmCPUTotalTable 1 }
NMSpmCPUTotalEntry ::=
SEQUENCE {
nmspmCPUTotalIndex Unsigned32,
nmspmCPUTotalPhysicalIndex EntPhysicalIndexOrZero,
nmspmCPUTotal5sec Gauge32,
nmspmCPUTotal1min Gauge32,
nmspmCPUTotal5min Gauge32
}
nmspmCPUTotalIndex OBJECT-TYPE
SYNTAX Unsigned32 (1.. 4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index that uniquely represents a CPU (or group of CPUs)
whose CPU load information is reported by a row in this table.
This index is assigned arbitrarily by the engine
and is not saved over reboots."
::= { nmspmCPUTotalEntry 1 }
nmspmCPUTotalPhysicalIndex OBJECT-TYPE
SYNTAX EntPhysicalIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The entPhysicalIndex of the physical entity for which
the CPU statistics in this entry are maintained.
The physical entity can be a CPU chip, a group of CPUs,
a CPU card etc. The exact type of this entity is described by
its entPhysicalVendorType value. If the CPU statistics
in this entry correspond to more than one physical entity
(or to no physical entity), or if the entPhysicalTable is
not supported on the SNMP agent, the value of this object
must be zero."
::= { nmspmCPUTotalEntry 2 }
nmspmCPUTotal5sec OBJECT-TYPE
SYNTAX Gauge32 (1..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU busy percentage in the last 5 second
period. This object is deprecated by nmspmCPUTotal5secRev
which has the changed range of value (0..100)."
::= { nmspmCPUTotalEntry 3 }
nmspmCPUTotal1min OBJECT-TYPE
SYNTAX Gauge32 (1..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU busy percentage in the last 1 minute
period. This object is deprecated by nmspmCPUTotal1minRev
which has the changed range of value (0..100)."
::= { nmspmCPUTotalEntry 4 }
nmspmCPUTotal5min OBJECT-TYPE
SYNTAX Gauge32 (1..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU busy percentage in the last 5 minute
period. This object is deprecated by nmspmCPUTotal5minRev
which has the changed range of value (0..100)."
::= { nmspmCPUTotalEntry 5 }
nmspmCPUMaxUtilization OBJECT-TYPE
SYNTAX Gauge32 (1..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The max value of nmspmCPUTotal5sec."
::= { nmspmCPU 2 }
nmspmCPUClearMaxUtilization OBJECT-TYPE
SYNTAX INTEGER{clear(1)}
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To clear nmspmCPUMaxUtilization."
::= { nmspmCPU 3 }
-- NMS Processes Common Table
nmspmProcessTable OBJECT-TYPE
SYNTAX SEQUENCE OF NMSpmProcessEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of generic information on all active
processes on this device."
::= { nmspmProcess 1 }
nmspmProcessEntry OBJECT-TYPE
SYNTAX NMSpmProcessEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Generic information about an active process on this
device. Entries in this table come and go as processes are
created and destroyed by the device."
INDEX { nmspmCPUTotalIndex, nmspmProcessPID }
::= { nmspmProcessTable 1 }
NMSpmProcessEntry ::=
SEQUENCE {
nmspmProcessPID
Unsigned32,
nmspmProcessName
DisplayString,
nmspmProcessPriority
INTEGER,
nmspmProcessTimeCreated
TimeStamp
}
nmspmProcessPID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the process ID. nmspmProcessTimeCreated
should be checked against the last time it was polled,
and if it has changed the PID has been reused and the
entire entry should be polled again. The process IDs
are discrete."
::= { nmspmProcessEntry 1 }
nmspmProcessName OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name associated with this process. If the name is
longer than 32 characters, it will be truncated to the first
31 characters, and a `*' will be appended as the last
character to imply this is a truncated process name."
::= { nmspmProcessEntry 2 }
nmspmProcessPriority OBJECT-TYPE
SYNTAX INTEGER {
critical(0),
veryhigh(55),
high(60),
normal(128),
low(180),
verylow(255)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The priority level at which the process is
running. This object is deprecated by
nmspmProcExtPriorityRev."
::= { nmspmProcessEntry 3 }
nmspmProcessTimeCreated OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time when the process was created. The process ID
and the time when the process was created, uniquely
identifies a process."
::= { nmspmProcessEntry 4 }
-- notifications
nmsProcessMIBNotifPrefix OBJECT IDENTIFIER ::= { nmsProcessMIB 2 }
nmsProcessMIBNotifs OBJECT IDENTIFIER ::=
{ nmsProcessMIBNotifPrefix 0 }
-- (no notifications are currently defined)
-- conformance information
nmsProcessMIBConformance OBJECT IDENTIFIER ::= { nmsProcessMIB 3 }
nmspmCompliances OBJECT IDENTIFIER ::= { nmsProcessMIBConformance 1 }
nmspmGroups OBJECT IDENTIFIER ::= { nmsProcessMIBConformance 2 }
nmsProcessMIBCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
the NMS Process MIB. This is deprecated and new
compliance nmsProcessMIBComplianceRev is added."
MODULE -- this module
MANDATORY-GROUPS { nmspmCPUTotalGroup, nmspmProcessGroup }
GROUP nmspmProcessExtGroup
DESCRIPTION
"The nmspmProcessExtGroup is optional for all entities."
OBJECT nmspmProcExtPriority
MIN-ACCESS read-only
DESCRIPTION "Write access is not required."
::= { nmspmCompliances 1 }
nmsProcessMIBComplianceRev MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the NMS Process MIB. This compliance module
deprecates nmsProcessMIBCompliance."
MODULE -- this module
MANDATORY-GROUPS { nmspmCPUTotalGroupRev, nmspmProcessGroupRev}
GROUP nmspmProcessExtGroupRev
DESCRIPTION
"The nmspmProcessExtGroupRev is optional for all
entities. This object is defined after deprecating
nmspmProcessExtGroup."
::= { nmspmCompliances 2 }
-- units of conformance
nmspmCPUTotalGroup OBJECT-GROUP
OBJECTS {
nmspmCPUTotalPhysicalIndex,
nmspmCPUTotal5sec,
nmspmCPUTotal1min,
nmspmCPUTotal5min
}
STATUS deprecated
DESCRIPTION
"A collection of objects providing CPU load monitoring
information. This group is mandatory for all nms devices.
This group is deprecated since the objects nmspmCPUTotal5sec,
nmspmCPUTotal1min and nmspmCPUTotal5min are
deprecated. A new object nmspmCPUTotalGroupRev is
added in place of it."
::= { nmspmGroups 1 }
nmspmProcessGroup OBJECT-GROUP
OBJECTS {
nmspmProcessPID,
nmspmProcessName,
nmspmProcessuSecs,
nmspmProcessTimeCreated
}
STATUS deprecated
DESCRIPTION
"A collection of objects providing common process
monitoring information. This group is mandatory for
all nms devices. This object is deprecated
by nmspmProcessGroupRev."
::= { nmspmGroups 2 }
nmspmProcessExtGroup OBJECT-GROUP
OBJECTS {
nmspmProcExtMemAllocated,
nmspmProcExtMemFreed,
nmspmProcExtInvoked,
nmspmProcExtRuntime,
nmspmProcExtUtil5Sec,
nmspmProcExtUtil1Min,
nmspmProcExtUtil5Min,
nmspmProcExtPriority
}
STATUS deprecated
DESCRIPTION
"A collection of objects providing additional and
more detailed process monitoring information. This
group is mandatory for all nms devices that have
the internal capability to keep this information.
This group is deprecated and new group
nmspmProcessExtGroupRev is added."
::= { nmspmGroups 3 }
nmspmCPUTotalGroupRev OBJECT-GROUP
OBJECTS {
nmspmCPUTotalPhysicalIndex,
nmspmCPUTotal5secRev,
nmspmCPUTotal1minRev,
nmspmCPUTotal5minRev
}
STATUS current
DESCRIPTION
"A collection of objects providing CPU load monitoring
information. This group is mandatory for all nms
devices. This group deprecates nmspmCPUTotalGroup."
::= { nmspmGroups 4 }
nmspmProcessExtGroupRev OBJECT-GROUP
OBJECTS {
nmspmProcExtMemAllocatedRev,
nmspmProcExtMemFreedRev,
nmspmProcExtInvokedRev,
nmspmProcExtRuntimeRev,
nmspmProcExtUtil5SecRev,
nmspmProcExtUtil1MinRev,
nmspmProcExtUtil5MinRev,
nmspmProcExtPriorityRev
}
STATUS current
DESCRIPTION
"A collection of objects providing additional and
more detailed process monitoring information. This
group is mandatory for all nms devices that have
the internal capability to keep this information.
This group is formed after deprecating nmspmProcessExtGroup.
nmspmProcExtMemAllocatedRev, nmspmProcExtMemFreedRev,
nmspmProcExtInvokedRev, nmspmProcExtRuntimeRev,
nmspmProcExtUtil5SecRev, nmspmProcExtUtil1MinRev and
nmspmProcExtUtil5MinRev are the new objects added."
::= { nmspmGroups 5 }
nmspmProcessGroupRev OBJECT-GROUP
OBJECTS {
nmspmProcessPID,
nmspmProcessName,
nmspmProcessAverageUSecs,
nmspmProcessTimeCreated
}
STATUS current
DESCRIPTION
"A collection of objects providing common process
monitoring information. This group is mandatory for
all nms devices. This object deprecates
nmspmProcessGroup."
::= { nmspmGroups 6 }
END
|