-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsampleC.nmon
7624 lines (7624 loc) · 467 KB
/
sampleC.nmon
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
AAA,progname,topas_nmon
AAA,command,/usr/bin/topas_nmon -F /SME/nmondata/2014/12/sampleC_20141201_00:00.nmon -T -s 1200 -c 72 -N -L -A -youtput_dir=/SME/nmondata/2014/12/sampleC_20141201_00:00.nmon -ystart_time=00:00:06,Dec01,2014
AAA,version,TOPAS-NMON
AAA,build,AIX
AAA,disks_per_line,150
AAA,host,sampleC
AAA,user,root
AAA,AIX,6.1.7.17
AAA,TL,07
AAA,runname,sampleC
AAA,time,00:00:06
AAA,date,01-DEC-2014
AAA,interval,1200
AAA,snapshots,72
AAA,hardware,Architecture PowerPC Implementation POWER7_in_P7_mode 64 bit
AAA,cpus,28,28
AAA,kernel, HW-type=CHRP=Common H/W Reference Platform Bus=PCI LPAR=Dynamic Multi-Processor 64 bit
AAA,SerialNumber,06F412R
AAA,LPARNumberName,2,sampleC
AAA,MachineType,IBM,8205-E6C
AAA,NodeName,sampleC
AAA,timestampsize,0
AAA,note0, Warning - use the UNIX sort command to order this file before loading into a spreadsheet
AAA,note1, The First Column is simply to get the output sorted in the right order
AAA,note2, The T0001-T9999 column is a snapshot number. To work out the actual time; see the ZZZ section at the end
BBBB,0000,name,size(GB),disc attach type
BBBB,0001,hdisk1,98.43,Disk type NOT SCSI/SSA/SAS/FC = <hdisk1 Available 00-00-02 MPIO 2810 XIV Disk>
BBBC,000,hdisk1:
BBBC,001,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,002,lv.oraarch 769 769 154..154..153..154..154 /oraarch
BBBB,0002,hdisk2,98.43,Disk type NOT SCSI/SSA/SAS/FC = <hdisk2 Available 00-01-02 MPIO 2810 XIV Disk>
BBBC,003,hdisk2:
BBBC,004,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,005,lv.oraarch 769 769 154..154..153..154..154 /oraarch
BBBB,0003,hdisk3,98.43,Disk type NOT SCSI/SSA/SAS/FC = <hdisk3 Available 00-01-02 MPIO 2810 XIV Disk>
BBBC,006,hdisk3:
BBBC,007,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,008,lv.oraarch 222 222 00..154..68..00..00 /oraarch
BBBC,009,lv.oraarch2 20 20 06..00..14..00..00 /oraarch2
BBBB,0004,hdisk4,492.03,Disk type NOT SCSI/SSA/SAS/FC = <hdisk4 Available 00-01-02 MPIO 2810 XIV Disk>
BBBC,010,hdisk4:
BBBC,011,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,012,lv.orabk 961 961 193..192..192..192..192 /orabk
BBBB,0005,hdisk5,492.03,Disk type NOT SCSI/SSA/SAS/FC = <hdisk5 Available 00-01-02 MPIO 2810 XIV Disk>
BBBC,013,hdisk5:
BBBC,014,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,015,lv.orabk 961 961 193..192..192..192..192 /orabk
BBBB,0006,hdisk6,492.03,Disk type NOT SCSI/SSA/SAS/FC = <hdisk6 Available 00-01-02 MPIO 2810 XIV Disk>
BBBC,016,hdisk6:
BBBC,017,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,018,lv.orabk 961 961 193..192..192..192..192 /orabk
BBBB,0007,hdisk7,492.03,Disk type NOT SCSI/SSA/SAS/FC = <hdisk7 Available 01-00-02 MPIO 2810 XIV Disk>
BBBC,019,hdisk7:
BBBC,020,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,021,lv.orabk2 478 478 193..03..192..90..00 /orabk2
BBBC,022,lv.orabk 189 189 00..189..00..00..00 /orabk
BBBB,0008,hdisk0,98.43,Disk type NOT SCSI/SSA/SAS/FC = <hdisk0 Available 00-00-02 MPIO 2810 XIV Disk>
BBBC,023,hdisk0:
BBBC,024,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,025,hd4 40 40 00..00..40..00..00 /
BBBC,026,hd2 56 56 00..00..40..16..00 /usr
BBBC,027,hd9var 32 32 00..00..32..00..00 /var
BBBC,028,hd3 16 16 00..00..16..00..00 /tmp
BBBC,029,hd1 56 56 04..00..18..34..00 /home
BBBC,030,hd10opt 48 48 08..00..00..40..00 /opt
BBBC,031,hd5 4 4 04..00..00..00..00 N/A
BBBC,032,hd6 196 196 02..154..06..34..00 N/A
BBBC,033,hd8 1 1 00..00..01..00..00 N/A
BBBC,034,fslv00 16 16 00..00..00..16..00 /SME
BBBC,035,itmlv 16 16 16..00..00..00..00 /opt/IBM/ITM
BBBC,036,livedump 4 4 04..00..00..00..00 /var/adm/ras/livedump
BBBC,037,lg_dumplv 32 32 16..00..00..14..02 N/A
BBBC,038,nmonlv 40 40 40..00..00..00..00 /nmon
BBBC,039,csilv 56 56 56..00..00..00..00 /csi
BBBC,040,hd11admin 4 4 04..00..00..00..00 /admin
BBBB,0009,hdisk8,492.03,Disk type NOT SCSI/SSA/SAS/FC = <hdisk8 Available 01-00-02 MPIO 2810 XIV Disk>
BBBC,041,hdisk8:
BBBC,042,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,043,lv.orabk2 961 961 193..192..192..192..192 /orabk2
BBBB,0010,hdisk9,492.03,Disk type NOT SCSI/SSA/SAS/FC = <hdisk9 Available 01-00-02 MPIO 2810 XIV Disk>
BBBC,044,hdisk9:
BBBC,045,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,046,lv.orabk2 961 961 193..192..192..192..192 /orabk2
BBBB,0011,hdisk10,492.03,Disk type NOT SCSI/SSA/SAS/FC = <hdisk10 Available 01-00-02 MPIO 2810 XIV Disk>
BBBC,047,hdisk10:
BBBC,048,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,049,lv.oradata 961 961 193..192..192..192..192 /oradata
BBBB,0012,hdisk11,492.03,Disk type NOT SCSI/SSA/SAS/FC = <hdisk11 Available 01-00-02 MPIO 2810 XIV Disk>
BBBC,050,hdisk11:
BBBC,051,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,052,lv.oradata 961 961 193..192..192..192..192 /oradata
BBBB,0013,hdisk12,492.03,Disk type NOT SCSI/SSA/SAS/FC = <hdisk12 Available 01-00-02 MPIO 2810 XIV Disk>
BBBC,053,hdisk12:
BBBC,054,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,055,lv.oradata 961 961 193..192..192..192..192 /oradata
BBBB,0014,hdisk16,49.15,Disk type NOT SCSI/SSA/SAS/FC = <hdisk16 Available 01-00-02 MPIO 2810 XIV Disk>
BBBC,056,hdisk16:
BBBC,057,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,058,lv.oratemp 240 240 77..77..76..10..00 /oratemp
BBBB,0015,hdisk13,492.03,Disk type NOT SCSI/SSA/SAS/FC = <hdisk13 Available 01-00-02 MPIO 2810 XIV Disk>
BBBC,059,hdisk13:
BBBC,060,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,061,lv.oradata2 8 8 08..00..00..00..00 /oradata2
BBBC,062,lv.oradata 317 317 00..192..125..00..00 /oradata
BBBB,0016,hdisk15,32.77,Disk type NOT SCSI/SSA/SAS/FC = <hdisk15 Available 01-00-02 MPIO 2810 XIV Disk>
BBBC,063,hdisk15:
BBBC,064,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,065,lv.oraredo1 36 36 00..36..00..00..00 /oraredo1
BBBC,066,lv.oraredo2 36 36 36..00..00..00..00 /oraredo2
BBBC,067,lv.oraredo3 36 36 00..15..21..00..00 /oraredo3
BBBB,0017,hdisk14,49.15,Disk type NOT SCSI/SSA/SAS/FC = <hdisk14 Available 01-00-02 MPIO 2810 XIV Disk>
BBBC,068,hdisk14:
BBBC,069,LV NAME LPs PPs DISTRIBUTION MOUNT POINT
BBBC,070,lv.orainst 384 384 77..77..76..77..77 /orainst
BBBC,071,hdisk0 00f7f412affdfd65 rootvg active
BBBC,072,hdisk10 00f7f412dad6eef1 vg.oradata active
BBBC,073,hdisk11 00f7f412dad6ef3b vg.oradata active
BBBC,074,hdisk4 00f7f412dab413ea vg.orabk active
BBBC,075,hdisk12 00f7f412dad6ef84 vg.oradata active
BBBC,076,hdisk13 00f7f412dad6efcc vg.oradata active
BBBC,077,hdisk5 00f7f412dab41435 vg.orabk active
BBBC,078,hdisk1 00f7f412da83b89a vg.oraarch active
BBBC,079,hdisk2 00f7f412da83b8e3 vg.oraarch active
BBBC,080,hdisk3 00f7f412da83b92c vg.oraarch active
BBBC,081,hdisk6 00f7f412dab4147f vg.orabk active
BBBC,082,hdisk7 00f7f412dab414ce vg.orabk active
BBBC,083,hdisk8 00f7f412dab41517 vg.orabk active
BBBC,084,hdisk9 00f7f412dab4155d vg.orabk active
BBBC,085,hdisk14 00f7f412dad777f8 vg.orainst active
BBBC,086,hdisk15 00f7f412dad80bdf vg.oraredo active
BBBC,087,hdisk16 00f7f412dad8c74e vg.oratemp active
BBBV,000,VOLUME GROUP: rootvg VG IDENTIFIER: 00f7f41200004c000000013caffdfe0b
BBBV,001,VG STATE: active PP SIZE: 128 megabyte(s)
BBBV,002,VG PERMISSION: read/write TOTAL PPs: 769 (98432 megabytes)
BBBV,003,MAX LVs: 256 FREE PPs: 152 (19456 megabytes)
BBBV,004,LVs: 16 USED PPs: 617 (78976 megabytes)
BBBV,005,OPEN LVs: 15 QUORUM: 2 (Enabled)
BBBV,006,TOTAL PVs: 1 VG DESCRIPTORS: 2
BBBV,007,STALE PVs: 0 STALE PPs: 0
BBBV,008,ACTIVE PVs: 1 AUTO ON: yes
BBBV,009,MAX PPs per VG: 32512
BBBV,010,MAX PPs per PV: 1016 MAX PVs: 32
BBBV,011,LTG size (Dynamic): 256 kilobyte(s) AUTO SYNC: no
BBBV,012,HOT SPARE: no BB POLICY: relocatable
BBBV,013,PV RESTRICTION: none INFINITE RETRY: no
BBBV,014,
BBBV,015,VOLUME GROUP: vg.oraarch VG IDENTIFIER: 00f7f41200004c000000013cda83b948
BBBV,016,VG STATE: active PP SIZE: 128 megabyte(s)
BBBV,017,VG PERMISSION: read/write TOTAL PPs: 2307 (295296 megabytes)
BBBV,018,MAX LVs: 256 FREE PPs: 527 (67456 megabytes)
BBBV,019,LVs: 2 USED PPs: 1780 (227840 megabytes)
BBBV,020,OPEN LVs: 2 QUORUM: 2 (Enabled)
BBBV,021,TOTAL PVs: 3 VG DESCRIPTORS: 3
BBBV,022,STALE PVs: 0 STALE PPs: 0
BBBV,023,ACTIVE PVs: 3 AUTO ON: yes
BBBV,024,MAX PPs per VG: 32512
BBBV,025,MAX PPs per PV: 1016 MAX PVs: 32
BBBV,026,LTG size (Dynamic): 256 kilobyte(s) AUTO SYNC: no
BBBV,027,HOT SPARE: no BB POLICY: relocatable
BBBV,028,PV RESTRICTION: none INFINITE RETRY: no
BBBV,029,
BBBV,030,VOLUME GROUP: vg.orabk VG IDENTIFIER: 00f7f41200004c000000013cdab415cc
BBBV,031,VG STATE: active PP SIZE: 512 megabyte(s)
BBBV,032,VG PERMISSION: read/write TOTAL PPs: 5766 (2952192 megabytes)
BBBV,033,MAX LVs: 256 FREE PPs: 294 (150528 megabytes)
BBBV,034,LVs: 2 USED PPs: 5472 (2801664 megabytes)
BBBV,035,OPEN LVs: 2 QUORUM: 4 (Enabled)
BBBV,036,TOTAL PVs: 6 VG DESCRIPTORS: 6
BBBV,037,STALE PVs: 0 STALE PPs: 0
BBBV,038,ACTIVE PVs: 6 AUTO ON: yes
BBBV,039,MAX PPs per VG: 32512
BBBV,040,MAX PPs per PV: 1016 MAX PVs: 32
BBBV,041,LTG size (Dynamic): 256 kilobyte(s) AUTO SYNC: no
BBBV,042,HOT SPARE: no BB POLICY: relocatable
BBBV,043,PV RESTRICTION: none INFINITE RETRY: no
BBBV,044,
BBBV,045,VOLUME GROUP: vg.oradata VG IDENTIFIER: 00f7f41200004c000000013cdad6efea
BBBV,046,VG STATE: active PP SIZE: 512 megabyte(s)
BBBV,047,VG PERMISSION: read/write TOTAL PPs: 3844 (1968128 megabytes)
BBBV,048,MAX LVs: 256 FREE PPs: 636 (325632 megabytes)
BBBV,049,LVs: 2 USED PPs: 3208 (1642496 megabytes)
BBBV,050,OPEN LVs: 2 QUORUM: 3 (Enabled)
BBBV,051,TOTAL PVs: 4 VG DESCRIPTORS: 4
BBBV,052,STALE PVs: 0 STALE PPs: 0
BBBV,053,ACTIVE PVs: 4 AUTO ON: yes
BBBV,054,MAX PPs per VG: 32512
BBBV,055,MAX PPs per PV: 1016 MAX PVs: 32
BBBV,056,LTG size (Dynamic): 256 kilobyte(s) AUTO SYNC: no
BBBV,057,HOT SPARE: no BB POLICY: relocatable
BBBV,058,PV RESTRICTION: none INFINITE RETRY: no
BBBV,059,
BBBV,060,VOLUME GROUP: vg.orainst VG IDENTIFIER: 00f7f41200004c000000013cedfdfb8b
BBBV,061,VG STATE: active PP SIZE: 128 megabyte(s)
BBBV,062,VG PERMISSION: read/write TOTAL PPs: 384 (49152 megabytes)
BBBV,063,MAX LVs: 256 FREE PPs: 0 (0 megabytes)
BBBV,064,LVs: 1 USED PPs: 384 (49152 megabytes)
BBBV,065,OPEN LVs: 1 QUORUM: 2 (Enabled)
BBBV,066,TOTAL PVs: 1 VG DESCRIPTORS: 2
BBBV,067,STALE PVs: 0 STALE PPs: 0
BBBV,068,ACTIVE PVs: 1 AUTO ON: yes
BBBV,069,MAX PPs per VG: 32512
BBBV,070,MAX PPs per PV: 1016 MAX PVs: 32
BBBV,071,LTG size (Dynamic): 256 kilobyte(s) AUTO SYNC: no
BBBV,072,HOT SPARE: no BB POLICY: relocatable
BBBV,073,PV RESTRICTION: none INFINITE RETRY: no
BBBV,074,
BBBV,075,VOLUME GROUP: vg.oraredo VG IDENTIFIER: 00f7f41200004c000000013cedfe985d
BBBV,076,VG STATE: active PP SIZE: 128 megabyte(s)
BBBV,077,VG PERMISSION: read/write TOTAL PPs: 256 (32768 megabytes)
BBBV,078,MAX LVs: 256 FREE PPs: 148 (18944 megabytes)
BBBV,079,LVs: 3 USED PPs: 108 (13824 megabytes)
BBBV,080,OPEN LVs: 3 QUORUM: 2 (Enabled)
BBBV,081,TOTAL PVs: 1 VG DESCRIPTORS: 2
BBBV,082,STALE PVs: 0 STALE PPs: 0
BBBV,083,ACTIVE PVs: 1 AUTO ON: yes
BBBV,084,MAX PPs per VG: 32512
BBBV,085,MAX PPs per PV: 1016 MAX PVs: 32
BBBV,086,LTG size (Dynamic): 256 kilobyte(s) AUTO SYNC: no
BBBV,087,HOT SPARE: no BB POLICY: relocatable
BBBV,088,PV RESTRICTION: none INFINITE RETRY: no
BBBV,089,
BBBV,090,VOLUME GROUP: vg.oratemp VG IDENTIFIER: 00f7f41200004c000000013cedff4629
BBBV,091,VG STATE: active PP SIZE: 128 megabyte(s)
BBBV,092,VG PERMISSION: read/write TOTAL PPs: 384 (49152 megabytes)
BBBV,093,MAX LVs: 256 FREE PPs: 144 (18432 megabytes)
BBBV,094,LVs: 1 USED PPs: 240 (30720 megabytes)
BBBV,095,OPEN LVs: 1 QUORUM: 2 (Enabled)
BBBV,096,TOTAL PVs: 1 VG DESCRIPTORS: 2
BBBV,097,STALE PVs: 0 STALE PPs: 0
BBBV,098,ACTIVE PVs: 1 AUTO ON: yes
BBBV,099,MAX PPs per VG: 32512
BBBV,100,MAX PPs per PV: 1016 MAX PVs: 32
BBBV,101,LTG size (Dynamic): 256 kilobyte(s) AUTO SYNC: no
BBBV,102,HOT SPARE: no BB POLICY: relocatable
BBBV,103,PV RESTRICTION: none INFINITE RETRY: no
CPU_ALL,CPU Total sampleC,User%,Sys%,Wait%,Idle%,Busy,PhysicalCPUs
PCPU_ALL,PCPU Total sampleC,User ,Sys ,Wait ,Idle , Entitled Capacity
SCPU_ALL,SCPU Total sampleC,User ,Sys ,Wait ,Idle
CPU01,CPU 1 sampleC,User%,Sys%,Wait%,Idle%
CPU02,CPU 2 sampleC,User%,Sys%,Wait%,Idle%
CPU03,CPU 3 sampleC,User%,Sys%,Wait%,Idle%
CPU04,CPU 4 sampleC,User%,Sys%,Wait%,Idle%
CPU05,CPU 5 sampleC,User%,Sys%,Wait%,Idle%
CPU06,CPU 6 sampleC,User%,Sys%,Wait%,Idle%
CPU07,CPU 7 sampleC,User%,Sys%,Wait%,Idle%
CPU08,CPU 8 sampleC,User%,Sys%,Wait%,Idle%
CPU09,CPU 9 sampleC,User%,Sys%,Wait%,Idle%
CPU10,CPU 10 sampleC,User%,Sys%,Wait%,Idle%
CPU11,CPU 11 sampleC,User%,Sys%,Wait%,Idle%
CPU12,CPU 12 sampleC,User%,Sys%,Wait%,Idle%
CPU13,CPU 13 sampleC,User%,Sys%,Wait%,Idle%
CPU14,CPU 14 sampleC,User%,Sys%,Wait%,Idle%
CPU15,CPU 15 sampleC,User%,Sys%,Wait%,Idle%
CPU16,CPU 16 sampleC,User%,Sys%,Wait%,Idle%
CPU17,CPU 17 sampleC,User%,Sys%,Wait%,Idle%
CPU18,CPU 18 sampleC,User%,Sys%,Wait%,Idle%
CPU19,CPU 19 sampleC,User%,Sys%,Wait%,Idle%
CPU20,CPU 20 sampleC,User%,Sys%,Wait%,Idle%
CPU21,CPU 21 sampleC,User%,Sys%,Wait%,Idle%
CPU22,CPU 22 sampleC,User%,Sys%,Wait%,Idle%
CPU23,CPU 23 sampleC,User%,Sys%,Wait%,Idle%
CPU24,CPU 24 sampleC,User%,Sys%,Wait%,Idle%
CPU25,CPU 25 sampleC,User%,Sys%,Wait%,Idle%
CPU26,CPU 26 sampleC,User%,Sys%,Wait%,Idle%
CPU27,CPU 27 sampleC,User%,Sys%,Wait%,Idle%
CPU28,CPU 28 sampleC,User%,Sys%,Wait%,Idle%
PCPU01,PCPU 1 sampleC,User ,Sys ,Wait ,Idle
PCPU02,PCPU 2 sampleC,User ,Sys ,Wait ,Idle
PCPU03,PCPU 3 sampleC,User ,Sys ,Wait ,Idle
PCPU04,PCPU 4 sampleC,User ,Sys ,Wait ,Idle
PCPU05,PCPU 5 sampleC,User ,Sys ,Wait ,Idle
PCPU06,PCPU 6 sampleC,User ,Sys ,Wait ,Idle
PCPU07,PCPU 7 sampleC,User ,Sys ,Wait ,Idle
PCPU08,PCPU 8 sampleC,User ,Sys ,Wait ,Idle
PCPU09,PCPU 9 sampleC,User ,Sys ,Wait ,Idle
PCPU10,PCPU 10 sampleC,User ,Sys ,Wait ,Idle
PCPU11,PCPU 11 sampleC,User ,Sys ,Wait ,Idle
PCPU12,PCPU 12 sampleC,User ,Sys ,Wait ,Idle
PCPU13,PCPU 13 sampleC,User ,Sys ,Wait ,Idle
PCPU14,PCPU 14 sampleC,User ,Sys ,Wait ,Idle
PCPU15,PCPU 15 sampleC,User ,Sys ,Wait ,Idle
PCPU16,PCPU 16 sampleC,User ,Sys ,Wait ,Idle
PCPU17,PCPU 17 sampleC,User ,Sys ,Wait ,Idle
PCPU18,PCPU 18 sampleC,User ,Sys ,Wait ,Idle
PCPU19,PCPU 19 sampleC,User ,Sys ,Wait ,Idle
PCPU20,PCPU 20 sampleC,User ,Sys ,Wait ,Idle
PCPU21,PCPU 21 sampleC,User ,Sys ,Wait ,Idle
PCPU22,PCPU 22 sampleC,User ,Sys ,Wait ,Idle
PCPU23,PCPU 23 sampleC,User ,Sys ,Wait ,Idle
PCPU24,PCPU 24 sampleC,User ,Sys ,Wait ,Idle
PCPU25,PCPU 25 sampleC,User ,Sys ,Wait ,Idle
PCPU26,PCPU 26 sampleC,User ,Sys ,Wait ,Idle
PCPU27,PCPU 27 sampleC,User ,Sys ,Wait ,Idle
PCPU28,PCPU 28 sampleC,User ,Sys ,Wait ,Idle
SCPU01,SCPU 1 sampleC,User ,Sys ,Wait ,Idle
SCPU02,SCPU 2 sampleC,User ,Sys ,Wait ,Idle
SCPU03,SCPU 3 sampleC,User ,Sys ,Wait ,Idle
SCPU04,SCPU 4 sampleC,User ,Sys ,Wait ,Idle
SCPU05,SCPU 5 sampleC,User ,Sys ,Wait ,Idle
SCPU06,SCPU 6 sampleC,User ,Sys ,Wait ,Idle
SCPU07,SCPU 7 sampleC,User ,Sys ,Wait ,Idle
SCPU08,SCPU 8 sampleC,User ,Sys ,Wait ,Idle
SCPU09,SCPU 9 sampleC,User ,Sys ,Wait ,Idle
SCPU10,SCPU 10 sampleC,User ,Sys ,Wait ,Idle
SCPU11,SCPU 11 sampleC,User ,Sys ,Wait ,Idle
SCPU12,SCPU 12 sampleC,User ,Sys ,Wait ,Idle
SCPU13,SCPU 13 sampleC,User ,Sys ,Wait ,Idle
SCPU14,SCPU 14 sampleC,User ,Sys ,Wait ,Idle
SCPU15,SCPU 15 sampleC,User ,Sys ,Wait ,Idle
SCPU16,SCPU 16 sampleC,User ,Sys ,Wait ,Idle
SCPU17,SCPU 17 sampleC,User ,Sys ,Wait ,Idle
SCPU18,SCPU 18 sampleC,User ,Sys ,Wait ,Idle
SCPU19,SCPU 19 sampleC,User ,Sys ,Wait ,Idle
SCPU20,SCPU 20 sampleC,User ,Sys ,Wait ,Idle
SCPU21,SCPU 21 sampleC,User ,Sys ,Wait ,Idle
SCPU22,SCPU 22 sampleC,User ,Sys ,Wait ,Idle
SCPU23,SCPU 23 sampleC,User ,Sys ,Wait ,Idle
SCPU24,SCPU 24 sampleC,User ,Sys ,Wait ,Idle
SCPU25,SCPU 25 sampleC,User ,Sys ,Wait ,Idle
SCPU26,SCPU 26 sampleC,User ,Sys ,Wait ,Idle
SCPU27,SCPU 27 sampleC,User ,Sys ,Wait ,Idle
SCPU28,SCPU 28 sampleC,User ,Sys ,Wait ,Idle
MEM,Memory sampleC,Real Free %,Virtual free %,Real free(MB),Virtual free(MB),Real total(MB),Virtual total(MB)
MEMNEW,Memory New sampleC,Process%,FScache%,System%,Free%,Pinned%,User%
MEMUSE,Memory Use sampleC,%numperm,%minperm,%maxperm,minfree,maxfree,%numclient,%maxclient, lruable pages
PAGE,Paging sampleC,faults,pgin,pgout,pgsin,pgsout,reclaims,scans,cycles
LARGEPAGE,Large Page Use sampleC,Freepages,Usedpages,Pages,HighWater,SizeMB
PROC,Processes sampleC,Runnable,Swap-in,pswitch,syscall,read,write,fork,exec,sem,msg,asleep_bufio,asleep_rawio,asleep_diocio
FILE,File I/O sampleC,iget,namei,dirblk,readch,writech,ttyrawch,ttycanch,ttyoutch
PROCAIO,Asynchronous I/O sampleC,aioprocs,aiorunning,aiocpu
NFSSVRV2,NFS Server v2 sampleC,null,getattr,setattr,root,lookup,readlink,read,wrcache,write,create,remove,rename,link,symlink,mkdir,rmdir,readdir,fsstat
NFSSVRV3,NFS Server v3 sampleC,null,getattr,setattr,lookup,access,readlink,read,write,create,mkdir,symlink,mknod,remove,rmdir,rename,link,readdir,readdirp,fsstat,fsinfo,pathconf,commit
NFSCLIV2,NFS Client v2 sampleC,null,getattr,setattr,root,lookup,readlink,read,wrcache,write,create,remove,rename,link,symlink,mkdir,rmdir,readdir,fsstat
NFSCLIV3,NFS Client v3 sampleC,null,getattr,setattr,lookup,access,readlink,read,write,create,mkdir,symlink,mknod,remove,rmdir,rename,link,readdir,readdirp,fsstat,fsinfo,pathconf,commit
BBBN,000,NetworkName,MTU,Mbits,Name
BBBN,001,en8,1500,10240,Standard Ethernet Network Interface
BBBN,002,en9,1500,1024,Standard Ethernet Network Interface
BBBN,003,en10,1500,1024,Standard Ethernet Network Interface
BBBN,004,lo0,16896,0,Loopback Network Interface
NET,Network I/O sampleC,en8-read-KB/s,en9-read-KB/s,en10-read-KB/s,lo0-read-KB/s,en8-write-KB/s,en9-write-KB/s,en10-write-KB/s,lo0-write-KB/s
NETPACKET,Network Packets sampleC,en8-reads/s,en9-reads/s,en10-reads/s,lo0-reads/s,en8-writes/s,en9-writes/s,en10-writes/s,lo0-writes/s
NETSIZE,Network Size sampleC,en8-readsize,en9-readsize,en10-readsize,lo0-readsize,en8-writesize,en9-writesize,en10-writesize,lo0-writesize
NETERROR,Network Errors sampleC,en8-ierrs,en9-ierrs,en10-ierrs,lo0-ierrs,en8-oerrs,en9-oerrs,en10-oerrs,lo0-oerrs,en8-collisions,en9-collisions,en10-collisions,lo0-collisions
DISKBUSY,Disk %Busy sampleC,hdisk1,hdisk2,hdisk3,hdisk4,hdisk5,hdisk6,hdisk7,hdisk0,hdisk8,hdisk9,hdisk10,hdisk11,hdisk12,hdisk16,hdisk13,hdisk15,hdisk14
DISKREAD,Disk Read KB/s sampleC,hdisk1,hdisk2,hdisk3,hdisk4,hdisk5,hdisk6,hdisk7,hdisk0,hdisk8,hdisk9,hdisk10,hdisk11,hdisk12,hdisk16,hdisk13,hdisk15,hdisk14
DISKWRITE,Disk Write KB/s sampleC,hdisk1,hdisk2,hdisk3,hdisk4,hdisk5,hdisk6,hdisk7,hdisk0,hdisk8,hdisk9,hdisk10,hdisk11,hdisk12,hdisk16,hdisk13,hdisk15,hdisk14
DISKXFER,Disk transfers per second sampleC,hdisk1,hdisk2,hdisk3,hdisk4,hdisk5,hdisk6,hdisk7,hdisk0,hdisk8,hdisk9,hdisk10,hdisk11,hdisk12,hdisk16,hdisk13,hdisk15,hdisk14
DISKRXFER,Transfers from disk (reads) per second sampleC,hdisk1,hdisk2,hdisk3,hdisk4,hdisk5,hdisk6,hdisk7,hdisk0,hdisk8,hdisk9,hdisk10,hdisk11,hdisk12,hdisk16,hdisk13,hdisk15,hdisk14
DISKBSIZE,Disk Block Size sampleC,hdisk1,hdisk2,hdisk3,hdisk4,hdisk5,hdisk6,hdisk7,hdisk0,hdisk8,hdisk9,hdisk10,hdisk11,hdisk12,hdisk16,hdisk13,hdisk15,hdisk14
DISKRIO,Disk IO Reads per second sampleC,hdisk1,hdisk2,hdisk3,hdisk4,hdisk5,hdisk6,hdisk7,hdisk0,hdisk8,hdisk9,hdisk10,hdisk11,hdisk12,hdisk16,hdisk13,hdisk15,hdisk14
DISKWIO,Disk IO Writes per second sampleC,hdisk1,hdisk2,hdisk3,hdisk4,hdisk5,hdisk6,hdisk7,hdisk0,hdisk8,hdisk9,hdisk10,hdisk11,hdisk12,hdisk16,hdisk13,hdisk15,hdisk14
DISKAVGRIO,Disk IO Average Reads per second sampleC,hdisk1,hdisk2,hdisk3,hdisk4,hdisk5,hdisk6,hdisk7,hdisk0,hdisk8,hdisk9,hdisk10,hdisk11,hdisk12,hdisk16,hdisk13,hdisk15,hdisk14
DISKAVGWIO,Disk IO Average Writes per second sampleC,hdisk1,hdisk2,hdisk3,hdisk4,hdisk5,hdisk6,hdisk7,hdisk0,hdisk8,hdisk9,hdisk10,hdisk11,hdisk12,hdisk16,hdisk13,hdisk15,hdisk14
IOADAPT,Disk Adapter sampleC,fcs1_read-KB/s,fcs1_write-KB/s,fcs1_xfer-tps,fcs0_read-KB/s,fcs0_write-KB/s,fcs0_xfer-tps,fcs2_read-KB/s,fcs2_write-KB/s,fcs2_xfer-tps,fcs3_read-KB/s,fcs3_write-KB/s,fcs3_xfer-tps
BBBD,000,Disk Adapter Information sampleC
BBBD,001,Adapter_number,Name,Disks, Description
BBBD,002,0,"fcs1",17,"8Gb PCI Express Dual Port FC Adapter (df1000f114108a03)"
BBBD,003,1,"fcs0",17,"8Gb PCI Express Dual Port FC Adapter (df1000f114108a03)"
BBBD,004,2,"fcs2",17,"8Gb PCI Express Dual Port FC Adapter (df1000f114108a03)"
BBBD,005,3,"fcs3",17,"8Gb PCI Express Dual Port FC Adapter (df1000f114108a03)"
BBBL,01,lparno,2
BBBL,02,lparname,sampleC
BBBL,03,CPU in sys,12
BBBL,04,Virtual CPU,7
BBBL,05,Logical CPU,28
BBBL,06,Pool CPU,8
BBBL,07,smt threads,4
BBBL,08,capped,0
BBBL,09,min Virtual,1
BBBL,10,max Virtual,7
BBBL,11,min Logical,1
BBBL,12,max Logical,28
BBBL,13,min Capacity,1.0
BBBL,14,max Capacity,7.0
BBBL,15,Entitled Capacity,7.0
BBBL,16,Weight,200
BBBL,17,min Memory MB,1024
BBBL,18,max Memory MB,94208
BBBL,19,online Memory,63488
BBBL,20,pool id,1
LPAR,Logical Partition sampleC,PhysicalCPU,virtualCPUs,logicalCPUs,poolCPUs,entitled,weight,PoolIdle,usedAllCPU%,usedPoolCPU%,SharedCPU,Capped,EC_User%,EC_Sys%,EC_Wait%,EC_Idle%,VP_User%,VP_Sys%,VP_Wait%,VP_Idle%,Folded,Pool_id
POOLS,Multiple CPU Pools sampleC,shcpus_in_sys,max_pool_capacity,entitled_pool_capacity,pool_max_time,pool_busy_time,shcpu_tot_time,shcpu_busy_time,Pool_id,entitled
UARG,+Time,PID,PPID,COMM,THCOUNT,USER,GROUP,FullCommand
JFSFILE,JFS Filespace %Used sampleC,/,/home,/usr,/var,/tmp,/admin,/opt,/var/adm/ras/livedump,/oraredo1,/oraredo2,/oraredo3,/oradata,/orabk,/oraarch,/oratemp,/orainst,/oradata2,/oraarch2,/orabk2,/csi,/nmon,/a02,/a03,/opt/IBM/ITM,/SME
JFSINODE,JFS Inode %Used sampleC,/,/home,/usr,/var,/tmp,/admin,/opt,/var/adm/ras/livedump,/oraredo1,/oraredo2,/oraredo3,/oradata,/orabk,/oraarch,/oratemp,/orainst,/oradata2,/oraarch2,/orabk2,/csi,/nmon,/a02,/a03,/opt/IBM/ITM,/SME
TOP,%CPU Utilisation
TOP,+PID,Time,%CPU,%Usr,%Sys,Threads,Size,ResText,ResData,CharIO,%RAM,Paging,Command,WLMclass
BBBP,000,uptime
BBBP,001,uptime," 12:00AM up 429 days, 4:46, 4 users, load average: 4.64, 4.19, 4.34"
BBBP,002,lsconf
BBBP,003,lsconf,"System Model: IBM,8205-E6C"
BBBP,004,lsconf,"Machine Serial Number: 06F412R"
BBBP,005,lsconf,"Processor Type: PowerPC_POWER7"
BBBP,006,lsconf,"Processor Implementation Mode: POWER 7"
BBBP,007,lsconf,"Processor Version: PV_7_Compat"
BBBP,008,lsconf,"Number Of Processors: 7"
BBBP,009,lsconf,"Processor Clock Speed: 3720 MHz"
BBBP,010,lsconf,"CPU Type: 64-bit"
BBBP,011,lsconf,"Kernel Type: 64-bit"
BBBP,012,lsconf,"LPAR Info: 2 sampleC"
BBBP,013,lsconf,"Memory Size: 63488 MB"
BBBP,014,lsconf,"Good Memory Size: 63488 MB"
BBBP,015,lsconf,"Platform Firmware level: AL740_095"
BBBP,016,lsconf,"Firmware Version: IBM,AL740_095"
BBBP,017,lsconf,"Console Login: enable"
BBBP,018,lsconf,"Auto Restart: true"
BBBP,019,lsconf,"Full Core: false"
BBBP,020,lsconf," "
BBBP,021,lsconf,"Network Information"
BBBP,022,lsconf," Host Name: sampleC"
BBBP,023,lsconf," IP Address: 172.17.83.12"
BBBP,024,lsconf," Sub Netmask: 255.255.255.0"
BBBP,025,lsconf," Gateway: 172.17.83.1"
BBBP,026,lsconf," Name Server: 172.17.38.13"
BBBP,027,lsconf," Domain Name: symphony.local"
BBBP,028,lsconf," "
BBBP,029,lsconf,"Paging Space Information"
BBBP,030,lsconf," Total Paging Space: 25088MB"
BBBP,031,lsconf," Percent Used: 17%"
BBBP,032,lsconf," "
BBBP,033,lsconf,"Volume Groups Information"
BBBP,034,lsconf,"e============================================================================= "
BBBP,035,lsconf,"Active VGs"
BBBP,036,lsconf,"e============================================================================= "
BBBP,037,lsconf,"vg.orabk:"
BBBP,038,lsconf,"PV_NAME PV STATE TOTAL PPs FREE PPs FREE DISTRIBUTION"
BBBP,039,lsconf,"hdisk4 active 961 0 00..00..00..00..00"
BBBP,040,lsconf,"hdisk5 active 961 0 00..00..00..00..00"
BBBP,041,lsconf,"hdisk6 active 961 0 00..00..00..00..00"
BBBP,042,lsconf,"hdisk7 active 961 294 00..00..00..102..192"
BBBP,043,lsconf,"hdisk8 active 961 0 00..00..00..00..00"
BBBP,044,lsconf,"hdisk9 active 961 0 00..00..00..00..00"
BBBP,045,lsconf,"e============================================================================= "
BBBP,046,lsconf," "
BBBP,047,lsconf,"vg.oradata:"
BBBP,048,lsconf,"PV_NAME PV STATE TOTAL PPs FREE PPs FREE DISTRIBUTION"
BBBP,049,lsconf,"hdisk10 active 961 0 00..00..00..00..00"
BBBP,050,lsconf,"hdisk11 active 961 0 00..00..00..00..00"
BBBP,051,lsconf,"hdisk12 active 961 0 00..00..00..00..00"
BBBP,052,lsconf,"hdisk13 active 961 636 185..00..67..192..192"
BBBP,053,lsconf,"e============================================================================= "
BBBP,054,lsconf," "
BBBP,055,lsconf,"vg.oraarch:"
BBBP,056,lsconf,"PV_NAME PV STATE TOTAL PPs FREE PPs FREE DISTRIBUTION"
BBBP,057,lsconf,"hdisk1 active 769 0 00..00..00..00..00"
BBBP,058,lsconf,"hdisk2 active 769 0 00..00..00..00..00"
BBBP,059,lsconf,"hdisk3 active 769 527 148..00..71..154..154"
BBBP,060,lsconf,"e============================================================================= "
BBBP,061,lsconf," "
BBBP,062,lsconf,"vg.oraredo:"
BBBP,063,lsconf,"PV_NAME PV STATE TOTAL PPs FREE PPs FREE DISTRIBUTION"
BBBP,064,lsconf,"hdisk15 active 256 148 16..00..30..51..51"
BBBP,065,lsconf,"e============================================================================= "
BBBP,066,lsconf," "
BBBP,067,lsconf,"vg.oratemp:"
BBBP,068,lsconf,"PV_NAME PV STATE TOTAL PPs FREE PPs FREE DISTRIBUTION"
BBBP,069,lsconf,"hdisk16 active 384 144 00..00..00..67..77"
BBBP,070,lsconf,"e============================================================================= "
BBBP,071,lsconf," "
BBBP,072,lsconf,"vg.orainst:"
BBBP,073,lsconf,"PV_NAME PV STATE TOTAL PPs FREE PPs FREE DISTRIBUTION"
BBBP,074,lsconf,"hdisk14 active 384 0 00..00..00..00..00"
BBBP,075,lsconf,"e============================================================================= "
BBBP,076,lsconf," "
BBBP,077,lsconf,"rootvg:"
BBBP,078,lsconf,"PV_NAME PV STATE TOTAL PPs FREE PPs FREE DISTRIBUTION"
BBBP,079,lsconf,"hdisk0 active 769 152 00..00..00..00..152"
BBBP,080,lsconf,"e============================================================================= "
BBBP,081,lsconf," "
BBBP,082,lsconf,"INSTALLED RESOURCE LIST"
BBBP,083,lsconf,""
BBBP,084,lsconf,"The following resources are installed on the machine."
BBBP,085,lsconf,"p/- = Added or deleted from Resource List."
BBBP,086,lsconf,"m = Diagnostic support not available."
BBBP,087,lsconf," "
BBBP,088,lsconf," Model Architecture: chrp"
BBBP,089,lsconf," Model Implementation: Multiple Processor, PCI bus"
BBBP,090,lsconf," "
BBBP,091,lsconf,"p sys0 System Object"
BBBP,092,lsconf,"p sysplanar0 System Planar"
BBBP,093,lsconf,"m vio0 Virtual I/O Bus"
BBBP,094,lsconf,"m ent8 U8205.E6C.06F412R-V2-C302-T1 Virtual I/O Ethernet Adapter (l-lan)"
BBBP,095,lsconf,"m vsa0 U8205.E6C.06F412R-V2-C0 LPAR Virtual Serial Adapter"
BBBP,096,lsconf,"m vty0 U8205.E6C.06F412R-V2-C0-L0 Asynchronous Terminal"
BBBP,097,lsconf,"m pci3 U78AA.001.WZSHZFB-P1 PCI Express Bus"
BBBP,098,lsconf,"p ent4 U78AA.001.WZSHZFB-P1-C4-T1 4-Port Gigabit Ethernet PCI-Express Adapter (e414571614102004)"
BBBP,099,lsconf,"p ent5 U78AA.001.WZSHZFB-P1-C4-T2 4-Port Gigabit Ethernet PCI-Express Adapter (e414571614102004)"
BBBP,100,lsconf,"p ent6 U78AA.001.WZSHZFB-P1-C4-T3 4-Port Gigabit Ethernet PCI-Express Adapter (e414571614102004)"
BBBP,101,lsconf,"p ent7 U78AA.001.WZSHZFB-P1-C4-T4 4-Port Gigabit Ethernet PCI-Express Adapter (e414571614102004)"
BBBP,102,lsconf,"m pci2 U78AA.001.WZSHZFB-P1 PCI Express Bus"
BBBP,103,lsconf,"p ent0 U78AA.001.WZSHZFB-P1-C3-T1 4-Port Gigabit Ethernet PCI-Express Adapter (e414571614102004)"
BBBP,104,lsconf,"p ent1 U78AA.001.WZSHZFB-P1-C3-T2 4-Port Gigabit Ethernet PCI-Express Adapter (e414571614102004)"
BBBP,105,lsconf,"p ent2 U78AA.001.WZSHZFB-P1-C3-T3 4-Port Gigabit Ethernet PCI-Express Adapter (e414571614102004)"
BBBP,106,lsconf,"p ent3 U78AA.001.WZSHZFB-P1-C3-T4 4-Port Gigabit Ethernet PCI-Express Adapter (e414571614102004)"
BBBP,107,lsconf,"m pci1 U5877.001.9K8H588-P1 PCI Express Bus"
BBBP,108,lsconf,"p fcs2 U5877.001.9K8H588-P1-C4-T1 8Gb PCI Express Dual Port FC Adapter (df1000f114108a03)"
BBBP,109,lsconf,"m fcnet2 U5877.001.9K8H588-P1-C4-T1 Fibre Channel Network Protocol Device"
BBBP,110,lsconf,"p fscsi2 U5877.001.9K8H588-P1-C4-T1 FC SCSI I/O Controller Protocol Device"
BBBP,111,lsconf,"m hdisk12 U5877.001.9K8H588-P1-C4-T1-W5001738065870140-LD000000000000 MPIO 2810 XIV Disk"
BBBP,112,lsconf,"m hdisk13 U5877.001.9K8H588-P1-C4-T1-W5001738065870140-LE000000000000 MPIO 2810 XIV Disk"
BBBP,113,lsconf,"m hdisk7 U5877.001.9K8H588-P1-C4-T1-W5001738065870140-L8000000000000 MPIO 2810 XIV Disk"
BBBP,114,lsconf,"m hdisk8 U5877.001.9K8H588-P1-C4-T1-W5001738065870140-L9000000000000 MPIO 2810 XIV Disk"
BBBP,115,lsconf,"m hdisk9 U5877.001.9K8H588-P1-C4-T1-W5001738065870140-LA000000000000 MPIO 2810 XIV Disk"
BBBP,116,lsconf,"m hdisk14 U5877.001.9K8H588-P1-C4-T1-W5001738065870140-LF000000000000 MPIO 2810 XIV Disk"
BBBP,117,lsconf,"m hdisk15 U5877.001.9K8H588-P1-C4-T1-W5001738065870140-L10000000000000 MPIO 2810 XIV Disk"
BBBP,118,lsconf,"m hdisk16 U5877.001.9K8H588-P1-C4-T1-W5001738065870140-L11000000000000 MPIO 2810 XIV Disk"
BBBP,119,lsconf,"m sfwcomm2 U5877.001.9K8H588-P1-C4-T1-W0-L0 Fibre Channel Storage Framework Comm"
BBBP,120,lsconf,"m hdisk10 U5877.001.9K8H588-P1-C4-T1-W5001738065870140-LB000000000000 MPIO 2810 XIV Disk"
BBBP,121,lsconf,"m hdisk11 U5877.001.9K8H588-P1-C4-T1-W5001738065870140-LC000000000000 MPIO 2810 XIV Disk"
BBBP,122,lsconf,"p fcs3 U5877.001.9K8H588-P1-C4-T2 8Gb PCI Express Dual Port FC Adapter (df1000f114108a03)"
BBBP,123,lsconf,"m fcnet3 U5877.001.9K8H588-P1-C4-T2 Fibre Channel Network Protocol Device"
BBBP,124,lsconf,"p fscsi3 U5877.001.9K8H588-P1-C4-T2 FC SCSI I/O Controller Protocol Device"
BBBP,125,lsconf,"m sfwcomm3 U5877.001.9K8H588-P1-C4-T2-W0-L0 Fibre Channel Storage Framework Comm"
BBBP,126,lsconf,"m pci0 U5877.001.9K8H588-P1 PCI Express Bus"
BBBP,127,lsconf,"p fcs0 U5877.001.9K8H588-P1-C3-T1 8Gb PCI Express Dual Port FC Adapter (df1000f114108a03)"
BBBP,128,lsconf,"m fcnet0 U5877.001.9K8H588-P1-C3-T1 Fibre Channel Network Protocol Device"
BBBP,129,lsconf,"p fscsi0 U5877.001.9K8H588-P1-C3-T1 FC SCSI I/O Controller Protocol Device"
BBBP,130,lsconf,"m hdisk1 U5877.001.9K8H588-P1-C3-T1-W5001738065870140-L2000000000000 MPIO 2810 XIV Disk"
BBBP,131,lsconf,"m sfwcomm0 U5877.001.9K8H588-P1-C3-T1-W0-L0 Fibre Channel Storage Framework Comm"
BBBP,132,lsconf,"m dac0 U5877.001.9K8H588-P1-C3-T1-W5001738065870140-L0 MPIO XIV Controller"
BBBP,133,lsconf,"m hdisk0 U5877.001.9K8H588-P1-C3-T1-W5001738065870140-L1000000000000 MPIO 2810 XIV Disk"
BBBP,134,lsconf,"p fcs1 U5877.001.9K8H588-P1-C3-T2 8Gb PCI Express Dual Port FC Adapter (df1000f114108a03)"
BBBP,135,lsconf,"m fcnet1 U5877.001.9K8H588-P1-C3-T2 Fibre Channel Network Protocol Device"
BBBP,136,lsconf,"p fscsi1 U5877.001.9K8H588-P1-C3-T2 FC SCSI I/O Controller Protocol Device"
BBBP,137,lsconf,"m hdisk4 U5877.001.9K8H588-P1-C3-T2-W5001738065870142-L5000000000000 MPIO 2810 XIV Disk"
BBBP,138,lsconf,"m hdisk5 U5877.001.9K8H588-P1-C3-T2-W5001738065870142-L6000000000000 MPIO 2810 XIV Disk"
BBBP,139,lsconf,"m hdisk2 U5877.001.9K8H588-P1-C3-T2-W5001738065870142-L3000000000000 MPIO 2810 XIV Disk"
BBBP,140,lsconf,"m hdisk3 U5877.001.9K8H588-P1-C3-T2-W5001738065870142-L4000000000000 MPIO 2810 XIV Disk"
BBBP,141,lsconf,"m hdisk6 U5877.001.9K8H588-P1-C3-T2-W5001738065870142-L7000000000000 MPIO 2810 XIV Disk"
BBBP,142,lsconf,"m sfwcomm1 U5877.001.9K8H588-P1-C3-T2-W0-L0 Fibre Channel Storage Framework Comm"
BBBP,143,lsconf,"p L2cache0 L2 Cache"
BBBP,144,lsconf,"p mem0 Memory"
BBBP,145,lsconf,"p proc0 Processor"
BBBP,146,lsconf,"p proc4 Processor"
BBBP,147,lsconf,"p proc8 Processor"
BBBP,148,lsconf,"p proc12 Processor"
BBBP,149,lsconf,"p proc16 Processor"
BBBP,150,lsconf,"p proc20 Processor"
BBBP,151,lsconf,"p proc24 Processor"
BBBP,152,lsps -a
BBBP,153,lsps -a,"Page Space Physical Volume Volume Group Size %Used Active Auto Type Chksum"
BBBP,154,lsps -a,"hd6 hdisk0 rootvg 25088MB 17 yes yes lv 0"
BBBP,155,lparstat -i
BBBP,156,lparstat -i,"Node Name : sampleC"
BBBP,157,lparstat -i,"Partition Name : sampleC"
BBBP,158,lparstat -i,"Partition Number : 2"
BBBP,159,lparstat -i,"Type : Shared-SMT-4"
BBBP,160,lparstat -i,"Mode : Uncapped"
BBBP,161,lparstat -i,"Entitled Capacity : 7.00"
BBBP,162,lparstat -i,"Partition Group-ID : 32770"
BBBP,163,lparstat -i,"Shared Pool ID : 1"
BBBP,164,lparstat -i,"Online Virtual CPUs : 7"
BBBP,165,lparstat -i,"Maximum Virtual CPUs : 7"
BBBP,166,lparstat -i,"Minimum Virtual CPUs : 1"
BBBP,167,lparstat -i,"Online Memory : 63488 MB"
BBBP,168,lparstat -i,"Maximum Memory : 94208 MB"
BBBP,169,lparstat -i,"Minimum Memory : 1024 MB"
BBBP,170,lparstat -i,"Variable Capacity Weight : 200"
BBBP,171,lparstat -i,"Minimum Capacity : 1.00"
BBBP,172,lparstat -i,"Maximum Capacity : 7.00"
BBBP,173,lparstat -i,"Capacity Increment : 0.01"
BBBP,174,lparstat -i,"Maximum Physical CPUs in system : 12"
BBBP,175,lparstat -i,"Active Physical CPUs in system : 12"
BBBP,176,lparstat -i,"Active CPUs in Pool : 8"
BBBP,177,lparstat -i,"Shared Physical CPUs in system : 8"
BBBP,178,lparstat -i,"Maximum Capacity of Pool : 900"
BBBP,179,lparstat -i,"Entitled Capacity of Pool : 800"
BBBP,180,lparstat -i,"Unallocated Capacity : 0.00"
BBBP,181,lparstat -i,"Physical CPU Percentage : 100.00%"
BBBP,182,lparstat -i,"Unallocated Weight : 0"
BBBP,183,lparstat -i,"Memory Mode : Dedicated"
BBBP,184,lparstat -i,"Total I/O Memory Entitlement : -"
BBBP,185,lparstat -i,"Variable Memory Capacity Weight : -"
BBBP,186,lparstat -i,"Memory Pool ID : -"
BBBP,187,lparstat -i,"Physical Memory in the Pool : -"
BBBP,188,lparstat -i,"Hypervisor Page Size : -"
BBBP,189,lparstat -i,"Unallocated Variable Memory Capacity Weight: -"
BBBP,190,lparstat -i,"Unallocated I/O Memory entitlement : -"
BBBP,191,lparstat -i,"Memory Group ID of LPAR : -"
BBBP,192,lparstat -i,"Desired Virtual CPUs : 7"
BBBP,193,lparstat -i,"Desired Memory : 63488 MB"
BBBP,194,lparstat -i,"Desired Variable Capacity Weight : 200"
BBBP,195,lparstat -i,"Desired Capacity : 7.00"
BBBP,196,lparstat -i,"Target Memory Expansion Factor : -"
BBBP,197,lparstat -i,"Target Memory Expansion Size : -"
BBBP,198,lparstat -i,"Power Saving Mode : Disabled"
BBBP,199,lparstat -H
BBBP,200,lparstat -H,""
BBBP,201,lparstat -H,"System configuration: type=Shared mode=Uncapped smt=4 lcpu=28 mem=63488MB psize=8 ent=7.00 "
BBBP,202,lparstat -H,""
BBBP,203,lparstat -H," Detailed information on Hypervisor Calls"
BBBP,204,lparstat -H,""
BBBP,205,lparstat -H,"Hypervisor Number of %Total Time %Hypervisor Avg Call Max Call"
BBBP,206,lparstat -H," Call Calls Spent Time Spent Time(ns) Time(ns)"
BBBP,207,lparstat -H,""
BBBP,208,lparstat -H,"remove 462759925946 0.2 0.0 544 982843"
BBBP,209,lparstat -H,"read 128680017176 0.0 0.0 138 52906"
BBBP,210,lparstat -H,"nclear_mod 0 0.0 0.0 0 0"
BBBP,211,lparstat -H,"page_init 956413248855 0.5 0.0 534 59187"
BBBP,212,lparstat -H,"clear_ref 47593255889 0.0 0.0 312 207468"
BBBP,213,lparstat -H,"protect 2222193667 0.0 0.0 696 487156"
BBBP,214,lparstat -H,"put_tce 541174048935 0.1 0.0 181 55359"
BBBP,215,lparstat -H,"xirr 128398217109 0.1 0.0 590 676406"
BBBP,216,lparstat -H,"eoi 124048108655 0.0 0.0 297 55125"
BBBP,217,lparstat -H,"ipi 8605841921 0.0 0.0 288 4681593"
BBBP,218,lparstat -H,"cppr 122591815870 0.0 0.0 171 4161234"
BBBP,219,lparstat -H,"asr 0 0.0 0.0 0 0"
BBBP,220,lparstat -H,"others 62750516170 0.1 0.0 1712 3420062"
BBBP,221,lparstat -H,"enter 1242953935873 0.4 0.0 294 56250"
BBBP,222,lparstat -H,"cede 189205980655 40.0 1.1 213339 252306900718"
BBBP,223,lparstat -H,"migrate_dma 98453 0.0 0.0 14393 141562"
BBBP,224,lparstat -H,"put_rtce 0 0.0 0.0 0 0"
BBBP,225,lparstat -H,"confer 10351766775 3734.7 98.6 364221638 8719791715919094"
BBBP,226,lparstat -H,"prod 74920556029 0.1 0.0 880 5938296"
BBBP,227,lparstat -H,"get_ppp 38819222 0.0 0.0 1414 17375"
BBBP,228,lparstat -H,"set_ppp 0 0.0 0.0 0 0"
BBBP,229,lparstat -H,"purr 0 0.0 0.0 0 0"
BBBP,230,lparstat -H,"pic 38819206 0.0 0.0 215 14125"
BBBP,231,lparstat -H,"bulk_remove 205007876983 0.4 0.0 1857 565312"
BBBP,232,lparstat -H,"send_crq 0 0.0 0.0 0 0"
BBBP,233,lparstat -H,"copy_rdma 0 0.0 0.0 0 0"
BBBP,234,lparstat -H,"get_tce 0 0.0 0.0 0 0"
BBBP,235,lparstat -H,"send_logical_lan 31814559655 0.1 0.0 2707 3420125"
BBBP,236,lparstat -H,"add_logicl_lan_buf 30905221557 0.0 0.0 762 237640"
BBBP,237,lparstat -H,"h_remove_rtce 0 0.0 0.0 0 0"
BBBP,238,lparstat -H,"h_ipoll 1423313861 0.0 0.0 108 13562"
BBBP,239,lparstat -H,"h_stuff_tce 60560248538 0.1 0.0 893 163265"
BBBP,240,lparstat -H,"h_get_mpp 0 0.0 0.0 0 0"
BBBP,241,lparstat -H,"h_set_mpp 0 0.0 0.0 0 0"
BBBP,242,lparstat -H,"h_get_mpp_x 0 0.0 0.0 0 0"
BBBP,243,lparstat -H,"h_get_em_parms 74972267 10.3 0.3 138228463 5466328832337953"
BBBP,244,lparstat -H,"h_vpm_pstat 0 0.0 0.0 0 0"
BBBP,245,lparstat -H,"h_hfi_start_interface 0 0.0 0.0 0 0"
BBBP,246,lparstat -H,"h_hfi_stop_interface 0 0.0 0.0 0 0"
BBBP,247,lparstat -H,"h_hfi_query_interface 0 0.0 0.0 0 0"
BBBP,248,lparstat -H,"h_hfi_query_window 0 0.0 0.0 0 0"
BBBP,249,lparstat -H,"h_hfi_open_window 0 0.0 0.0 0 0"
BBBP,250,lparstat -H,"h_hfi_close_window 0 0.0 0.0 0 0"
BBBP,251,lparstat -H,"h_hfi_dump_info 0 0.0 0.0 0 0"
BBBP,252,lparstat -H,"h_hfi_adapter_attach 0 0.0 0.0 0 0"
BBBP,253,lparstat -H,"h_hfi_modify_rcxt 0 0.0 0.0 0 0"
BBBP,254,lparstat -H,"h_hfi_route_info 0 0.0 0.0 0 0"
BBBP,255,lparstat -H,"h_cau_write_index 0 0.0 0.0 0 0"
BBBP,256,lparstat -H,"h_cau_read_index 0 0.0 0.0 0 0"
BBBP,257,lparstat -H,"h_nmmu_start 0 0.0 0.0 0 0"
BBBP,258,lparstat -H,"h_nmmu_stop 0 0.0 0.0 0 0"
BBBP,259,lparstat -H,"h_nmmu_allocate_resource 0 0.0 0.0 0 0"
BBBP,260,lparstat -H,"h_nmmu_free_resource 0 0.0 0.0 0 0"
BBBP,261,lparstat -H,"h_nmmu_modify_resource 0 0.0 0.0 0 0"
BBBP,262,lparstat -H,"h_confer_adjunct 0 0.0 0.0 0 0"
BBBP,263,lparstat -H,"h_adjunct_mode 0 0.0 0.0 0 0"
BBBP,264,lparstat -H,"h_get_ppp_x 0 0.0 0.0 0 0"
BBBP,265,lparstat -H,"h_cop_op 0 0.0 0.0 0 0"
BBBP,266,lparstat -H,"h_stop_cop_op 0 0.0 0.0 0 0"
BBBP,267,lparstat -H,"h_random 0 0.0 0.0 0 0"
BBBP,268,lparstat -H,"h_enter_decomp 0 0.0 0.0 0 0"
BBBP,269,lparstat -H,"h_remove_comp 0 0.0 0.0 0 0"
BBBP,270,lparstat -H,"h_put_tce_indirect 0 0.0 0.0 0 0"
BBBP,271,lparstat -H,"n-------------------------------------------------------------------------------"
BBBP,272,emstat
BBBP,273,emstat,""
BBBP,274,emstat," Alignment Alignment Emulation Emulation"
BBBP,275,emstat," SinceBoot Delta SinceBoot Delta"
BBBP,276,emstat," 2016 0 0 0"
BBBP,277,emstat," 2016 0 0 0"
BBBP,278,mpstat -d
BBBP,279,mpstat -d,""
BBBP,280,mpstat -d,"System configuration: lcpu=28 ent=7.0 mode=Uncapped "
BBBP,281,mpstat -d,""
BBBP,282,mpstat -d,"cpu cs ics bound rq push S3pull S3grd S0rd S1rd S2rd S3rd S4rd S5rd ilcs vlcs S3hrd S4hrd S5hrd"
BBBP,283,mpstat -d," 0 46414742309 12562346022 1 3 382 673760199 390280018 94.0 0.5 0.0 3.5 0.0 2.0 0 25225511897 85.1 0.0 14.9"
BBBP,284,mpstat -d," 1 4274949750 1202564245 0 0 41 2392373 12800 91.2 8.4 0.0 0.3 0.0 0.1 0 7344159344 96.8 0.0 3.2"
BBBP,285,mpstat -d," 2 202828261 64771708 0 0 33 563 4223 87.4 11.3 0.0 1.3 0.0 0.0 0 4209551193 98.8 0.0 1.2"
BBBP,286,mpstat -d," 3 193546557 60530932 0 0 30 642 4068 87.3 11.3 0.0 1.4 0.0 0.0 0 4163723462 98.7 0.0 1.3"
BBBP,287,mpstat -d," 4 19399565910 4167325364 1 1 64 390819881 56207493 89.7 0.7 0.0 7.6 0.0 2.0 0 11958588138 85.9 0.0 14.1"
BBBP,288,mpstat -d," 5 3116912293 610909956 0 0 51 2328460 10138 91.3 8.2 0.0 0.4 0.0 0.1 0 5505732984 97.3 0.0 2.7"
BBBP,289,mpstat -d," 6 169769725 47823663 0 0 40 553 3147 89.6 8.8 0.0 1.5 0.0 0.0 0 3299026193 99.0 0.0 1.0"
BBBP,290,mpstat -d," 7 165714744 47840933 0 0 36 507 2882 89.8 8.6 0.0 1.6 0.0 0.0 0 3284375826 99.0 0.0 1.0"
BBBP,291,mpstat -d," 8 36054141799 10413201381 1 3 187 209250711 923472219 94.7 0.4 0.0 2.0 0.0 2.8 0 23836548386 91.2 0.0 8.8"
BBBP,292,mpstat -d," 9 3922109361 1456785195 0 0 59 98596 37515 93.2 6.5 0.0 0.3 0.0 0.0 0 6409847625 98.3 0.0 1.7"
BBBP,293,mpstat -d," 10 270311881 95104448 0 0 78 898 31522 89.9 8.9 0.0 1.1 0.0 0.0 0 3950354579 98.0 0.0 2.0"
BBBP,294,mpstat -d," 11 266189677 97389080 0 0 61 845 31212 90.2 8.7 0.0 1.2 0.0 0.0 0 3922252140 98.0 0.0 2.0"
BBBP,295,mpstat -d," 12 10926607624 2036078479 0 0 50 244529060 20286132 88.2 0.8 0.0 9.0 0.0 2.1 0 7846498910 84.5 0.0 15.5"
BBBP,296,mpstat -d," 13 2345786940 366901860 0 0 33 2252981 9428 92.1 7.3 0.0 0.5 0.0 0.1 0 3999055159 97.3 0.0 2.7"
BBBP,297,mpstat -d," 14 149546575 32317886 0 0 32 470 3111 89.2 9.1 0.0 1.7 0.0 0.0 0 2438798196 99.0 0.0 1.0"
BBBP,298,mpstat -d," 15 159026310 45165559 0 0 9 483 3267 90.1 8.3 0.0 1.6 0.0 0.0 0 2431328734 99.0 0.0 1.0"
BBBP,299,mpstat -d," 16 15315769771 3438862974 1 2 62 63948129 433963191 92.1 0.6 0.0 4.4 0.0 2.9 0 13571790117 97.1 0.0 2.9"
BBBP,300,mpstat -d," 17 2797828746 828699677 0 0 46 87050 24648 93.8 5.8 0.0 0.4 0.0 0.0 0 4834467829 99.1 0.0 0.9"
BBBP,301,mpstat -d," 18 230235014 74769522 0 0 75 813 23733 91.7 7.0 0.0 1.3 0.0 0.0 0 3008315467 98.0 0.0 2.0"
BBBP,302,mpstat -d," 19 236551301 86790059 0 0 52 771 23650 92.2 6.5 0.0 1.3 0.0 0.0 0 2992252942 98.1 0.0 1.9"
BBBP,303,mpstat -d," 20 6948197125 1293148168 0 0 32 170003128 11666114 87.2 0.9 0.0 9.6 0.0 2.3 0 16790754343 83.7 0.0 16.3"
BBBP,304,mpstat -d," 21 1904308413 292335010 0 0 67 2207847 9186 92.5 6.7 0.0 0.6 0.0 0.1 0 3011180282 97.3 0.0 2.7"
BBBP,305,mpstat -d," 22 157306266 43067792 0 0 38 428 3033 90.0 8.4 0.0 1.5 0.0 0.0 2555884 1863753386 99.0 0.0 1.0"
BBBP,306,mpstat -d," 23 158631309 47084752 0 0 51 415 3143 90.4 8.1 0.0 1.6 0.0 0.0 2411937 1856958733 99.1 0.0 0.9"
BBBP,307,mpstat -d," 24 8382291875 1404562656 1 1 86 13402638 275460305 91.4 0.6 0.0 4.9 0.0 3.0 0 8619419580 98.8 0.0 1.2"
BBBP,308,mpstat -d," 25 2113580335 548588990 0 0 102 74019 24246 94.8 4.8 0.0 0.4 0.0 0.0 0 3446610549 99.6 0.0 0.4"
BBBP,309,mpstat -d," 26 235844925 88065718 0 0 63 739 23187 92.7 6.1 0.0 1.2 0.0 0.0 0 2226812424 98.2 0.0 1.8"
BBBP,310,mpstat -d," 27 224289954 81349663 0 0 34 767 23343 92.6 6.1 0.0 1.3 0.0 0.0 0 2214272060 98.1 0.0 1.9"
BBBP,311,mpstat -d,"ALL 166736584750 41534381692 5 10 1894 1775163966 2111646954 92.4 1.5 0.0 4.0 0.0 2.0 4967821 184261940478 89.9 0.0 10.1"
BBBP,312,lssrad
BBBP,313,lssrad,"REF1 SRAD MEM CPU"
BBBP,314,lssrad,"0"
BBBP,315,lssrad," 0 31682.06 0-7 12-15 20-23"
BBBP,316,lssrad,"1"
BBBP,317,lssrad," 1 29880.00 8-11 16-19 24-27"
BBBP,318,vmo -L
BBBP,319,vmo -L,"NAME CUR DEF BOOT MIN MAX UNIT TYPE"
BBBP,320,vmo -L," DEPENDENCIES"
BBBP,321,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,322,vmo -L,"ame_cpus_per_pool n/a 8 8 1 1K processors B"
BBBP,323,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,324,vmo -L,"ame_maxfree_mem n/a 24M 24M 320K 16G bytes D"
BBBP,325,vmo -L," ame_minfree_mem"
BBBP,326,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,327,vmo -L,"ame_min_ucpool_size n/a 0 0 5 95 % memory D"
BBBP,328,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,329,vmo -L,"ame_minfree_mem n/a 8M 8M 64K 16383M bytes D"
BBBP,330,vmo -L," ame_maxfree_mem"
BBBP,331,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,332,vmo -L,"ams_loan_policy n/a 1 1 0 2 numeric D"
BBBP,333,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,334,vmo -L,"enhanced_affinity_affin_time"
BBBP,335,vmo -L," 1 1 1 0 100 numeric D"
BBBP,336,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,337,vmo -L,"enhanced_affinity_vmpool_limit"
BBBP,338,vmo -L," 10 10 10 -1 100 numeric D"
BBBP,339,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,340,vmo -L,"esid_allocator 0 0 0 0 1 boolean D"
BBBP,341,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,342,vmo -L,"force_relalias_lite 0 0 0 0 1 boolean D"
BBBP,343,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,344,vmo -L,"kernel_heap_psize 64K 0 0 0 16M bytes B"
BBBP,345,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,346,vmo -L,"lgpg_regions 0 0 2K 0 8E-1 D"
BBBP,347,vmo -L," lgpg_size"
BBBP,348,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,349,vmo -L,"lgpg_size 0 0 16M 0 16M bytes D"
BBBP,350,vmo -L," lgpg_regions"
BBBP,351,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,352,vmo -L,"low_ps_handling 1 1 1 1 2 D"
BBBP,353,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,354,vmo -L,"maxfree 1420 1088 1420 16 12697K 4KB pages D"
BBBP,355,vmo -L," minfree"
BBBP,356,vmo -L," memory_frames"
BBBP,357,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,358,vmo -L,"maxperm 13842K 13842K S"
BBBP,359,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,360,vmo -L,"maxpin 12793K 12793K S"
BBBP,361,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,362,vmo -L,"maxpin% 80 80 80 1 100 % memory D"
BBBP,363,vmo -L," pinnable_frames"
BBBP,364,vmo -L," memory_frames"
BBBP,365,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,366,vmo -L,"memory_frames 15872K 15872K 4KB pages S"
BBBP,367,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,368,vmo -L,"memplace_data 0 0 0 0 2 D"
BBBP,369,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,370,vmo -L,"memplace_mapped_file 0 0 0 0 2 D"
BBBP,371,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,372,vmo -L,"memplace_shm_anonymous 0 0 0 0 2 D"
BBBP,373,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,374,vmo -L,"memplace_shm_named 0 0 0 0 2 D"
BBBP,375,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,376,vmo -L,"memplace_stack 0 0 0 0 2 D"
BBBP,377,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,378,vmo -L,"memplace_text 0 0 0 0 2 D"
BBBP,379,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,380,vmo -L,"memplace_unmapped_file 0 0 0 0 2 D"
BBBP,381,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,382,vmo -L,"minfree 960 960 960 8 12697K 4KB pages D"
BBBP,383,vmo -L," maxfree"
BBBP,384,vmo -L," memory_frames"
BBBP,385,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,386,vmo -L,"minperm 472494 472494 S"
BBBP,387,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,388,vmo -L,"minperm% 3 3 3 1 100 % memory D"
BBBP,389,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,390,vmo -L,"nokilluid 0 0 0 0 4G-1 uid D"
BBBP,391,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,392,vmo -L,"npskill 49K 49K 49K 1 6M-1 4KB pages D"
BBBP,393,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,394,vmo -L,"npswarn 196K 196K 196K 1 6M-1 4KB pages D"
BBBP,395,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,396,vmo -L,"num_locks_per_semid 1 1 1 1 64 numeric B"
BBBP,397,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,398,vmo -L,"numpsblks 6272K 6272K 4KB blocks S"
BBBP,399,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,400,vmo -L,"pinnable_frames 3719K 3719K 4KB pages S"
BBBP,401,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,402,vmo -L,"relalias_percentage 0 0 0 0 32K-1 D"
BBBP,403,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,404,vmo -L,"scrub 0 0 0 0 1 boolean D"
BBBP,405,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,406,vmo -L,"v_pinshm 0 0 0 0 1 boolean D"
BBBP,407,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,408,vmo -L,"vmm_default_pspa 0 0 0 -1 100 numeric D"
BBBP,409,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,410,vmo -L,"vmm_klock_mode 1 1 1 0 3 numeric B"
BBBP,411,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,412,vmo -L,"wlm_memlimit_nonpg 1 1 1 0 1 boolean D"
BBBP,413,vmo -L,"n-------------------------------------------------------------------------------"
BBBP,414,vmo -L,""
BBBP,415,vmo -L,"n/a means parameter not supported by the current platform or kernel"
BBBP,416,vmo -L,""
BBBP,417,vmo -L,"Parameter types:"
BBBP,418,vmo -L," S = Static: cannot be changed"
BBBP,419,vmo -L," D = Dynamic: can be freely changed"
BBBP,420,vmo -L," B = Bosboot: can only be changed using bosboot and reboot"
BBBP,421,vmo -L," R = Reboot: can only be changed during reboot"
BBBP,422,vmo -L," C = Connect: changes are only effective for future socket connections"
BBBP,423,vmo -L," M = Mount: changes are only effective for future mountings"
BBBP,424,vmo -L," I = Incremental: can only be incremented"
BBBP,425,vmo -L," d = deprecated: deprecated and cannot be changed"
BBBP,426,vmo -L,""
BBBP,427,vmo -L,"Value conventions:"
BBBP,428,vmo -L," K = Kilo: 2^10 G = Giga: 2^30 P = Peta: 2^50 "
BBBP,429,vmo -L," M = Mega: 2^20 T = Tera: 2^40 E = Exa: 2^60 "
BBBP,430,ioo -L
BBBP,431,ioo -L,"NAME CUR DEF BOOT MIN MAX UNIT TYPE"
BBBP,432,ioo -L," DEPENDENCIES"
BBBP,433,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,434,ioo -L,"aio_active 1 1 boolean S"
BBBP,435,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,436,ioo -L,"aio_maxreqs 64K 64K 64K 4K 1M numeric D"
BBBP,437,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,438,ioo -L,"aio_maxservers 30 30 30 1 20000 numeric D"
BBBP,439,ioo -L," aio_minservers"
BBBP,440,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,441,ioo -L,"aio_minservers 3 3 3 0 20000 numeric D"
BBBP,442,ioo -L," aio_maxservers"
BBBP,443,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,444,ioo -L,"aio_server_inactivity 300 300 300 1 86400 seconds D"
BBBP,445,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,446,ioo -L,"j2_atimeUpdateSymlink 0 0 0 0 1 boolean D"
BBBP,447,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,448,ioo -L,"j2_dynamicBufferPreallocation"
BBBP,449,ioo -L," 16 16 16 0 256 16K slabs D"
BBBP,450,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,451,ioo -L,"j2_inodeCacheSize 400 400 400 1 1000 D"
BBBP,452,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,453,ioo -L,"j2_maxPageReadAhead 128 128 128 0 64K 4KB pages D"
BBBP,454,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,455,ioo -L,"j2_maxRandomWrite 0 0 0 0 64K 4KB pages D"
BBBP,456,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,457,ioo -L,"j2_metadataCacheSize 400 400 400 1 1000 D"
BBBP,458,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,459,ioo -L,"j2_minPageReadAhead 2 2 2 0 64K 4KB pages D"
BBBP,460,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,461,ioo -L,"j2_nPagesPerWriteBehindCluster"
BBBP,462,ioo -L," 32 32 32 0 64K D"
BBBP,463,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,464,ioo -L,"j2_nRandomCluster 0 0 0 0 64K 16KB clusters D"
BBBP,465,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,466,ioo -L,"j2_syncPageCount 0 0 0 0 64K 4KB pages D"
BBBP,467,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,468,ioo -L,"j2_syncPageLimit 16 16 16 1 64K iterations D"
BBBP,469,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,470,ioo -L,"lvm_bufcnt 9 9 9 1 64 128KB/buffer D"
BBBP,471,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,472,ioo -L,"maxpgahead 8 8 8 0 4K 4KB pages D"
BBBP,473,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,474,ioo -L,"maxrandwrt 0 0 0 0 2G-1 4KB pages D"
BBBP,475,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,476,ioo -L,"numclust 1 1 1 0 2G-1 16KB/cluster D"
BBBP,477,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,478,ioo -L,"numfsbufs 196 196 196 1 2G-1 M"
BBBP,479,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,480,ioo -L,"pd_npages 64K 64K 64K 1 512K 4KB pages D"
BBBP,481,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,482,ioo -L,"posix_aio_active 0 0 boolean S"
BBBP,483,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,484,ioo -L,"posix_aio_maxreqs 64K 64K 64K 4K 1M numeric D"
BBBP,485,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,486,ioo -L,"posix_aio_maxservers 30 30 30 1 20000 numeric D"
BBBP,487,ioo -L," aio_minservers"
BBBP,488,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,489,ioo -L,"posix_aio_minservers 3 3 3 0 20000 numeric D"
BBBP,490,ioo -L," aio_maxservers"
BBBP,491,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,492,ioo -L,"posix_aio_server_inactivity"
BBBP,493,ioo -L," 300 300 300 1 86400 seconds D"
BBBP,494,ioo -L,"n-------------------------------------------------------------------------------"
BBBP,495,ioo -L,""
BBBP,496,ioo -L,"n/a means parameter not supported by the current platform or kernel"
BBBP,497,ioo -L,""
BBBP,498,ioo -L,"Parameter types:"
BBBP,499,ioo -L," S = Static: cannot be changed"
BBBP,500,ioo -L," D = Dynamic: can be freely changed"
BBBP,501,ioo -L," B = Bosboot: can only be changed using bosboot and reboot"
BBBP,502,ioo -L," R = Reboot: can only be changed during reboot"
BBBP,503,ioo -L," C = Connect: changes are only effective for future socket connections"
BBBP,504,ioo -L," M = Mount: changes are only effective for future mountings"
BBBP,505,ioo -L," I = Incremental: can only be incremented"
BBBP,506,ioo -L," d = deprecated: deprecated and cannot be changed"
BBBP,507,ioo -L,""
BBBP,508,ioo -L,"Value conventions:"
BBBP,509,ioo -L," K = Kilo: 2^10 G = Giga: 2^30 P = Peta: 2^50 "
BBBP,510,ioo -L," M = Mega: 2^20 T = Tera: 2^40 E = Exa: 2^60 "
BBBP,511,schedo -L
BBBP,512,schedo -L,"NAME CUR DEF BOOT MIN MAX UNIT TYPE"
BBBP,513,schedo -L," DEPENDENCIES"
BBBP,514,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,515,schedo -L,"affinity_lim 7 7 7 0 100 dispatches D"
BBBP,516,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,517,schedo -L,"big_tick_size 1 1 1 1 100 10 ms D"
BBBP,518,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,519,schedo -L,"ded_cpu_donate_thresh 80 80 80 0 100 % busy D"
BBBP,520,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,521,schedo -L,"fixed_pri_global 0 0 0 0 1 boolean D"
BBBP,522,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,523,schedo -L,"force_grq 0 0 0 0 1 boolean D"
BBBP,524,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,525,schedo -L,"maxspin 16K 16K 16K 1 4G-1 spins D"
BBBP,526,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,527,schedo -L,"pacefork 10 10 10 10 2G-1 clock ticks D"
BBBP,528,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,529,schedo -L,"proc_disk_stats 1 1 1 0 1 boolean D"
BBBP,530,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,531,schedo -L,"sched_D 16 16 16 0 32 D"
BBBP,532,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,533,schedo -L,"sched_R 16 16 16 0 32 D"
BBBP,534,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,535,schedo -L,"tb_balance_S0 2 2 2 0 2 ticks D"
BBBP,536,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,537,schedo -L,"tb_balance_S1 2 2 2 0 2 ticks D"
BBBP,538,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,539,schedo -L,"tb_threshold 100 100 100 10 1000 ticks D"
BBBP,540,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,541,schedo -L,"timeslice 1 1 1 0 2G-1 clock ticks D"
BBBP,542,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,543,schedo -L,"vpm_fold_policy 1 1 1 0 15 D"
BBBP,544,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,545,schedo -L,"vpm_xvcpus 0 0 0 -1 2G-1 processors D"
BBBP,546,schedo -L,"n-------------------------------------------------------------------------------"
BBBP,547,schedo -L,""
BBBP,548,schedo -L,"n/a means parameter not supported by the current platform or kernel"
BBBP,549,schedo -L,""
BBBP,550,schedo -L,"Parameter types:"
BBBP,551,schedo -L," S = Static: cannot be changed"
BBBP,552,schedo -L," D = Dynamic: can be freely changed"
BBBP,553,schedo -L," B = Bosboot: can only be changed using bosboot and reboot"
BBBP,554,schedo -L," R = Reboot: can only be changed during reboot"
BBBP,555,schedo -L," C = Connect: changes are only effective for future socket connections"
BBBP,556,schedo -L," M = Mount: changes are only effective for future mountings"
BBBP,557,schedo -L," I = Incremental: can only be incremented"
BBBP,558,schedo -L," d = deprecated: deprecated and cannot be changed"
BBBP,559,schedo -L,""
BBBP,560,schedo -L,"Value conventions:"
BBBP,561,schedo -L," K = Kilo: 2^10 G = Giga: 2^30 P = Peta: 2^50 "
BBBP,562,schedo -L," M = Mega: 2^20 T = Tera: 2^40 E = Exa: 2^60 "
BBBP,563,nfso -L
BBBP,564,nfso -L,"NAME CUR DEF BOOT MIN MAX UNIT TYPE"
BBBP,565,nfso -L," DEPENDENCIES"
BBBP,566,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,567,nfso -L,"client_delegation 1 1 1 0 1 On/Off D"
BBBP,568,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,569,nfso -L,"nfs_max_read_size 64K 64K 64K 512 64K Bytes D"
BBBP,570,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,571,nfso -L,"nfs_max_write_size 64K 64K 64K 512 64K Bytes D"
BBBP,572,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,573,nfso -L,"nfs_rfc1323 1 1 1 0 1 On/Off D"
BBBP,574,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,575,nfso -L,"nfs_securenfs_authtimeout 0 0 0 0 60 Seconds D"
BBBP,576,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,577,nfso -L,"nfs_server_base_priority 0 0 0 31 125 Pri D"
BBBP,578,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,579,nfso -L,"nfs_server_clread 1 1 1 0 1 On/Off D"
BBBP,580,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,581,nfso -L,"nfs_use_reserved_ports 0 0 0 0 1 On/Off D"
BBBP,582,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,583,nfso -L,"nfs_v3_server_readdirplus 1 1 1 0 1 On/Off D"
BBBP,584,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,585,nfso -L,"nfs_v4_fail_over_timeout 0 0 0 0 3600 Seconds D"
BBBP,586,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,587,nfso -L,"portcheck 0 0 0 0 1 On/Off D"
BBBP,588,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,589,nfso -L,"server_delegation 1 1 1 0 1 On/Off D"
BBBP,590,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,591,nfso -L,"utf8_validation 1 1 1 0 1 On/Off D"
BBBP,592,nfso -L,"n-------------------------------------------------------------------------------"
BBBP,593,nfso -L,""
BBBP,594,nfso -L,"n/a means parameter not supported by the current platform or kernel"
BBBP,595,nfso -L,""
BBBP,596,nfso -L,"Parameter types:"
BBBP,597,nfso -L," S = Static: cannot be changed"
BBBP,598,nfso -L," D = Dynamic: can be freely changed"
BBBP,599,nfso -L," B = Bosboot: can only be changed using bosboot and reboot"
BBBP,600,nfso -L," R = Reboot: can only be changed during reboot"
BBBP,601,nfso -L," C = Connect: changes are only effective for future socket connections"
BBBP,602,nfso -L," M = Mount: changes are only effective for future mountings"
BBBP,603,nfso -L," I = Incremental: can only be incremented"
BBBP,604,nfso -L,""
BBBP,605,nfso -L,"Value conventions:"
BBBP,606,nfso -L," K = Kilo: 2^10 G = Giga: 2^30 P = Peta: 2^50 "
BBBP,607,nfso -L," M = Mega: 2^20 T = Tera: 2^40 E = Exa: 2^60 "
BBBP,608,lsattr -El sys0
BBBP,609,lsattr -El sys0,"SW_dist_intr false Enable SW distribution of interrupts True"
BBBP,610,lsattr -El sys0,"autorestart true Automatically REBOOT OS after a crash True"
BBBP,611,lsattr -El sys0,"boottype disk N/A False"
BBBP,612,lsattr -El sys0,"capacity_inc 0.01 Processor capacity increment False"