forked from taishin/vendor_mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CISCO-PROCESS-MIB.my
2791 lines (2483 loc) · 97 KB
/
CISCO-PROCESS-MIB.my
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- *****************************************************************
-- CISCO-PROCESS-MIB.my: MIB for CPU and process statistics
--
-- August 1998, Ramanathan R. Kavasseri
--
-- Copyright (c) 1998, 2001, 2003, 2006-2010 by cisco Systems Inc.
-- All rights reserved.
-- *****************************************************************
--
-- This mib was extracted from RFC xxx
CISCO-PROCESS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32,
Gauge32,
Unsigned32,
NOTIFICATION-TYPE,
Counter64
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TimeStamp,
DisplayString,
RowStatus,
TruthValue,
RowPointer,
TEXTUAL-CONVENTION
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
CounterBasedGauge64
FROM HCNUM-TC
EntPhysicalIndexOrZero,
Unsigned64
FROM CISCO-TC
ciscoMgmt
FROM CISCO-SMI;
ciscoProcessMIB MODULE-IDENTITY
LAST-UPDATED "201005060000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"The MIB module to describe active system processes.
Virtual Machine refers to those OS which can run the
code or process of a different executional model OS.
Virtual Process assume the executional model
of a OS which is different from Native OS. Virtual
Processes are also referred as Tasks.
Thread is a sequence of instructions to be executed
within a program. Thread which adhere to POSIX standard
is referred as a POSIX thread."
REVISION "201005060000Z"
DESCRIPTION
"Added the following new objects to the cpmCPUTotalTable.
cpmCPUMemoryCommitted, cpmCPUMemoryCommittedOvrFlow and
cpmCPUMemoryHCCommitted.
Added new compliance group cpmCPUTotalMemoryCommitGroup which
includes Committed memory objects.
Added new compliance cProcessMIBComplianceRev5 which
deprecates cProcessMIBComplianceRev4."
REVISION "200910120000Z"
DESCRIPTION
"Added TEXTUAL-CONVENTION called CPULoadAverage.
Added the following new objects to cpmCPUTotalTable.
cpmCPULoadAvg1min, cpmCPULoadAvg5min, cpmCPULoadAvg15min.
Added new compliance group cpmCPULoadAvgGroup which includes
load average objects.
Added new compliance cProcessMIBComplianceRev4 which
deprecates cProcessMIBComplianceRev3."
REVISION "200901230000Z"
DESCRIPTION
"Added the following new objects to cpmCPUTotalTable.
cpmCPUMemoryUsedOvrflw, cpmCPUMemoryHCUsed,
cpmCPUMemoryFreeOvrflw, cpmCPUMemoryHCFree,
cpmCPUMemoryKernelReservedOvrflw, cpmCPUMemoryHCKernelReserved,
cpmCPUMemoryLowestOvrflw, cpmCPUMemoryHCLowest
Added the following new objects to cpmProcessExtRevTable.
cpmProcExtMemAllocatedRevOvrflw, cpmProcExtHCMemAllocatedRev,
cpmProcExtMemFreedRevOvrflw, cpmProcExtHCMemFreedRev,
cpmProcessTextSegmentSizeOvrflw, cpmProcessHCTextSegmentSize,
cpmProcessDataSegmentSizeOvrflw, cpmProcessHCDataSegmentSize,
cpmProcessStackSizeOvrflw, cpmProcessHCStackSize,
cpmProcessDynamicMemorySizeOvrflw, cpmProcessHCDynamicMemorySize
Added the following new objects to cpmThreadTable.
cpmThreadStackSizeOvrflw, cpmThreadHCStackSize
Added the following new objects to cpmVirtualProcessTable.
cpmVirtualProcessMemAllocatedOvrflw,
cpmVirtualProcessHCMemAllocated,
cpmVirtualProcessMemFreedOvrflw, cpmVirtualProcessHCMemFreed
Added following new compliance groups.
cpmCPUTotalOverflowGroup, cpmCPUTotalOverflowGroup,
cpmProcessExtRevOverflowGroup, cpmProcessExtRevHCGroup,
cpmThreadOverflowGroup, cpmThreadHCGroup,
cpmVirtualProcessOverflowGroup, cpmVirtualProcessHCGroup
Added new compliance cProcessMIBComplianceRev3 which deprecates
cProcessMIBComplianceRev2."
REVISION "200703230000Z"
DESCRIPTION
"Added new objects to support POSIX compliant OS. Added
cpmThread, cpmThreadTable, cpmVirtualProcess,
cpmVirtualProcessTable and updated cpmCPUTotalTable,
cpmProcessExtRevTable. Added cProcessMIBComplianceRev2
by deprecating cProcessMIBComplianceRev1. Added
cpmCPUPosixMemoryGroup, cpmPosixProcessGroup,
cpmThreadGroup, cpmVirtualProcessGroup."
REVISION "200301220000Z"
DESCRIPTION
"cpmCPUThresholdTable, cpmCPUHistoryTable,
cpmCPUProcessHistoryTable are added for CPU thresholding
feature."
REVISION "200105180000Z"
DESCRIPTION
"The objects cpmProcExtUtil5Sec, cpmProcExtUtil1Min,
cpmProcExtUtil5Min,cpmCPUTotal5sec, cpmCPUTotal1min
and cpmCPUTotal5min are deprecated to increase the
value range as 0..100. The table cpmProcessExtTable
is deprecated. The new objects added are
cpmProcessExtRevTable, cpmProcExtMemAllocatedRev,
cpmProcExtMemFreedRev, cpmProcExtInvokedRev,
cpmProcExtRuntimeRev, cpmProcExtUtil5SecRev,
cpmProcExtUtil1MinRev, cpmCPUTotal5MinRev,
cpmCPUTotal5secRev, cpmCPUTotal1minRev and
cpmCPUTotal5minRev."
REVISION "9804150000Z"
DESCRIPTION
"Initial version of this MIB."
::= { ciscoMgmt 109 }
CPULoadAverage ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"The average number of processes in the queue waiting for CPU
time over the last N minutes, where the N is defined by the
object using this TC. This is similar to UNIX/Linux system load
average. The calculation may vary by different OS kernels, so
refer to the specific system document of your interest.
The object value, which uses this TC, reflects the average
number of runnable processes with units of hundredths of
processes, i.e. a value of 183 indicates the average number of
runnable processes over the N minutes is 1.83."
SYNTAX Unsigned32
-- This MIB displays memory and CPU utilization on cisco 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.
ciscoProcessMIBObjects OBJECT IDENTIFIER
::= { ciscoProcessMIB 1 }
cpmCPU OBJECT IDENTIFIER
::= { ciscoProcessMIBObjects 1 }
cpmProcess OBJECT IDENTIFIER
::= { ciscoProcessMIBObjects 2 }
cpmThread OBJECT IDENTIFIER
::= { ciscoProcessMIBObjects 3 }
cpmVirtualProcess OBJECT IDENTIFIER
::= { ciscoProcessMIBObjects 4 }
cpmCPUHistory OBJECT IDENTIFIER
::= { cpmProcess 5 }
-- Cisco CPU Total Table
cpmCPUTotalTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpmCPUTotalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of overall CPU statistics."
::= { cpmCPU 1 }
cpmCPUTotalEntry OBJECT-TYPE
SYNTAX CpmCPUTotalEntry
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 { cpmCPUTotalIndex }
::= { cpmCPUTotalTable 1 }
CpmCPUTotalEntry ::= SEQUENCE {
cpmCPUTotalIndex Unsigned32,
cpmCPUTotalPhysicalIndex EntPhysicalIndexOrZero,
cpmCPUTotal5sec Gauge32,
cpmCPUTotal1min Gauge32,
cpmCPUTotal5min Gauge32,
cpmCPUTotal5secRev Gauge32,
cpmCPUTotal1minRev Gauge32,
cpmCPUTotal5minRev Gauge32,
cpmCPUMonInterval Unsigned32,
cpmCPUTotalMonIntervalValue Gauge32,
cpmCPUInterruptMonIntervalValue Gauge32,
cpmCPUMemoryUsed Gauge32,
cpmCPUMemoryFree Gauge32,
cpmCPUMemoryKernelReserved Gauge32,
cpmCPUMemoryLowest Gauge32,
cpmCPUMemoryUsedOvrflw Gauge32,
cpmCPUMemoryHCUsed CounterBasedGauge64,
cpmCPUMemoryFreeOvrflw Gauge32,
cpmCPUMemoryHCFree Counter64,
cpmCPUMemoryKernelReservedOvrflw Gauge32,
cpmCPUMemoryHCKernelReserved CounterBasedGauge64,
cpmCPUMemoryLowestOvrflw Gauge32,
cpmCPUMemoryHCLowest CounterBasedGauge64,
cpmCPULoadAvg1min CPULoadAverage,
cpmCPULoadAvg5min CPULoadAverage,
cpmCPULoadAvg15min CPULoadAverage,
cpmCPUMemoryCommitted Gauge32,
cpmCPUMemoryCommittedOvrflw Gauge32,
cpmCPUMemoryHCCommitted CounterBasedGauge64
}
cpmCPUTotalIndex 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."
::= { cpmCPUTotalEntry 1 }
cpmCPUTotalPhysicalIndex 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."
::= { cpmCPUTotalEntry 2 }
cpmCPUTotal5sec OBJECT-TYPE
SYNTAX Gauge32 (1..100)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The overall CPU busy percentage in the last 5 second
period. This object obsoletes the busyPer object from
the OLD-CISCO-SYSTEM-MIB. This object is deprecated
by cpmCPUTotal5secRev which has the changed range of
value (0..100)."
::= { cpmCPUTotalEntry 3 }
cpmCPUTotal1min OBJECT-TYPE
SYNTAX Gauge32 (1..100)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The overall CPU busy percentage in the last 1 minute
period. This object obsoletes the avgBusy1 object from
the OLD-CISCO-SYSTEM-MIB. This object is deprecated
by cpmCPUTotal1minRev which has the changed range
of value (0..100)."
::= { cpmCPUTotalEntry 4 }
cpmCPUTotal5min OBJECT-TYPE
SYNTAX Gauge32 (1..100)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The overall CPU busy percentage in the last 5 minute
period. This object deprecates the avgBusy5 object from
the OLD-CISCO-SYSTEM-MIB. This object is deprecated
by cpmCPUTotal5minRev which has the changed range
of value (0..100)."
::= { cpmCPUTotalEntry 5 }
cpmCPUTotal5secRev OBJECT-TYPE
SYNTAX Gauge32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The overall CPU busy percentage in the last 5 second
period. This object deprecates the object cpmCPUTotal5sec
and increases the value range to (0..100). This object
is deprecated by cpmCPUTotalMonIntervalValue"
::= { cpmCPUTotalEntry 6 }
cpmCPUTotal1minRev OBJECT-TYPE
SYNTAX Gauge32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU busy percentage in the last 1 minute
period. This object deprecates the object cpmCPUTotal1min
and increases the value range to (0..100)."
::= { cpmCPUTotalEntry 7 }
cpmCPUTotal5minRev OBJECT-TYPE
SYNTAX Gauge32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU busy percentage in the last 5 minute
period. This object deprecates the object cpmCPUTotal5min
and increases the value range to (0..100)."
::= { cpmCPUTotalEntry 8 }
cpmCPUMonInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU usage monitoring interval. The value of this
object in seconds indicates the how often the
CPU utilization is calculated and monitored."
::= { cpmCPUTotalEntry 9 }
cpmCPUTotalMonIntervalValue OBJECT-TYPE
SYNTAX Gauge32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU busy percentage in the last
cpmCPUMonInterval period.
This object deprecates the object cpmCPUTotal5secRev."
::= { cpmCPUTotalEntry 10 }
cpmCPUInterruptMonIntervalValue OBJECT-TYPE
SYNTAX Gauge32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU busy percentage in the
interrupt context in the last cpmCPUMonInterval
period."
::= { cpmCPUTotalEntry 11 }
cpmCPUMemoryUsed OBJECT-TYPE
SYNTAX Gauge32
UNITS "kilo-bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU wide system memory which is currently
under use."
::= { cpmCPUTotalEntry 12 }
cpmCPUMemoryFree OBJECT-TYPE
SYNTAX Gauge32
UNITS "kilo-bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU wide system memory which is currently
free."
::= { cpmCPUTotalEntry 13 }
cpmCPUMemoryKernelReserved OBJECT-TYPE
SYNTAX Gauge32
UNITS "kilo-bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU wide system memory which is reserved
for kernel usage."
::= { cpmCPUTotalEntry 14 }
cpmCPUMemoryLowest OBJECT-TYPE
SYNTAX Gauge32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest free memory that has been recorded since
device has booted."
::= { cpmCPUTotalEntry 15 }
cpmCPUMemoryUsedOvrflw OBJECT-TYPE
SYNTAX Gauge32
UNITS "kilo-bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the upper 32-bit of cpmCPUMemoryUsed.
This object needs to be supported only when the value of
cpmCPUMemoryUsed exceeds 32-bit, otherwise this object value
would be set to 0."
::= { cpmCPUTotalEntry 16 }
cpmCPUMemoryHCUsed OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "kilo-bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU wide system memory which is currently under
use. This object is a 64-bit version of cpmCPUMemoryUsed."
::= { cpmCPUTotalEntry 17 }
cpmCPUMemoryFreeOvrflw OBJECT-TYPE
SYNTAX Gauge32
UNITS "kilo-bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the upper 32-bit of cpmCPUMemoryFree.
This object needs to be supported only when the value of
cpmCPUMemoryFree exceeds 32-bit, otherwise this object value
would be set to 0."
::= { cpmCPUTotalEntry 18 }
cpmCPUMemoryHCFree OBJECT-TYPE
SYNTAX Counter64
UNITS "kilo-bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU wide system memory which is currently free.
This object is a 64-bit version of cpmCPUMemoryFree."
::= { cpmCPUTotalEntry 19 }
cpmCPUMemoryKernelReservedOvrflw OBJECT-TYPE
SYNTAX Gauge32
UNITS "kilo-bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the upper 32-bit of
cpmCPUMemoryKernelReserved. This object needs
to be supported only when the value of
cpmCPUMemoryKernelReserved exceeds 32-bit, otherwise
this object value would be set to 0."
::= { cpmCPUTotalEntry 20 }
cpmCPUMemoryHCKernelReserved OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "kilo-bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU wide system memory which is reserved
for kernel usage. This object is a 64-bit version of
cpmCPUMemoryKernelReserved."
::= { cpmCPUTotalEntry 21 }
cpmCPUMemoryLowestOvrflw OBJECT-TYPE
SYNTAX Gauge32
UNITS "kilo-bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the upper 32-bit of cpmCPUMemoryLowest.
This object needs to be supported only when the value of
cpmCPUMemoryLowest exceeds 32-bit, otherwise this object value
would be set to 0."
::= { cpmCPUTotalEntry 22 }
cpmCPUMemoryHCLowest OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "kilo-bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest free memory that has been recorded since device has
booted. This object is a 64-bit version of cpmCPUMemoryLowest."
::= { cpmCPUTotalEntry 23 }
cpmCPULoadAvg1min OBJECT-TYPE
SYNTAX CPULoadAverage
UNITS "hundredths of processes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU load Average in the last 1 minute period"
::= { cpmCPUTotalEntry 24 }
cpmCPULoadAvg5min OBJECT-TYPE
SYNTAX CPULoadAverage
UNITS "hundredths of processes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU load Average in the last 5 minutes period"
::= { cpmCPUTotalEntry 25 }
cpmCPULoadAvg15min OBJECT-TYPE
SYNTAX CPULoadAverage
UNITS "hundredths of processes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU load Average in the last 15 minutes period"
::= { cpmCPUTotalEntry 26 }
cpmCPUMemoryCommitted OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU wide system memory which is currently
Committed."
::= { cpmCPUTotalEntry 27 }
cpmCPUMemoryCommittedOvrflw OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the upper 32-bit of
cpmCPUMemoryCommitted.
This object needs to be supported only when the value of
cpmCPUMemoryCommitted exceeds 32-bit, otherwise this object
value would be set to 0."
::= { cpmCPUTotalEntry 28 }
cpmCPUMemoryHCCommitted OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall CPU wide system memory which is currently
committed. This object is a 64-bit version of
cpmCPUMemoryCommitted"
::= { cpmCPUTotalEntry 29 }
-- Cisco Processes Common Table
cpmProcessTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpmProcessEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of generic information on all active
processes on this device."
::= { cpmProcess 1 }
cpmProcessEntry OBJECT-TYPE
SYNTAX CpmProcessEntry
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 {
cpmCPUTotalIndex,
cpmProcessPID
}
::= { cpmProcessTable 1 }
CpmProcessEntry ::= SEQUENCE {
cpmProcessPID Unsigned32,
cpmProcessName DisplayString,
cpmProcessuSecs Unsigned32,
cpmProcessTimeCreated TimeStamp,
cpmProcessAverageUSecs Unsigned32
}
cpmProcessPID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the process ID. cpmTimeCreated
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."
::= { cpmProcessEntry 1 }
cpmProcessName 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."
::= { cpmProcessEntry 2 }
cpmProcessuSecs OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Average elapsed CPU time in microseconds when the
process was active. This object is deprecated
by cpmProcessAverageUSecs."
::= { cpmProcessEntry 4 }
cpmProcessTimeCreated 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."
::= { cpmProcessEntry 5 }
cpmProcessAverageUSecs OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average elapsed CPU time in microseconds when the
process was active. This object deprecates the
object cpmProcessuSecs."
::= { cpmProcessEntry 6 }
-- Cisco processes detail Table. This table is mandatory on systems
-- that have the internal capability to keep the information.
cpmProcessExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpmProcessExtEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"This table contains information that may or may
not be available on all cisco devices. It contains
additional objects for the more general
cpmProcessTable. This object is deprecated by
cpmProcessExtRevTable."
::= { cpmProcess 2 }
cpmProcessExtEntry OBJECT-TYPE
SYNTAX CpmProcessExtEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An entry containing additional information for
a particular process. This object is deprecated by
cpmProcessExtRevEntry."
AUGMENTS { cpmProcessEntry }
::= { cpmProcessExtTable 1 }
CpmProcessExtEntry ::= SEQUENCE {
cpmProcExtMemAllocated Gauge32,
cpmProcExtMemFreed Gauge32,
cpmProcExtInvoked Counter32,
cpmProcExtRuntime Counter32,
cpmProcExtUtil5Sec Gauge32,
cpmProcExtUtil1Min Gauge32,
cpmProcExtUtil5Min Gauge32,
cpmProcExtPriority INTEGER
}
cpmProcExtMemAllocated OBJECT-TYPE
SYNTAX Gauge32
UNITS "bytes"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The sum of all the dynamically allocated memory that
this process has received from the system. This includes
memory that may have been returned. The sum of freed
memory is provided by cpmProcExtMemFreed. This object
is deprecated by cpmProcExtMemAllocatedRev."
::= { cpmProcessExtEntry 1 }
cpmProcExtMemFreed OBJECT-TYPE
SYNTAX Gauge32
UNITS "bytes"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The sum of all memory that this process has returned
to the system. This object is deprecated by
cpmProcExtMemFreedRev."
::= { cpmProcessExtEntry 2 }
cpmProcExtInvoked OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The number of times since cpmTimeCreated that
the process has been invoked. This object is
deprecated by cpmProcExtInvokedRev."
::= { cpmProcessExtEntry 3 }
cpmProcExtRuntime OBJECT-TYPE
SYNTAX Counter32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The amount of CPU time the process has used, in
microseconds. This object is deprecated by
cpmProcExtRuntimeRev."
::= { cpmProcessExtEntry 4 }
cpmProcExtUtil5Sec OBJECT-TYPE
SYNTAX Gauge32 (1..100)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object provides a general idea of how busy
a process caused the processor to be over a 5
second period. It is determined as a weighted
decaying average of the current idle time over
the longest idle time. Note that this information
should be used as an estimate only. This object is
deprecated by cpmProcExtUtil5SecRev which has the
changed range of value (0..100)."
::= { cpmProcessExtEntry 5 }
cpmProcExtUtil1Min OBJECT-TYPE
SYNTAX Gauge32 (1..100)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object provides a general idea of how busy
a process caused the processor to be over a 1
minute period. It is determined as a weighted
decaying average of the current idle time over the
longest idle time. Note that this information
should be used as an estimate only. This object is
deprecated by cpmProcExtUtil1MinRev which has
the changed range of value (0..100)."
::= { cpmProcessExtEntry 6 }
cpmProcExtUtil5Min OBJECT-TYPE
SYNTAX Gauge32 (1..100)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object provides a general idea of how busy
a process caused the processor to be over a 5
minute period. It is determined as a weighted
decaying average of the current idle time over
the longest idle time. Note that this information
should be used as an estimate only. This object
is deprecated by cpmProcExtUtil5MinRev which
has the changed range of value (0..100)."
::= { cpmProcessExtEntry 7 }
cpmProcExtPriority OBJECT-TYPE
SYNTAX INTEGER {
critical(1),
high(2),
normal(3),
low(4),
notAssigned(5)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The priority level at which the process is
running. This object is deprecated by
cpmProcExtPriorityRev."
::= { cpmProcessExtEntry 8 }
cpmProcessExtRevTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpmProcessExtRevEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information that may or may
not be available on all cisco devices. It contains
additional objects for the more general
cpmProcessTable. This object deprecates
cpmProcessExtTable."
::= { cpmProcess 3 }
cpmProcessExtRevEntry OBJECT-TYPE
SYNTAX CpmProcessExtRevEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing additional information for
a particular process. This object deprecates
cpmProcessExtEntry."
INDEX {
cpmCPUTotalIndex,
cpmProcessPID
}
::= { cpmProcessExtRevTable 1 }
CpmProcessExtRevEntry ::= SEQUENCE {
cpmProcExtMemAllocatedRev Gauge32,
cpmProcExtMemFreedRev Gauge32,
cpmProcExtInvokedRev Counter32,
cpmProcExtRuntimeRev Counter32,
cpmProcExtUtil5SecRev Gauge32,
cpmProcExtUtil1MinRev Gauge32,
cpmProcExtUtil5MinRev Gauge32,
cpmProcExtPriorityRev INTEGER,
cpmProcessType INTEGER,
cpmProcessRespawn TruthValue,
cpmProcessRespawnCount Counter32,
cpmProcessRespawnAfterLastPatch Counter32,
cpmProcessMemoryCore INTEGER,
cpmProcessLastRestartUser SnmpAdminString,
cpmProcessTextSegmentSize Unsigned32,
cpmProcessDataSegmentSize Gauge32,
cpmProcessStackSize Gauge32,
cpmProcessDynamicMemorySize Gauge32,
cpmProcExtMemAllocatedRevOvrflw Gauge32,
cpmProcExtHCMemAllocatedRev CounterBasedGauge64,
cpmProcExtMemFreedRevOvrflw Gauge32,
cpmProcExtHCMemFreedRev CounterBasedGauge64,
cpmProcessTextSegmentSizeOvrflw Unsigned32,
cpmProcessHCTextSegmentSize Unsigned64,
cpmProcessDataSegmentSizeOvrflw Gauge32,
cpmProcessHCDataSegmentSize CounterBasedGauge64,
cpmProcessStackSizeOvrflw Gauge32,
cpmProcessHCStackSize CounterBasedGauge64,
cpmProcessDynamicMemorySizeOvrflw Gauge32,
cpmProcessHCDynamicMemorySize CounterBasedGauge64
}
cpmProcExtMemAllocatedRev OBJECT-TYPE
SYNTAX Gauge32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sum of all the dynamically allocated memory that
this process has received from the system. This includes
memory that may have been returned. The sum of freed
memory is provided by cpmProcExtMemFreedRev. This object
deprecates cpmProcExtMemAllocated."
::= { cpmProcessExtRevEntry 1 }
cpmProcExtMemFreedRev OBJECT-TYPE
SYNTAX Gauge32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sum of all memory that this process has returned
to the system. This object deprecates
cpmProcExtMemFreed."
::= { cpmProcessExtRevEntry 2 }
cpmProcExtInvokedRev OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times since cpmTimeCreated that
the process has been invoked. This object
deprecates cpmProcExtInvoked."
::= { cpmProcessExtRevEntry 3 }
cpmProcExtRuntimeRev OBJECT-TYPE
SYNTAX Counter32
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of CPU time the process has used, in
microseconds. This object deprecates
cpmProcExtRuntime."
::= { cpmProcessExtRevEntry 4 }
cpmProcExtUtil5SecRev OBJECT-TYPE
SYNTAX Gauge32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides a general idea of how busy
a process caused the processor to be over a 5
second period. It is determined as a weighted
decaying average of the current idle time over
the longest idle time. Note that this information
should be used as an estimate only. This object
deprecates cpmProcExtUtil5Sec and increases the
value range to (0..100)."
::= { cpmProcessExtRevEntry 5 }
cpmProcExtUtil1MinRev OBJECT-TYPE
SYNTAX Gauge32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides a general idea of how busy
a process caused the processor to be over a 1
minute period. It is determined as a weighted
decaying average of the current idle time over the
longest idle time. Note that this information
should be used as an estimate only. This object
deprecates cpmProcExtUtil1Min and increases the value
range to (0..100)."
::= { cpmProcessExtRevEntry 6 }
cpmProcExtUtil5MinRev OBJECT-TYPE
SYNTAX Gauge32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides a general idea of how busy
a process caused the processor to be over a 5
minute period. It is determined as a weighted
decaying average of the current idle time over
the longest idle time. Note that this information
should be used as an estimate only. This object
deprecates cpmProcExtUtil5Min and increases the
value range to (0..100)."
::= { cpmProcessExtRevEntry 7 }
cpmProcExtPriorityRev OBJECT-TYPE
SYNTAX INTEGER {
critical(1),
high(2),
normal(3),
low(4),
notAssigned(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The priority level at which the process is
running. This object deprecates
cpmProcExtPriority."
::= { cpmProcessExtRevEntry 8 }
cpmProcessType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
posix(2),
ios(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the kind of process in context."
::= { cpmProcessExtRevEntry 9 }
cpmProcessRespawn OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates whether respawn of a process is enabled
or not. If enabled the process in context repawns after
it has crashed/stopped."
::= { cpmProcessExtRevEntry 10 }
cpmProcessRespawnCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of times the process has
respawned/restarted."
::= { cpmProcessExtRevEntry 11 }
cpmProcessRespawnAfterLastPatch OBJECT-TYPE
SYNTAX Counter32