forked from madmaze/pyNmonAnalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.nmon
2749 lines (2749 loc) · 152 KB
/
test.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,nmon
AAA,command,nmon -F test.nmon -s 1 -c 120
AAA,version,13g
AAA,disks_per_line,150
AAA,max_disks,256,set by -d option
AAA,disks,12,
AAA,host,the-gibson
AAA,user,madmaze
AAA,OS,Linux,3.2.0-34-generic,#53-Ubuntu SMP Thu Nov 15 10:48:16 UTC 2012,x86_64
AAA,runname,the-gibson
AAA,time,13:18.31
AAA,date,07-DEC-2012
AAA,interval,1
AAA,snapshots,120
AAA,cpus,6,6
AAA,proc_stat_variables,8
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
CPU01,CPU 1 the-gibson,User%,Sys%,Wait%,Idle%
CPU02,CPU 2 the-gibson,User%,Sys%,Wait%,Idle%
CPU03,CPU 3 the-gibson,User%,Sys%,Wait%,Idle%
CPU04,CPU 4 the-gibson,User%,Sys%,Wait%,Idle%
CPU05,CPU 5 the-gibson,User%,Sys%,Wait%,Idle%
CPU06,CPU 6 the-gibson,User%,Sys%,Wait%,Idle%
CPU_ALL,CPU Total the-gibson,User%,Sys%,Wait%,Idle%,Busy,CPUs
MEM,Memory MB the-gibson,memtotal,hightotal,lowtotal,swaptotal,memfree,highfree,lowfree,swapfree,memshared,cached,active,bigfree,buffers,swapcached,inactive
PROC,Processes the-gibson,Runnable,Swap-in,pswitch,syscall,read,write,fork,exec,sem,msg
NET,Network I/O the-gibson,lo-read-KB/s,vmnet8-read-KB/s,eth1-read-KB/s,tun-read-KB/s,eth0-read-KB/s,vmnet1-read-KB/s,lo-write-KB/s,vmnet8-write-KB/s,eth1-write-KB/s,tun-write-KB/s,eth0-write-KB/s,vmnet1-write-KB/s,
NETPACKET,Network Packets the-gibson,lo-read/s,vmnet8-read/s,eth1-read/s,tun-read/s,eth0-read/s,vmnet1-read/s,lo-write/s,vmnet8-write/s,eth1-write/s,tun-write/s,eth0-write/s,vmnet1-write/s,
DISKBUSY,Disk %Busy the-gibson,sda,sda1,sda2,sdb,sdc,sdd,sdd1,sdd2,md0,sde,sdb1,dm-0
DISKREAD,Disk Read KB/s the-gibson,sda,sda1,sda2,sdb,sdc,sdd,sdd1,sdd2,md0,sde,sdb1,dm-0
DISKWRITE,Disk Write KB/s the-gibson,sda,sda1,sda2,sdb,sdc,sdd,sdd1,sdd2,md0,sde,sdb1,dm-0
DISKXFER,Disk transfers per second the-gibson,sda,sda1,sda2,sdb,sdc,sdd,sdd1,sdd2,md0,sde,sdb1,dm-0
DISKBSIZE,Disk Block Size the-gibson,sda,sda1,sda2,sdb,sdc,sdd,sdd1,sdd2,md0,sde,sdb1,dm-0
DGBUSY,Disk Group Busy the-gibson
DGREAD,Disk Group Read KB/s the-gibson
DGWRITE,Disk Group Write KB/s the-gibson
DGSIZE,Disk Group Block Size KB the-gibson
DGXFER,Disk Group Transfers/s the-gibson
JFSFILE,JFS Filespace %Used the-gibson,/,/dev,/run,/run/lock,/run/shm,/home,/run/rpc_pipefs,/run/vmblock-fuse,/home/madmaze/.gvfs,/media/secure
BBBP,000,/etc/release
BBBP,001,/etc/release,"DISTRIB_ID=Ubuntu"
BBBP,002,/etc/release,"DISTRIB_RELEASE=12.04"
BBBP,003,/etc/release,"DISTRIB_CODENAME=precise"
BBBP,004,/etc/release,"DISTRIB_DESCRIPTION="Ubuntu 12.04.1 LTS""
BBBP,005,/etc/release,"NAME="Ubuntu""
BBBP,006,/etc/release,"VERSION="12.04.1 LTS, Precise Pangolin""
BBBP,007,/etc/release,"ID=ubuntu"
BBBP,008,/etc/release,"ID_LIKE=debian"
BBBP,009,/etc/release,"PRETTY_NAME="Ubuntu precise (12.04.1 LTS)""
BBBP,010,/etc/release,"VERSION_ID="12.04""
BBBP,011,lsb_release
BBBP,012,lsb_release,"LSB Version: core-2.0-amd64:core-2.0-noarch:core-3.0-amd64:core-3.0-noarch:core-3.1-amd64:core-3.1-noarch:core-3.2-amd64:core-3.2-noarch:core-4.0-amd64:core-4.0-noarch"
BBBP,013,lsb_release,"Distributor ID: Ubuntu"
BBBP,014,lsb_release,"Description: Ubuntu 12.04.1 LTS"
BBBP,015,lsb_release,"Release: 12.04"
BBBP,016,lsb_release,"Codename: precise"
BBBP,017,fdisk-l
BBBP,018,/proc/cpuinfo
BBBP,019,/proc/cpuinfo,"processor : 0"
BBBP,020,/proc/cpuinfo,"vendor_id : AuthenticAMD"
BBBP,021,/proc/cpuinfo,"cpu family : 16"
BBBP,022,/proc/cpuinfo,"model : 10"
BBBP,023,/proc/cpuinfo,"model name : AMD Phenom(tm) II X6 1100T Processor"
BBBP,024,/proc/cpuinfo,"stepping : 0"
BBBP,025,/proc/cpuinfo,"microcode : 0x10000bf"
BBBP,026,/proc/cpuinfo,"cpu MHz : 800.000"
BBBP,027,/proc/cpuinfo,"cache size : 512 KB"
BBBP,028,/proc/cpuinfo,"physical id : 0"
BBBP,029,/proc/cpuinfo,"siblings : 6"
BBBP,030,/proc/cpuinfo,"core id : 0"
BBBP,031,/proc/cpuinfo,"cpu cores : 6"
BBBP,032,/proc/cpuinfo,"apicid : 0"
BBBP,033,/proc/cpuinfo,"initial apicid : 0"
BBBP,034,/proc/cpuinfo,"fpu : yes"
BBBP,035,/proc/cpuinfo,"fpu_exception : yes"
BBBP,036,/proc/cpuinfo,"cpuid level : 6"
BBBP,037,/proc/cpuinfo,"wp : yes"
BBBP,038,/proc/cpuinfo,"flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid aperfmperf pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt cpb npt lbrv svm_lock nrip_save pausefilter"
BBBP,039,/proc/cpuinfo,"bogomips : 6600.08"
BBBP,040,/proc/cpuinfo,"TLB size : 1024 4K pages"
BBBP,041,/proc/cpuinfo,"clflush size : 64"
BBBP,042,/proc/cpuinfo,"cache_alignment : 64"
BBBP,043,/proc/cpuinfo,"address sizes : 48 bits physical, 48 bits virtual"
BBBP,044,/proc/cpuinfo,"power management: ts ttp tm stc 100mhzsteps hwpstate cpb"
BBBP,045,/proc/cpuinfo,""
BBBP,046,/proc/cpuinfo,"processor : 1"
BBBP,047,/proc/cpuinfo,"vendor_id : AuthenticAMD"
BBBP,048,/proc/cpuinfo,"cpu family : 16"
BBBP,049,/proc/cpuinfo,"model : 10"
BBBP,050,/proc/cpuinfo,"model name : AMD Phenom(tm) II X6 1100T Processor"
BBBP,051,/proc/cpuinfo,"stepping : 0"
BBBP,052,/proc/cpuinfo,"microcode : 0x10000bf"
BBBP,053,/proc/cpuinfo,"cpu MHz : 800.000"
BBBP,054,/proc/cpuinfo,"cache size : 512 KB"
BBBP,055,/proc/cpuinfo,"physical id : 0"
BBBP,056,/proc/cpuinfo,"siblings : 6"
BBBP,057,/proc/cpuinfo,"core id : 1"
BBBP,058,/proc/cpuinfo,"cpu cores : 6"
BBBP,059,/proc/cpuinfo,"apicid : 1"
BBBP,060,/proc/cpuinfo,"initial apicid : 1"
BBBP,061,/proc/cpuinfo,"fpu : yes"
BBBP,062,/proc/cpuinfo,"fpu_exception : yes"
BBBP,063,/proc/cpuinfo,"cpuid level : 6"
BBBP,064,/proc/cpuinfo,"wp : yes"
BBBP,065,/proc/cpuinfo,"flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid aperfmperf pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt cpb npt lbrv svm_lock nrip_save pausefilter"
BBBP,066,/proc/cpuinfo,"bogomips : 6600.45"
BBBP,067,/proc/cpuinfo,"TLB size : 1024 4K pages"
BBBP,068,/proc/cpuinfo,"clflush size : 64"
BBBP,069,/proc/cpuinfo,"cache_alignment : 64"
BBBP,070,/proc/cpuinfo,"address sizes : 48 bits physical, 48 bits virtual"
BBBP,071,/proc/cpuinfo,"power management: ts ttp tm stc 100mhzsteps hwpstate cpb"
BBBP,072,/proc/cpuinfo,""
BBBP,073,/proc/cpuinfo,"processor : 2"
BBBP,074,/proc/cpuinfo,"vendor_id : AuthenticAMD"
BBBP,075,/proc/cpuinfo,"cpu family : 16"
BBBP,076,/proc/cpuinfo,"model : 10"
BBBP,077,/proc/cpuinfo,"model name : AMD Phenom(tm) II X6 1100T Processor"
BBBP,078,/proc/cpuinfo,"stepping : 0"
BBBP,079,/proc/cpuinfo,"microcode : 0x10000bf"
BBBP,080,/proc/cpuinfo,"cpu MHz : 800.000"
BBBP,081,/proc/cpuinfo,"cache size : 512 KB"
BBBP,082,/proc/cpuinfo,"physical id : 0"
BBBP,083,/proc/cpuinfo,"siblings : 6"
BBBP,084,/proc/cpuinfo,"core id : 2"
BBBP,085,/proc/cpuinfo,"cpu cores : 6"
BBBP,086,/proc/cpuinfo,"apicid : 2"
BBBP,087,/proc/cpuinfo,"initial apicid : 2"
BBBP,088,/proc/cpuinfo,"fpu : yes"
BBBP,089,/proc/cpuinfo,"fpu_exception : yes"
BBBP,090,/proc/cpuinfo,"cpuid level : 6"
BBBP,091,/proc/cpuinfo,"wp : yes"
BBBP,092,/proc/cpuinfo,"flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid aperfmperf pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt cpb npt lbrv svm_lock nrip_save pausefilter"
BBBP,093,/proc/cpuinfo,"bogomips : 6600.45"
BBBP,094,/proc/cpuinfo,"TLB size : 1024 4K pages"
BBBP,095,/proc/cpuinfo,"clflush size : 64"
BBBP,096,/proc/cpuinfo,"cache_alignment : 64"
BBBP,097,/proc/cpuinfo,"address sizes : 48 bits physical, 48 bits virtual"
BBBP,098,/proc/cpuinfo,"power management: ts ttp tm stc 100mhzsteps hwpstate cpb"
BBBP,099,/proc/cpuinfo,""
BBBP,100,/proc/cpuinfo,"processor : 3"
BBBP,101,/proc/cpuinfo,"vendor_id : AuthenticAMD"
BBBP,102,/proc/cpuinfo,"cpu family : 16"
BBBP,103,/proc/cpuinfo,"model : 10"
BBBP,104,/proc/cpuinfo,"model name : AMD Phenom(tm) II X6 1100T Processor"
BBBP,105,/proc/cpuinfo,"stepping : 0"
BBBP,106,/proc/cpuinfo,"microcode : 0x10000bf"
BBBP,107,/proc/cpuinfo,"cpu MHz : 800.000"
BBBP,108,/proc/cpuinfo,"cache size : 512 KB"
BBBP,109,/proc/cpuinfo,"physical id : 0"
BBBP,110,/proc/cpuinfo,"siblings : 6"
BBBP,111,/proc/cpuinfo,"core id : 3"
BBBP,112,/proc/cpuinfo,"cpu cores : 6"
BBBP,113,/proc/cpuinfo,"apicid : 3"
BBBP,114,/proc/cpuinfo,"initial apicid : 3"
BBBP,115,/proc/cpuinfo,"fpu : yes"
BBBP,116,/proc/cpuinfo,"fpu_exception : yes"
BBBP,117,/proc/cpuinfo,"cpuid level : 6"
BBBP,118,/proc/cpuinfo,"wp : yes"
BBBP,119,/proc/cpuinfo,"flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid aperfmperf pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt cpb npt lbrv svm_lock nrip_save pausefilter"
BBBP,120,/proc/cpuinfo,"bogomips : 6600.45"
BBBP,121,/proc/cpuinfo,"TLB size : 1024 4K pages"
BBBP,122,/proc/cpuinfo,"clflush size : 64"
BBBP,123,/proc/cpuinfo,"cache_alignment : 64"
BBBP,124,/proc/cpuinfo,"address sizes : 48 bits physical, 48 bits virtual"
BBBP,125,/proc/cpuinfo,"power management: ts ttp tm stc 100mhzsteps hwpstate cpb"
BBBP,126,/proc/cpuinfo,""
BBBP,127,/proc/cpuinfo,"processor : 4"
BBBP,128,/proc/cpuinfo,"vendor_id : AuthenticAMD"
BBBP,129,/proc/cpuinfo,"cpu family : 16"
BBBP,130,/proc/cpuinfo,"model : 10"
BBBP,131,/proc/cpuinfo,"model name : AMD Phenom(tm) II X6 1100T Processor"
BBBP,132,/proc/cpuinfo,"stepping : 0"
BBBP,133,/proc/cpuinfo,"microcode : 0x10000bf"
BBBP,134,/proc/cpuinfo,"cpu MHz : 800.000"
BBBP,135,/proc/cpuinfo,"cache size : 512 KB"
BBBP,136,/proc/cpuinfo,"physical id : 0"
BBBP,137,/proc/cpuinfo,"siblings : 6"
BBBP,138,/proc/cpuinfo,"core id : 4"
BBBP,139,/proc/cpuinfo,"cpu cores : 6"
BBBP,140,/proc/cpuinfo,"apicid : 4"
BBBP,141,/proc/cpuinfo,"initial apicid : 4"
BBBP,142,/proc/cpuinfo,"fpu : yes"
BBBP,143,/proc/cpuinfo,"fpu_exception : yes"
BBBP,144,/proc/cpuinfo,"cpuid level : 6"
BBBP,145,/proc/cpuinfo,"wp : yes"
BBBP,146,/proc/cpuinfo,"flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid aperfmperf pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt cpb npt lbrv svm_lock nrip_save pausefilter"
BBBP,147,/proc/cpuinfo,"bogomips : 6600.46"
BBBP,148,/proc/cpuinfo,"TLB size : 1024 4K pages"
BBBP,149,/proc/cpuinfo,"clflush size : 64"
BBBP,150,/proc/cpuinfo,"cache_alignment : 64"
BBBP,151,/proc/cpuinfo,"address sizes : 48 bits physical, 48 bits virtual"
BBBP,152,/proc/cpuinfo,"power management: ts ttp tm stc 100mhzsteps hwpstate cpb"
BBBP,153,/proc/cpuinfo,""
BBBP,154,/proc/cpuinfo,"processor : 5"
BBBP,155,/proc/cpuinfo,"vendor_id : AuthenticAMD"
BBBP,156,/proc/cpuinfo,"cpu family : 16"
BBBP,157,/proc/cpuinfo,"model : 10"
BBBP,158,/proc/cpuinfo,"model name : AMD Phenom(tm) II X6 1100T Processor"
BBBP,159,/proc/cpuinfo,"stepping : 0"
BBBP,160,/proc/cpuinfo,"microcode : 0x10000bf"
BBBP,161,/proc/cpuinfo,"cpu MHz : 800.000"
BBBP,162,/proc/cpuinfo,"cache size : 512 KB"
BBBP,163,/proc/cpuinfo,"physical id : 0"
BBBP,164,/proc/cpuinfo,"siblings : 6"
BBBP,165,/proc/cpuinfo,"core id : 5"
BBBP,166,/proc/cpuinfo,"cpu cores : 6"
BBBP,167,/proc/cpuinfo,"apicid : 5"
BBBP,168,/proc/cpuinfo,"initial apicid : 5"
BBBP,169,/proc/cpuinfo,"fpu : yes"
BBBP,170,/proc/cpuinfo,"fpu_exception : yes"
BBBP,171,/proc/cpuinfo,"cpuid level : 6"
BBBP,172,/proc/cpuinfo,"wp : yes"
BBBP,173,/proc/cpuinfo,"flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid aperfmperf pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt cpb npt lbrv svm_lock nrip_save pausefilter"
BBBP,174,/proc/cpuinfo,"bogomips : 6600.43"
BBBP,175,/proc/cpuinfo,"TLB size : 1024 4K pages"
BBBP,176,/proc/cpuinfo,"clflush size : 64"
BBBP,177,/proc/cpuinfo,"cache_alignment : 64"
BBBP,178,/proc/cpuinfo,"address sizes : 48 bits physical, 48 bits virtual"
BBBP,179,/proc/cpuinfo,"power management: ts ttp tm stc 100mhzsteps hwpstate cpb"
BBBP,180,/proc/cpuinfo,""
BBBP,181,/proc/meminfo
BBBP,182,/proc/meminfo,"MemTotal: 16304688 kB"
BBBP,183,/proc/meminfo,"MemFree: 7291876 kB"
BBBP,184,/proc/meminfo,"Buffers: 658908 kB"
BBBP,185,/proc/meminfo,"Cached: 4428840 kB"
BBBP,186,/proc/meminfo,"SwapCached: 0 kB"
BBBP,187,/proc/meminfo,"Active: 5011144 kB"
BBBP,188,/proc/meminfo,"Inactive: 3038352 kB"
BBBP,189,/proc/meminfo,"Active(anon): 2964252 kB"
BBBP,190,/proc/meminfo,"Inactive(anon): 26488 kB"
BBBP,191,/proc/meminfo,"Active(file): 2046892 kB"
BBBP,192,/proc/meminfo,"Inactive(file): 3011864 kB"
BBBP,193,/proc/meminfo,"Unevictable: 0 kB"
BBBP,194,/proc/meminfo,"Mlocked: 0 kB"
BBBP,195,/proc/meminfo,"SwapTotal: 14274556 kB"
BBBP,196,/proc/meminfo,"SwapFree: 14274556 kB"
BBBP,197,/proc/meminfo,"Dirty: 468 kB"
BBBP,198,/proc/meminfo,"Writeback: 0 kB"
BBBP,199,/proc/meminfo,"AnonPages: 2961532 kB"
BBBP,200,/proc/meminfo,"Mapped: 356136 kB"
BBBP,201,/proc/meminfo,"Shmem: 29052 kB"
BBBP,202,/proc/meminfo,"Slab: 634104 kB"
BBBP,203,/proc/meminfo,"SReclaimable: 580340 kB"
BBBP,204,/proc/meminfo,"SUnreclaim: 53764 kB"
BBBP,205,/proc/meminfo,"KernelStack: 5296 kB"
BBBP,206,/proc/meminfo,"PageTables: 50464 kB"
BBBP,207,/proc/meminfo,"NFS_Unstable: 0 kB"
BBBP,208,/proc/meminfo,"Bounce: 0 kB"
BBBP,209,/proc/meminfo,"WritebackTmp: 0 kB"
BBBP,210,/proc/meminfo,"CommitLimit: 22426900 kB"
BBBP,211,/proc/meminfo,"Committed_AS: 6420192 kB"
BBBP,212,/proc/meminfo,"VmallocTotal: 34359738367 kB"
BBBP,213,/proc/meminfo,"VmallocUsed: 345912 kB"
BBBP,214,/proc/meminfo,"VmallocChunk: 34359385084 kB"
BBBP,215,/proc/meminfo,"HardwareCorrupted: 0 kB"
BBBP,216,/proc/meminfo,"AnonHugePages: 0 kB"
BBBP,217,/proc/meminfo,"HugePages_Total: 0"
BBBP,218,/proc/meminfo,"HugePages_Free: 0"
BBBP,219,/proc/meminfo,"HugePages_Rsvd: 0"
BBBP,220,/proc/meminfo,"HugePages_Surp: 0"
BBBP,221,/proc/meminfo,"Hugepagesize: 2048 kB"
BBBP,222,/proc/meminfo,"DirectMap4k: 523840 kB"
BBBP,223,/proc/meminfo,"DirectMap2M: 9961472 kB"
BBBP,224,/proc/meminfo,"DirectMap1G: 6291456 kB"
BBBP,225,/proc/stat
BBBP,226,/proc/stat,"cpu 3389475 715364 1932331 26802969 53714 727 56950 0 0 0"
BBBP,227,/proc/stat,"cpu0 568599 138741 343048 4456883 7099 3 203 0 0 0"
BBBP,228,/proc/stat,"cpu1 561234 144372 367188 4436681 4953 4 164 0 0 0"
BBBP,229,/proc/stat,"cpu2 553544 139675 346526 4477002 3397 7 172 0 0 0"
BBBP,230,/proc/stat,"cpu3 539329 107851 280147 4591076 2720 18 330 0 0 0"
BBBP,231,/proc/stat,"cpu4 499644 97736 266965 4651669 2566 90 1477 0 0 0"
BBBP,232,/proc/stat,"cpu5 667122 86987 328454 4189655 32977 602 54602 0 0 0"
BBBP,233,/proc/stat,"intr 168774687 24691744 3 0 0 4 0 0 1 1 0 0 0 4 0 316975 0 2934 752753 12903 0 0 0 0 0 7635391 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 870 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 162886 1 0 0 0 0 0 0 2465628 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,234,/proc/stat,"ctxt 234479277"
BBBP,235,/proc/stat,"btime 1354848754"
BBBP,236,/proc/stat,"processes 53286"
BBBP,237,/proc/stat,"procs_running 2"
BBBP,238,/proc/stat,"procs_blocked 0"
BBBP,239,/proc/stat,"softirq 45880732 0 19247260 9344 2675186 589296 0 7625148 8118247 80708 7535543"
BBBP,240,/proc/version
BBBP,241,/proc/version,"Linux version 3.2.0-34-generic (buildd@allspice) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #53-Ubuntu SMP Thu Nov 15 10:48:16 UTC 2012"
BBBP,242,/proc/net/dev
BBBP,243,/proc/net/dev,"Inter-| Receive | Transmit"
BBBP,244,/proc/net/dev," face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed"
BBBP,245,/proc/net/dev," lo: 8587207 44362 0 0 0 0 0 0 8587207 44362 0 0 0 0 0 0"
BBBP,246,/proc/net/dev,"vmnet8: 0 0 0 0 0 0 0 0 0 1979 0 0 0 0 0 0"
BBBP,247,/proc/net/dev," eth1: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,248,/proc/net/dev," tun: 146786761 157708 0 0 0 0 0 0 18998425 109544 0 0 0 0 0 0"
BBBP,249,/proc/net/dev," eth0: 2799593262 2159220 0 0 0 0 0 0 180773532 1160109 0 0 0 0 0 0"
BBBP,250,/proc/net/dev,"vmnet1: 0 0 0 0 0 0 0 0 0 1979 0 0 0 0 0 0"
BBBP,251,/proc/diskinfo
BBBP,252,/proc/diskstats
BBBP,253,/proc/diskstats," 1 0 ram0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,254,/proc/diskstats," 1 1 ram1 0 0 0 0 0 0 0 0 0 0 0"
BBBP,255,/proc/diskstats," 1 2 ram2 0 0 0 0 0 0 0 0 0 0 0"
BBBP,256,/proc/diskstats," 1 3 ram3 0 0 0 0 0 0 0 0 0 0 0"
BBBP,257,/proc/diskstats," 1 4 ram4 0 0 0 0 0 0 0 0 0 0 0"
BBBP,258,/proc/diskstats," 1 5 ram5 0 0 0 0 0 0 0 0 0 0 0"
BBBP,259,/proc/diskstats," 1 6 ram6 0 0 0 0 0 0 0 0 0 0 0"
BBBP,260,/proc/diskstats," 1 7 ram7 0 0 0 0 0 0 0 0 0 0 0"
BBBP,261,/proc/diskstats," 1 8 ram8 0 0 0 0 0 0 0 0 0 0 0"
BBBP,262,/proc/diskstats," 1 9 ram9 0 0 0 0 0 0 0 0 0 0 0"
BBBP,263,/proc/diskstats," 1 10 ram10 0 0 0 0 0 0 0 0 0 0 0"
BBBP,264,/proc/diskstats," 1 11 ram11 0 0 0 0 0 0 0 0 0 0 0"
BBBP,265,/proc/diskstats," 1 12 ram12 0 0 0 0 0 0 0 0 0 0 0"
BBBP,266,/proc/diskstats," 1 13 ram13 0 0 0 0 0 0 0 0 0 0 0"
BBBP,267,/proc/diskstats," 1 14 ram14 0 0 0 0 0 0 0 0 0 0 0"
BBBP,268,/proc/diskstats," 1 15 ram15 0 0 0 0 0 0 0 0 0 0 0"
BBBP,269,/proc/diskstats," 7 0 loop0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,270,/proc/diskstats," 7 1 loop1 0 0 0 0 0 0 0 0 0 0 0"
BBBP,271,/proc/diskstats," 7 2 loop2 0 0 0 0 0 0 0 0 0 0 0"
BBBP,272,/proc/diskstats," 7 3 loop3 0 0 0 0 0 0 0 0 0 0 0"
BBBP,273,/proc/diskstats," 7 4 loop4 0 0 0 0 0 0 0 0 0 0 0"
BBBP,274,/proc/diskstats," 7 5 loop5 0 0 0 0 0 0 0 0 0 0 0"
BBBP,275,/proc/diskstats," 7 6 loop6 0 0 0 0 0 0 0 0 0 0 0"
BBBP,276,/proc/diskstats," 7 7 loop7 0 0 0 0 0 0 0 0 0 0 0"
BBBP,277,/proc/diskstats," 8 0 sda 88807 1742 3269810 81452 88106 464728 4385232 299008 0 28532 380320"
BBBP,278,/proc/diskstats," 8 1 sda1 88476 1711 3266914 81336 83343 464728 4385232 298176 0 27704 379380"
BBBP,279,/proc/diskstats," 8 2 sda2 165 31 1568 68 0 0 0 0 0 68 68"
BBBP,280,/proc/diskstats," 8 16 sdb 5911 129 49215 37380 2912 5575 214432 52488 0 10548 89924"
BBBP,281,/proc/diskstats," 8 32 sdc 7595 229 85224 52112 2819 5666 214432 51324 0 14032 103492"
BBBP,282,/proc/diskstats," 8 48 sdd 507 2315 4068 628 0 0 0 0 0 492 624"
BBBP,283,/proc/diskstats," 8 49 sdd1 310 1159 2470 208 0 0 0 0 0 208 208"
BBBP,284,/proc/diskstats," 8 50 sdd2 165 1153 1318 324 0 0 0 0 0 324 324"
BBBP,285,/proc/diskstats," 11 0 sr0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,286,/proc/diskstats," 9 0 md0 13778 0 133863 0 8540 0 213744 0 0 0 0"
BBBP,287,/proc/diskstats," 8 64 sde 89129 2906 1177668 568040 205869 821400 8159008 8080556 0 728352 8652672"
BBBP,288,/proc/diskstats," 8 65 sdb1 88964 2906 1176348 567872 197286 821400 8159008 7980064 0 640164 8552024"
BBBP,289,/proc/diskstats," 252 0 dm-0 13735 0 133290 105388 8516 0 213744 806392 0 16904 911784"
BBBP,290,/proc/diskstats," 8 80 sdf 0 0 0 0 0 0 0 0 0 0 0"
BBBP,291,/proc/partitions
BBBP,292,/proc/partitions,"major minor #blocks name"
BBBP,293,/proc/partitions,""
BBBP,294,/proc/partitions," 8 0 117220824 sda"
BBBP,295,/proc/partitions," 8 1 102944768 sda1"
BBBP,296,/proc/partitions," 8 2 14274560 sda2"
BBBP,297,/proc/partitions," 8 16 1953514584 sdb"
BBBP,298,/proc/partitions," 8 32 1953514584 sdc"
BBBP,299,/proc/partitions," 8 48 1953514584 sdd"
BBBP,300,/proc/partitions," 8 49 1637039533 sdd1"
BBBP,301,/proc/partitions," 8 50 316472467 sdd2"
BBBP,302,/proc/partitions," 11 0 1048575 sr0"
BBBP,303,/proc/partitions," 9 0 1953514496 md0"
BBBP,304,/proc/partitions," 8 64 293036184 sde"
BBBP,305,/proc/partitions," 8 65 285793568 sdb1"
BBBP,306,/proc/partitions," 252 0 1953513468 dm-0"
BBBP,307,/proc/1/stat
BBBP,308,/proc/1/stat,"1 (init) S 0 1 1 0 -1 4202752 23823 83442336 23 2334 37 152 2992572 1191242 20 0 1 0 2 25309184 651 18446744073709551615 1 1 0 0 0 0 0 4096 536962595 18446744073709551615 0 0 17 0 0 0 3 0 0"
BBBP,309,/proc/1/statm
BBBP,310,/proc/1/statm,"6179 651 323 38 0 346 0"
BBBP,311,/proc/net/rpc/nfs
BBBP,312,/proc/net/rpc/nfs,"net 0 0 0 0"
BBBP,313,/proc/net/rpc/nfs,"rpc 0 0 0"
BBBP,314,/proc/net/rpc/nfs,"proc2 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,315,/proc/net/rpc/nfs,"proc3 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,316,/proc/net/rpc/nfs,"proc4 37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,317,/proc/net/rpc/nfsd
BBBP,318,/proc/net/rpc/nfsd,"rc 0 0 1"
BBBP,319,/proc/net/rpc/nfsd,"fh 0 0 0 0 0"
BBBP,320,/proc/net/rpc/nfsd,"io 0 0"
BBBP,321,/proc/net/rpc/nfsd,"th 8 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000"
BBBP,322,/proc/net/rpc/nfsd,"ra 32 0 0 0 0 0 0 0 0 0 0 0"
BBBP,323,/proc/net/rpc/nfsd,"net 1 1 0 0"
BBBP,324,/proc/net/rpc/nfsd,"rpc 1 0 0 0 0"
BBBP,325,/proc/net/rpc/nfsd,"proc2 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,326,/proc/net/rpc/nfsd,"proc3 22 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,327,/proc/net/rpc/nfsd,"proc4 2 0 0"
BBBP,328,/proc/net/rpc/nfsd,"proc4ops 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
BBBP,329,ifconfig
BBBP,330,ifconfig,"eth0 Link encap:Ethernet HWaddr 6c:62:6d:38:33:a1 "
BBBP,331,ifconfig," inet addr:192.168.11.108 Bcast:192.168.11.255 Mask:255.255.255.0"
BBBP,332,ifconfig," inet6 addr: fe80::6e62:6dff:fe38:33a1/64 Scope:Link"
BBBP,333,ifconfig," UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1"
BBBP,334,ifconfig," RX packets:2159220 errors:0 dropped:0 overruns:0 frame:0"
BBBP,335,ifconfig," TX packets:1160109 errors:0 dropped:0 overruns:0 carrier:0"
BBBP,336,ifconfig," collisions:0 txqueuelen:1000 "
BBBP,337,ifconfig," RX bytes:2799593262 (2.7 GB) TX bytes:180773532 (180.7 MB)"
BBBP,338,ifconfig," Interrupt:80 Base address:0xc000 "
BBBP,339,ifconfig,""
BBBP,340,ifconfig,"eth1 Link encap:Ethernet HWaddr 6c:62:6d:38:33:a0 "
BBBP,341,ifconfig," UP BROADCAST MULTICAST MTU:1500 Metric:1"
BBBP,342,ifconfig," RX packets:0 errors:0 dropped:0 overruns:0 frame:0"
BBBP,343,ifconfig," TX packets:0 errors:0 dropped:0 overruns:0 carrier:0"
BBBP,344,ifconfig," collisions:0 txqueuelen:1000 "
BBBP,345,ifconfig," RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)"
BBBP,346,ifconfig," Interrupt:81 Base address:0xe000 "
BBBP,347,ifconfig,""
BBBP,348,ifconfig,"lo Link encap:Local Loopback "
BBBP,349,ifconfig," inet addr:127.0.0.1 Mask:255.0.0.0"
BBBP,350,ifconfig," inet6 addr: ::1/128 Scope:Host"
BBBP,351,ifconfig," UP LOOPBACK RUNNING MTU:16436 Metric:1"
BBBP,352,ifconfig," RX packets:44362 errors:0 dropped:0 overruns:0 frame:0"
BBBP,353,ifconfig," TX packets:44362 errors:0 dropped:0 overruns:0 carrier:0"
BBBP,354,ifconfig," collisions:0 txqueuelen:0 "
BBBP,355,ifconfig," RX bytes:8587207 (8.5 MB) TX bytes:8587207 (8.5 MB)"
BBBP,356,ifconfig,""
BBBP,357,ifconfig,"tun Link encap:UNSPEC HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 "
BBBP,358,ifconfig," inet6 addr: 2001:5c0:1000:a::9bd/128 Scope:Global"
BBBP,359,ifconfig," UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1280 Metric:1"
BBBP,360,ifconfig," RX packets:157708 errors:0 dropped:0 overruns:0 frame:0"
BBBP,361,ifconfig," TX packets:109544 errors:0 dropped:0 overruns:0 carrier:0"
BBBP,362,ifconfig," collisions:0 txqueuelen:500 "
BBBP,363,ifconfig," RX bytes:146786761 (146.7 MB) TX bytes:18998425 (18.9 MB)"
BBBP,364,ifconfig,""
BBBP,365,ifconfig,"vmnet1 Link encap:Ethernet HWaddr 00:50:56:c0:00:01 "
BBBP,366,ifconfig," inet addr:172.16.13.1 Bcast:172.16.13.255 Mask:255.255.255.0"
BBBP,367,ifconfig," inet6 addr: fe80::250:56ff:fec0:1/64 Scope:Link"
BBBP,368,ifconfig," UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1"
BBBP,369,ifconfig," RX packets:0 errors:0 dropped:0 overruns:0 frame:0"
BBBP,370,ifconfig," TX packets:1979 errors:0 dropped:0 overruns:0 carrier:0"
BBBP,371,ifconfig," collisions:0 txqueuelen:1000 "
BBBP,372,ifconfig," RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)"
BBBP,373,ifconfig,""
BBBP,374,ifconfig,"vmnet8 Link encap:Ethernet HWaddr 00:50:56:c0:00:08 "
BBBP,375,ifconfig," inet addr:192.168.91.1 Bcast:192.168.91.255 Mask:255.255.255.0"
BBBP,376,ifconfig," inet6 addr: fe80::250:56ff:fec0:8/64 Scope:Link"
BBBP,377,ifconfig," UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1"
BBBP,378,ifconfig," RX packets:0 errors:0 dropped:0 overruns:0 frame:0"
BBBP,379,ifconfig," TX packets:1979 errors:0 dropped:0 overruns:0 carrier:0"
BBBP,380,ifconfig," collisions:0 txqueuelen:1000 "
BBBP,381,ifconfig," RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)"
BBBP,382,ifconfig,""
BBBP,383,/bin/df-m
BBBP,384,/bin/df-m,"Filesystem 1M-blocks Used Available Use% Mounted on"
BBBP,385,/bin/df-m,"ddev/sda1 98954 19121 74807 21% /"
BBBP,386,/bin/df-m,"udev 7918 1 7918 1% /dev"
BBBP,387,/bin/df-m,"tmpfs 3185 2 3184 1% /run"
BBBP,388,/bin/df-m,"none 5 0 5 0% /run/lock"
BBBP,389,/bin/df-m,"none 7962 25 7938 1% /run/shm"
BBBP,390,/bin/df-m,"ddev/sdb1 274716 242319 18443 93% /home"
BBBP,391,/bin/df-m,"ddev/mapper/secure 1877793 1131769 650638 64% /media/secure"
BBBP,392,/bin/mount
BBBP,393,/bin/mount,"ddev/sda1 on / type ext3 (rw,errors=remount-ro)"
BBBP,394,/bin/mount,"proc on /proc type proc (rw,noexec,nosuid,nodev)"
BBBP,395,/bin/mount,"sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)"
BBBP,396,/bin/mount,"none on /sys/fs/fuse/connections type fusectl (rw)"
BBBP,397,/bin/mount,"none on /sys/kernel/debug type debugfs (rw)"
BBBP,398,/bin/mount,"none on /sys/kernel/security type securityfs (rw)"
BBBP,399,/bin/mount,"udev on /dev type devtmpfs (rw,mode=0755)"
BBBP,400,/bin/mount,"devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)"
BBBP,401,/bin/mount,"tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)"
BBBP,402,/bin/mount,"none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)"
BBBP,403,/bin/mount,"none on /run/shm type tmpfs (rw,nosuid,nodev)"
BBBP,404,/bin/mount,"ddev/sdb1 on /home type ext3 (rw,user_xattr)"
BBBP,405,/bin/mount,"binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)"
BBBP,406,/bin/mount,"rpc_pipefs on /run/rpc_pipefs type rpc_pipefs (rw)"
BBBP,407,/bin/mount,"vmware-vmblock on /run/vmblock-fuse type fuse.vmware-vmblock (rw,nosuid,nodev,default_permissions,allow_other)"
BBBP,408,/bin/mount,"nfsd on /proc/fs/nfsd type nfsd (rw)"
BBBP,409,/bin/mount,"gvfs-fuse-daemon on /home/madmaze/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,user=madmaze)"
BBBP,410,/bin/mount,"ddev/mapper/secure on /media/secure type ext4 (rw)"
BBBP,411,/etc/fstab
BBBP,412,/etc/fstab,"# /etc/fstab: static file system information."
BBBP,413,/etc/fstab,"#"
BBBP,414,/etc/fstab,"# Use 'blkid -o value -s UUID' to print the universally unique identifier"
BBBP,415,/etc/fstab,"# for a device; this may be used with UUID= as a more robust way to name"
BBBP,416,/etc/fstab,"# devices that works even if disks are added and removed. See fstab(5)."
BBBP,417,/etc/fstab,"#"
BBBP,418,/etc/fstab,"# <file system> <mount point> <type> <options> <dump> <pass>"
BBBP,419,/etc/fstab,"proc /proc proc nodev,noexec,nosuid 0 0"
BBBP,420,/etc/fstab,"# / was on /dev/sda2 during installation"
BBBP,421,/etc/fstab,"UUID=b39fd21d-3ae2-4f13-9afd-ca16375dfee9 / ext3 errors=remount-ro 0 1"
BBBP,422,/etc/fstab,"# /home was on /dev/sda3 during installation"
BBBP,423,/etc/fstab,"UUID=dcfb1969-e516-405e-a3fa-b88e3b0bad47 /home ext3 defaults,user_xattr 0 2"
BBBP,424,/etc/fstab,"# swap on SSD"
BBBP,425,/etc/fstab,"UUID=dcb56f85-5f16-46a9-8575-769291047062 none swap sw 0 0"
BBBP,426,/etc/fstab,"ddev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0"
ZZZZ,T0001,13:18:32,07-DEC-2012
CPU01,T0001,12.8,6.2,0.1,80.8
CPU02,T0001,12.8,6.7,0.1,80.5
CPU03,T0001,12.6,6.3,0.1,81.1
CPU04,T0001,11.7,5.1,0.0,83.2
CPU05,T0001,10.8,4.8,0.0,84.3
CPU06,T0001,14.2,6.2,0.6,79.0
CPU_ALL,T0001,6.5,3.2,0.0,90.3,,6
MEM,T0001,15922.5,-0.0,-0.0,13940.0,7121.2,-0.0,-0.0,13940.0,-0.0,4325.0,4893.2,-1.0,643.5,0.0,2967.3
VM,Paging and Virtual Memory,nr_dirty,nr_writeback,nr_unstable,nr_page_table_pages,nr_mapped,nr_slab,pgpgin,pgpgout,pswpin,pswpout,pgfree,pgactivate,pgdeactivate,pgfault,pgmajfault,pginodesteal,slabs_scanned,kswapd_steal,kswapd_inodesteal,pageoutrun,allocstall,pgrotated,pgalloc_high,pgalloc_normal,pgalloc_dma,pgrefill_high,pgrefill_normal,pgrefill_dma,pgsteal_high,pgsteal_normal,pgsteal_dma,pgscan_kswapd_high,pgscan_kswapd_normal,pgscan_kswapd_dma,pgscan_direct_high,pgscan_direct_normal,pgscan_direct_dma
VM,T0001,-1,-1,-1,995,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3006964,6964,-1,383532,-1,680,79712,-1,-1,-1,-1,-1,-1,-1,-1,3,-1,-1,-1,-1,-1,155
PROC,T0001,1.0,-1.0,0.0,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0001,0.0,0.0,0.0,0.0,0.8,0.0,0.0,0.0,0.0,0.0,0.9,0.0,
NETPACKET,T0001,0.0,0.0,0.0,0.0,13.3,0.0,0.0,0.0,0.0,0.0,13.3,0.0,
JFSFILE,T0001,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0001,0.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0001,76.7,76.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.6,23.6,0.0
DISKXFER,T0001,2.9,2.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2,5.2,0.0
DISKBSIZE,T0001,26.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6,4.6,0.0
ZZZZ,T0002,13:18:33,07-DEC-2012
CPU01,T0002,1.0,2.0,0.0,97.0
CPU02,T0002,3.0,2.0,0.0,94.9
CPU03,T0002,3.0,1.0,0.0,96.0
CPU04,T0002,4.0,0.0,0.0,96.0
CPU05,T0002,3.0,1.0,0.0,96.0
CPU06,T0002,11.2,5.1,0.0,83.7
CPU_ALL,T0002,4.2,2.2,0.0,93.6,,6
MEM,T0002,15922.5,-0.0,-0.0,13940.0,7121.2,-0.0,-0.0,13940.0,-0.0,4325.0,4893.4,-1.0,643.5,0.0,2967.3
VM,T0002,-1,-1,-1,996,-1,-1,0,0,0,0,0,0,0,0,0,635,635,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0002,1.0,-1.0,3546.0,-1.0,-1.0,-1.0,1.0,-1.0,-1.0,-1.0
NET,T0002,0.0,0.0,0.0,0.0,0.8,0.0,0.0,0.0,0.0,0.0,1.0,0.0,
NETPACKET,T0002,0.0,0.0,0.0,0.0,13.9,0.0,0.0,0.0,0.0,0.0,14.9,0.0,
JFSFILE,T0002,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0003,13:18:34,07-DEC-2012
CPU01,T0003,3.0,3.0,0.0,94.1
CPU02,T0003,5.1,2.0,0.0,92.9
CPU03,T0003,4.0,2.0,0.0,94.0
CPU04,T0003,2.0,2.0,0.0,96.0
CPU05,T0003,4.0,0.0,0.0,96.0
CPU06,T0003,7.0,5.0,0.0,88.0
CPU_ALL,T0003,4.0,2.2,0.0,93.8,,6
MEM,T0003,15922.5,-0.0,-0.0,13940.0,7121.3,-0.0,-0.0,13940.0,-0.0,4325.0,4893.4,-1.0,643.5,0.0,2967.3
VM,T0003,-1,-1,-1,996,-1,-1,0,0,0,0,0,0,0,0,0,449,449,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0003,1.0,-1.0,3199.3,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0003,0.0,0.0,0.0,0.0,0.5,0.0,0.0,0.0,0.0,0.0,0.3,0.0,
NETPACKET,T0003,0.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,
JFSFILE,T0003,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0003,35.9,35.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0003,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0003,4.5,4.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0004,13:18:35,07-DEC-2012
CPU01,T0004,6.0,8.0,0.0,86.0
CPU02,T0004,7.0,1.0,0.0,92.0
CPU03,T0004,6.1,2.0,0.0,91.9
CPU04,T0004,5.3,2.1,0.0,92.6
CPU05,T0004,4.0,3.0,0.0,92.9
CPU06,T0004,9.9,10.9,0.0,79.2
CPU_ALL,T0004,6.4,4.4,0.0,89.2,,6
MEM,T0004,15922.5,-0.0,-0.0,13940.0,7120.7,-0.0,-0.0,13940.0,-0.0,4325.0,4893.6,-1.0,643.5,0.0,2967.3
VM,T0004,-1,-1,-1,995,-1,-1,0,0,0,0,0,0,0,0,0,1042,1042,0,-10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0004,5.0,-1.0,4442.0,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0004,0.4,0.0,0.0,0.0,1.3,0.0,0.4,0.0,0.0,0.0,1.4,0.0,
NETPACKET,T0004,6.0,0.0,0.0,0.0,19.9,0.0,6.0,0.0,0.0,0.0,20.9,0.0,
JFSFILE,T0004,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0005,13:18:36,07-DEC-2012
CPU01,T0005,8.9,9.9,0.0,81.2
CPU02,T0005,14.9,20.8,0.0,64.4
CPU03,T0005,9.0,10.0,0.0,81.0
CPU04,T0005,11.0,4.0,0.0,85.0
CPU05,T0005,9.8,5.9,0.0,84.3
CPU06,T0005,10.1,15.2,3.0,71.7
CPU_ALL,T0005,10.5,11.1,0.5,77.9,,6
MEM,T0005,15922.5,-0.0,-0.0,13940.0,7120.6,-0.0,-0.0,13940.0,-0.0,4325.0,4893.4,-1.0,643.5,0.0,2967.3
VM,T0005,-1,-1,-1,996,-1,-1,0,0,0,0,0,0,0,0,0,849,849,0,-5,0,0,180,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
PROC,T0005,3.0,-1.0,4979.2,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0005,0.0,0.0,0.0,0.5,0.7,0.0,0.0,0.0,0.0,0.1,0.3,0.0,
NETPACKET,T0005,0.0,0.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,
JFSFILE,T0005,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0
DISKREAD,T0005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0005,83.8,83.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.8,95.8,0.0
DISKXFER,T0005,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,0.0
DISKBSIZE,T0005,8.4,8.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.2,19.2,0.0
ZZZZ,T0006,13:18:37,07-DEC-2012
CPU01,T0006,5.0,4.0,0.0,91.0
CPU02,T0006,8.7,8.7,0.0,82.7
CPU03,T0006,6.9,3.9,0.0,89.2
CPU04,T0006,4.0,4.0,0.0,92.1
CPU05,T0006,10.2,1.0,0.0,88.8
CPU06,T0006,6.2,4.2,0.0,89.6
CPU_ALL,T0006,7.1,4.2,0.0,88.7,,6
MEM,T0006,15922.5,-0.0,-0.0,13940.0,7120.6,-0.0,-0.0,13940.0,-0.0,4325.0,4893.4,-1.0,643.5,0.0,2967.3
VM,T0006,-1,-1,-1,996,-1,-1,0,0,0,0,0,0,0,0,0,574,574,0,0,0,0,32,1271940,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0006,2.0,-1.0,3887.6,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0006,0.0,0.0,0.0,0.4,0.7,0.0,0.0,0.0,0.0,0.1,0.8,0.0,
NETPACKET,T0006,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,3.0,0.0,
JFSFILE,T0006,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.9,31.9,0.0
DISKXFER,T0006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0
DISKBSIZE,T0006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.7,10.7,0.0
ZZZZ,T0007,13:18:38,07-DEC-2012
CPU01,T0007,4.0,1.0,0.0,95.0
CPU02,T0007,4.0,1.0,0.0,95.0
CPU03,T0007,3.0,0.0,0.0,97.0
CPU04,T0007,2.0,2.0,0.0,96.0
CPU05,T0007,4.0,1.0,0.0,95.0
CPU06,T0007,8.2,4.1,0.0,87.6
CPU_ALL,T0007,4.0,1.5,0.0,94.5,,6
MEM,T0007,15922.5,-0.0,-0.0,13940.0,7120.6,-0.0,-0.0,13940.0,-0.0,4325.0,4893.4,-1.0,643.5,0.0,2967.3
VM,T0007,-1,-1,-1,996,-1,-1,0,0,0,0,0,0,0,0,0,407,407,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0
PROC,T0007,2.0,-1.0,3039.3,-1.0,-1.0,-1.0,1.0,-1.0,-1.0,-1.0
NET,T0007,0.0,0.0,0.0,0.0,0.3,0.0,0.0,0.0,0.0,0.0,0.8,0.0,
NETPACKET,T0007,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,
JFSFILE,T0007,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0008,13:18:39,07-DEC-2012
CPU01,T0008,2.0,4.0,0.0,94.1
CPU02,T0008,2.0,4.0,0.0,94.0
CPU03,T0008,3.0,1.0,0.0,96.0
CPU04,T0008,4.0,0.0,0.0,96.0
CPU05,T0008,5.1,2.0,0.0,92.9
CPU06,T0008,12.1,4.0,0.0,83.8
CPU_ALL,T0008,5.0,2.5,0.0,92.5,,6
MEM,T0008,15922.5,-0.0,-0.0,13940.0,7120.6,-0.0,-0.0,13940.0,-0.0,4325.0,4893.4,-1.0,643.5,0.0,2967.3
VM,T0008,-1,-1,-1,996,-1,-1,0,0,0,0,0,0,0,0,0,644,644,0,1,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0008,1.0,-1.0,3756.2,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0008,0.0,0.0,0.0,0.5,0.5,0.0,0.0,0.0,0.0,0.1,0.1,0.0,
NETPACKET,T0008,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,
JFSFILE,T0008,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0
DISKREAD,T0008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.9,23.9,0.0
DISKXFER,T0008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,0.0
DISKBSIZE,T0008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,0.0
ZZZZ,T0009,13:18:40,07-DEC-2012
CPU01,T0009,6.1,2.0,0.0,91.9
CPU02,T0009,9.2,4.1,0.0,86.7
CPU03,T0009,1.0,2.0,0.0,97.0
CPU04,T0009,3.0,1.0,0.0,96.0
CPU05,T0009,6.0,5.0,0.0,89.0
CPU06,T0009,7.3,1.0,0.0,91.7
CPU_ALL,T0009,5.2,2.9,0.0,91.9,,6
MEM,T0009,15922.5,-0.0,-0.0,13940.0,7120.8,-0.0,-0.0,13940.0,-0.0,4325.1,4893.4,-1.0,643.5,0.0,2967.3
VM,T0009,-1,-1,-1,997,-1,-1,0,0,0,0,0,0,0,0,0,489,489,0,3,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0
PROC,T0009,2.0,-1.0,3315.1,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0009,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,0.0,0.1,0.0,
NETPACKET,T0009,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,
JFSFILE,T0009,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0010,13:18:41,07-DEC-2012
CPU01,T0010,5.1,2.0,0.0,92.9
CPU02,T0010,13.3,12.2,0.0,74.5
CPU03,T0010,8.0,4.0,0.0,88.0
CPU04,T0010,6.0,5.0,0.0,89.0
CPU05,T0010,8.8,2.9,0.0,88.2
CPU06,T0010,16.3,16.3,0.0,67.3
CPU_ALL,T0010,9.6,6.9,0.0,83.6,,6
MEM,T0010,15922.5,-0.0,-0.0,13940.0,7120.8,-0.0,-0.0,13940.0,-0.0,4325.1,4893.4,-1.0,643.5,0.0,2967.3
VM,T0010,-1,-1,-1,997,-1,-1,0,0,0,0,0,0,0,0,0,536,536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0010,2.0,-1.0,3382.5,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0010,0.0,0.0,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.1,0.1,0.0,
NETPACKET,T0010,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,
JFSFILE,T0010,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0010,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0010,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0010,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0010,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0010,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0011,13:18:42,07-DEC-2012
CPU01,T0011,49.0,2.0,0.0,49.0
CPU02,T0011,6.2,5.2,0.0,88.7
CPU03,T0011,11.1,5.1,0.0,83.8
CPU04,T0011,9.0,5.0,0.0,86.0
CPU05,T0011,7.2,1.0,0.0,91.8
CPU06,T0011,19.2,18.2,0.0,62.6
CPU_ALL,T0011,17.1,6.1,0.0,76.9,,6
MEM,T0011,15922.5,-0.0,-0.0,13940.0,7122.9,-0.0,-0.0,13940.0,-0.0,4325.1,4891.5,-1.0,643.5,0.0,2967.3
VM,T0011,-1,-1,-1,994,-1,-1,0,0,0,0,0,0,0,0,0,721,721,0,4,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0011,1.0,-1.0,4480.2,-1.0,-1.0,-1.0,1.0,-1.0,-1.0,-1.0
NET,T0011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
NETPACKET,T0011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
JFSFILE,T0011,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0
DISKREAD,T0011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,175.8,175.8,0.0
DISKXFER,T0011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,36.0,0.0
DISKBSIZE,T0011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9,4.9,0.0
ZZZZ,T0012,13:18:43,07-DEC-2012
CPU01,T0012,2.0,3.0,0.0,95.0
CPU02,T0012,4.0,1.0,0.0,95.0
CPU03,T0012,3.0,2.0,0.0,95.0
CPU04,T0012,3.0,1.0,0.0,96.0
CPU05,T0012,3.0,1.0,0.0,96.0
CPU06,T0012,14.0,8.0,0.0,78.0
CPU_ALL,T0012,4.8,2.5,0.0,92.7,,6
MEM,T0012,15922.5,-0.0,-0.0,13940.0,7122.8,-0.0,-0.0,13940.0,-0.0,4325.1,4891.5,-1.0,643.5,0.0,2967.3
VM,T0012,-1,-1,-1,994,-1,-1,0,0,0,0,0,0,0,0,0,458,458,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0012,2.0,-1.0,3130.8,-1.0,-1.0,-1.0,1.0,-1.0,-1.0,-1.0
NET,T0012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
NETPACKET,T0012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
JFSFILE,T0012,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0013,13:18:44,07-DEC-2012
CPU01,T0013,4.0,1.0,0.0,95.0
CPU02,T0013,4.0,0.0,0.0,96.0
CPU03,T0013,3.0,1.0,0.0,96.0
CPU04,T0013,2.0,0.0,0.0,98.0
CPU05,T0013,2.0,1.0,0.0,97.0
CPU06,T0013,4.1,2.0,0.0,93.9
CPU_ALL,T0013,3.0,1.0,0.0,96.0,,6
MEM,T0013,15922.5,-0.0,-0.0,13940.0,7122.8,-0.0,-0.0,13940.0,-0.0,4325.1,4891.5,-1.0,643.5,0.0,2967.3
VM,T0013,-1,-1,-1,995,-1,-1,0,0,0,0,0,0,0,0,0,423,423,0,1,0,0,80,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0013,2.0,-1.0,3079.7,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
NETPACKET,T0013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
JFSFILE,T0013,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0013,47.8,47.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.9,27.9,0.0
DISKXFER,T0013,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0
DISKBSIZE,T0013,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,14.0,0.0
ZZZZ,T0014,13:18:45,07-DEC-2012
CPU01,T0014,6.1,2.0,0.0,91.8
CPU02,T0014,14.9,3.0,0.0,82.2
CPU03,T0014,11.0,5.0,0.0,84.0
CPU04,T0014,8.0,5.0,0.0,87.0
CPU05,T0014,8.2,4.1,0.0,87.8
CPU06,T0014,13.0,8.0,3.0,76.0
CPU_ALL,T0014,10.4,4.0,0.5,85.1,,6
MEM,T0014,15922.5,-0.0,-0.0,13940.0,7117.9,-0.0,-0.0,13940.0,-0.0,4325.1,4896.8,-1.0,643.5,0.0,2967.3
VM,T0014,-1,-1,-1,994,-1,-1,0,0,0,0,0,0,0,0,0,7213,7213,0,9,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0014,3.0,-1.0,4579.1,-1.0,-1.0,-1.0,58.8,-1.0,-1.0,-1.0
NET,T0014,0.0,0.0,0.0,0.7,0.8,0.0,0.0,0.0,0.0,0.1,0.8,0.0,
NETPACKET,T0014,0.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,2.0,4.0,1.0,
JFSFILE,T0014,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2.0,0.0
DISKREAD,T0014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0014,55.8,55.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,0.0
DISKXFER,T0014,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0
DISKBSIZE,T0014,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,0.0
ZZZZ,T0015,13:18:46,07-DEC-2012
CPU01,T0015,4.9,1.9,0.0,93.2
CPU02,T0015,3.0,3.0,0.0,93.9
CPU03,T0015,6.0,3.0,0.0,91.0
CPU04,T0015,4.0,0.0,0.0,96.0
CPU05,T0015,4.9,2.9,0.0,92.2
CPU06,T0015,4.1,0.0,5.2,90.7
CPU_ALL,T0015,4.5,2.0,0.7,92.8,,6
MEM,T0015,15922.5,-0.0,-0.0,13940.0,7118.1,-0.0,-0.0,13940.0,-0.0,4325.1,4896.4,-1.0,643.5,0.0,2967.3
VM,T0015,-1,-1,-1,994,-1,-1,0,0,0,0,0,0,0,0,0,515,515,0,-5,0,0,116,5,0,0,0,0,0,0,0,2,0,0,0,0,0,0
PROC,T0015,2.0,-1.0,3398.5,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,
NETPACKET,T0015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,
JFSFILE,T0015,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,0.0
DISKREAD,T0015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.6,115.6,0.0
DISKXFER,T0015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,7.0,0.0
DISKBSIZE,T0015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.6,16.6,0.0
ZZZZ,T0016,13:18:47,07-DEC-2012
CPU01,T0016,8.1,1.0,0.0,90.9
CPU02,T0016,5.0,3.0,0.0,92.0
CPU03,T0016,5.9,1.0,0.0,93.1
CPU04,T0016,5.0,1.0,0.0,94.1
CPU05,T0016,5.0,1.0,0.0,94.0
CPU06,T0016,6.2,2.1,4.1,87.6
CPU_ALL,T0016,5.7,1.7,0.8,91.8,,6
MEM,T0016,15922.5,-0.0,-0.0,13940.0,7118.1,-0.0,-0.0,13940.0,-0.0,4325.1,4896.4,-1.0,643.5,0.0,2967.3
VM,T0016,-1,-1,-1,996,-1,-1,0,0,0,0,0,0,0,0,0,821,821,0,0,0,0,452,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0016,1.0,-1.0,3734.7,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0016,0.0,0.0,0.0,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.1,0.0,
NETPACKET,T0016,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,
JFSFILE,T0016,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,0.0
DISKREAD,T0016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,451.4,451.4,0.0
DISKXFER,T0016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,0.0
DISKBSIZE,T0016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,37.7,0.0
ZZZZ,T0017,13:18:48,07-DEC-2012
CPU01,T0017,5.0,1.0,0.0,94.1
CPU02,T0017,6.0,2.0,0.0,92.0
CPU03,T0017,1.0,1.0,0.0,97.9
CPU04,T0017,4.1,3.1,0.0,92.9
CPU05,T0017,4.0,1.0,0.0,95.0
CPU06,T0017,7.0,4.0,0.0,89.0
CPU_ALL,T0017,4.7,1.7,0.0,93.6,,6
MEM,T0017,15922.5,-0.0,-0.0,13940.0,7118.0,-0.0,-0.0,13940.0,-0.0,4325.1,4896.4,-1.0,643.5,0.0,2967.3
VM,T0017,-1,-1,-1,996,-1,-1,0,0,0,0,0,0,0,0,0,678,678,0,-3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0017,3.0,-1.0,3821.2,-1.0,-1.0,-1.0,1.0,-1.0,-1.0,-1.0
NET,T0017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
NETPACKET,T0017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
JFSFILE,T0017,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0018,13:18:49,07-DEC-2012
CPU01,T0018,2.9,2.9,0.0,94.1
CPU02,T0018,6.0,1.0,0.0,93.0
CPU03,T0018,6.0,2.0,0.0,92.0
CPU04,T0018,5.1,0.0,0.0,94.9
CPU05,T0018,4.0,2.0,0.0,93.9
CPU06,T0018,5.1,0.0,0.0,94.9
CPU_ALL,T0018,4.7,1.5,0.0,93.8,,6
MEM,T0018,15922.5,-0.0,-0.0,13940.0,7118.0,-0.0,-0.0,13940.0,-0.0,4325.1,4896.4,-1.0,643.5,0.0,2967.3
VM,T0018,-1,-1,-1,998,-1,-1,0,0,0,0,0,0,0,0,0,484,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0018,3.0,-1.0,3287.2,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
NETPACKET,T0018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
JFSFILE,T0018,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0019,13:18:50,07-DEC-2012
CPU01,T0019,2.0,1.0,0.0,96.9
CPU02,T0019,4.0,1.0,0.0,95.0
CPU03,T0019,5.1,1.0,0.0,93.9
CPU04,T0019,4.1,0.0,0.0,95.9
CPU05,T0019,2.0,1.0,0.0,97.0
CPU06,T0019,4.0,3.0,0.0,93.0
CPU_ALL,T0019,3.5,1.2,0.0,95.3,,6
MEM,T0019,15922.5,-0.0,-0.0,13940.0,7117.4,-0.0,-0.0,13940.0,-0.0,4325.1,4897.0,-1.0,643.5,0.0,2967.3
VM,T0019,-1,-1,-1,997,-1,-1,0,0,0,0,0,0,0,0,0,800,800,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0019,2.0,-1.0,3195.6,-1.0,-1.0,-1.0,1.0,-1.0,-1.0,-1.0
NET,T0019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
NETPACKET,T0019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
JFSFILE,T0019,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0019,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0019,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0019,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0020,13:18:51,07-DEC-2012
CPU01,T0020,5.0,4.0,0.0,91.1
CPU02,T0020,4.1,2.0,0.0,93.9
CPU03,T0020,6.1,0.0,0.0,93.9
CPU04,T0020,5.9,2.0,0.0,92.1
CPU05,T0020,8.0,2.0,0.0,90.0
CPU06,T0020,7.2,2.1,0.0,90.7
CPU_ALL,T0020,6.2,2.2,0.0,91.6,,6
MEM,T0020,15922.5,-0.0,-0.0,13940.0,7115.5,-0.0,-0.0,13940.0,-0.0,4325.1,4898.7,-1.0,643.5,0.0,2967.3
VM,T0020,-1,-1,-1,998,-1,-1,0,0,0,0,0,0,0,0,0,1954,1954,0,-5,0,0,0,2,0,0,0,0,0,0,0,-8,0,0,0,0,0,0
PROC,T0020,1.0,-1.0,4096.2,-1.0,-1.0,-1.0,8.0,-1.0,-1.0,-1.0
NET,T0020,2.6,0.0,0.0,1.3,3.2,0.0,2.6,0.0,0.0,0.2,1.8,0.0,
NETPACKET,T0020,25.9,0.0,0.0,2.0,13.9,0.0,25.9,0.0,0.0,3.0,20.9,0.0,
JFSFILE,T0020,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0021,13:18:52,07-DEC-2012
CPU01,T0021,19.2,4.0,0.0,76.8
CPU02,T0021,21.2,5.1,0.0,73.7
CPU03,T0021,23.5,2.0,0.0,74.5
CPU04,T0021,16.2,7.1,0.0,76.8
CPU05,T0021,23.8,3.0,0.0,73.3
CPU06,T0021,28.6,7.1,1.0,63.3
CPU_ALL,T0021,22.1,4.7,0.2,73.0,,6
MEM,T0021,15922.5,-0.0,-0.0,13940.0,7111.8,-0.0,-0.0,13940.0,-0.0,4325.6,4897.6,-1.0,643.6,0.0,2970.6
VM,T0021,-1,-1,-1,836,-1,-1,0,0,0,0,0,0,0,0,0,6974,6974,0,-38,0,0,68,-1271958,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0021,5.0,-1.0,7202.5,-1.0,-1.0,-1.0,18.9,-1.0,-1.0,-1.0
NET,T0021,1.3,0.0,0.0,25.7,1738.6,0.0,1.3,0.0,0.0,10.1,61.2,0.0,
NETPACKET,T0021,13.0,0.0,0.0,35.9,1243.6,0.0,13.0,0.0,0.0,30.9,528.1,0.0,
JFSFILE,T0021,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0
DISKREAD,T0021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.8,67.8,0.0
DISKXFER,T0021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,0.0
DISKBSIZE,T0021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,17.0,0.0
ZZZZ,T0022,13:18:53,07-DEC-2012
CPU01,T0022,23.2,4.0,0.0,72.7
CPU02,T0022,22.2,5.1,0.0,72.7
CPU03,T0022,25.5,4.9,0.0,69.6
CPU04,T0022,23.8,7.9,0.0,68.3
CPU05,T0022,24.5,3.1,0.0,72.4
CPU06,T0022,26.3,5.3,0.0,68.4
CPU_ALL,T0022,24.1,4.9,0.0,71.0,,6
MEM,T0022,15922.5,-0.0,-0.0,13940.0,7112.1,-0.0,-0.0,13940.0,-0.0,4325.1,4891.9,-1.0,643.6,0.0,2976.0
VM,T0022,-1,-1,-1,234,-1,-1,0,0,0,0,0,0,0,0,0,8832,8832,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0022,3.0,-1.0,6568.7,-1.0,-1.0,-1.0,14.0,-1.0,-1.0,-1.0
NET,T0022,0.4,0.0,0.0,14.9,352.4,0.0,0.4,0.0,0.0,3.1,18.6,0.0,
NETPACKET,T0022,5.0,0.0,0.0,14.0,261.1,0.0,5.0,0.0,0.0,12.0,128.5,0.0,
JFSFILE,T0022,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0023,13:18:54,07-DEC-2012
CPU01,T0023,11.1,3.0,0.0,85.9
CPU02,T0023,17.8,2.0,0.0,80.2
CPU03,T0023,8.1,4.0,0.0,87.9
CPU04,T0023,15.0,4.0,0.0,81.0
CPU05,T0023,8.2,4.1,0.0,87.8
CPU06,T0023,15.7,7.8,0.0,76.5
CPU_ALL,T0023,12.7,4.2,0.0,83.1,,6
MEM,T0023,15922.5,-0.0,-0.0,13940.0,7113.6,-0.0,-0.0,13940.0,-0.0,4325.1,4889.3,-1.0,643.6,0.0,2977.7
VM,T0023,-1,-1,-1,664,-1,-1,0,0,0,0,0,0,0,0,0,4405,4405,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0023,3.0,-1.0,5265.8,-1.0,-1.0,-1.0,19.0,-1.0,-1.0,-1.0
NET,T0023,0.0,0.0,0.0,0.1,284.7,0.0,0.0,0.0,0.0,0.1,7.4,0.0,
NETPACKET,T0023,0.0,0.0,0.0,1.0,201.6,0.0,0.0,0.0,0.0,2.0,85.8,0.0,
JFSFILE,T0023,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0024,13:18:55,07-DEC-2012
CPU01,T0024,7.2,3.1,0.0,89.7
CPU02,T0024,93.0,3.0,2.0,2.0
CPU03,T0024,55.0,3.0,0.0,42.0
CPU04,T0024,5.2,8.3,0.0,86.5
CPU05,T0024,13.9,4.0,0.0,82.2
CPU06,T0024,8.4,4.2,0.0,87.4
CPU_ALL,T0024,30.9,4.1,0.3,64.7,,6
MEM,T0024,15922.5,-0.0,-0.0,13940.0,7144.4,-0.0,-0.0,13940.0,-0.0,4277.3,4884.8,-1.0,643.7,0.0,2953.8
VM,T0024,-1,-1,-1,536,-1,-1,0,0,0,0,0,0,0,0,0,14032,14032,0,60,0,0,13280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0024,4.0,-1.0,4121.9,-1.0,-1.0,-1.0,6.0,-1.0,-1.0,-1.0
NET,T0024,0.0,0.0,0.0,0.0,0.3,0.0,0.0,0.0,0.0,0.0,0.2,0.0,
NETPACKET,T0024,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,
JFSFILE,T0024,19.2,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0024,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0024,13231.5,13231.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0024,150.4,150.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0024,87.9,87.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0025,13:18:56,07-DEC-2012
CPU01,T0025,8.0,4.0,0.0,88.0
CPU02,T0025,83.8,9.1,1.0,6.1
CPU03,T0025,96.0,4.0,0.0,0.0
CPU04,T0025,4.1,1.0,0.0,94.8
CPU05,T0025,4.0,3.0,0.0,93.0
CPU06,T0025,10.0,3.0,5.0,82.0
CPU_ALL,T0025,34.6,4.2,1.0,60.2,,6
MEM,T0025,15922.5,-0.0,-0.0,13940.0,7077.3,-0.0,-0.0,13940.0,-0.0,4324.9,4929.6,-1.0,643.7,0.0,2973.6
VM,T0025,-1,-1,-1,609,-1,-1,0,0,0,0,0,0,0,0,0,17819,17819,0,-65,0,0,-63496,4,75,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0025,3.0,-1.0,3818.1,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
NETPACKET,T0025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,
JFSFILE,T0025,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0025,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0025,25084.8,25084.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0025,259.1,259.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKBSIZE,T0025,96.8,96.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
ZZZZ,T0026,13:18:57,07-DEC-2012
CPU01,T0026,6.1,4.0,0.0,89.9
CPU02,T0026,8.9,2.0,0.0,89.1
CPU03,T0026,98.0,2.0,0.0,0.0
CPU04,T0026,3.1,1.0,0.0,95.9
CPU05,T0026,6.1,2.0,0.0,91.9
CPU06,T0026,9.4,8.3,9.4,72.9
CPU_ALL,T0026,22.2,3.0,1.5,73.3,,6
MEM,T0026,15922.5,-0.0,-0.0,13940.0,7068.9,-0.0,-0.0,13940.0,-0.0,4325.1,4938.3,-1.0,643.7,0.0,2973.8
VM,T0026,-1,-1,-1,673,-1,-1,0,0,0,0,0,0,0,0,0,5439,5439,0,15,0,0,37912,-4,-75,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0026,3.0,-1.0,3858.7,-1.0,-1.0,-1.0,2.0,-1.0,-1.0,-1.0
NET,T0026,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,0.0,0.1,0.0,
NETPACKET,T0026,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,
JFSFILE,T0026,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0026,15.9,15.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0
DISKREAD,T0026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0026,49023.0,49023.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.9,31.9,0.0
DISKXFER,T0026,557.9,556.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,0.0
DISKBSIZE,T0026,87.9,88.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.7,10.7,0.0
ZZZZ,T0027,13:18:58,07-DEC-2012
CPU01,T0027,10.1,4.0,0.0,85.9
CPU02,T0027,8.0,3.0,0.0,89.0
CPU03,T0027,40.2,1.0,0.0,58.8
CPU04,T0027,8.9,5.0,0.0,86.1
CPU05,T0027,5.1,3.1,0.0,91.8
CPU06,T0027,14.3,4.1,1.0,80.6
CPU_ALL,T0027,14.5,3.5,0.3,81.7,,6
MEM,T0027,15922.5,-0.0,-0.0,13940.0,7106.2,-0.0,-0.0,13940.0,-0.0,4325.1,4901.2,-1.0,643.7,0.0,2973.8
VM,T0027,-1,-1,-1,674,-1,-1,0,0,0,0,0,0,0,0,0,7646,7646,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0027,1.0,-1.0,3945.3,-1.0,-1.0,-1.0,13.0,-1.0,-1.0,-1.0
NET,T0027,0.0,0.0,0.0,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.1,0.0,
NETPACKET,T0027,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,
JFSFILE,T0027,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0
DISKREAD,T0027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,0.0
DISKXFER,T0027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0
DISKBSIZE,T0027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,0.0
ZZZZ,T0028,13:18:59,07-DEC-2012
CPU01,T0028,5.0,1.0,0.0,94.0
CPU02,T0028,3.0,1.0,0.0,96.0
CPU03,T0028,4.0,0.0,0.0,96.0
CPU04,T0028,2.0,1.0,0.0,97.0
CPU05,T0028,4.0,1.0,0.0,95.0
CPU06,T0028,5.1,3.1,0.0,91.8
CPU_ALL,T0028,3.7,1.5,0.0,94.8,,6
MEM,T0028,15922.5,-0.0,-0.0,13940.0,7106.2,-0.0,-0.0,13940.0,-0.0,4325.1,4901.2,-1.0,643.7,0.0,2973.8
VM,T0028,-1,-1,-1,674,-1,-1,0,0,0,0,0,0,0,0,0,439,439,0,2,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
PROC,T0028,1.0,-1.0,3089.9,-1.0,-1.0,-1.0,0.0,-1.0,-1.0,-1.0
NET,T0028,0.0,0.0,0.0,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.1,0.0,
NETPACKET,T0028,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,
JFSFILE,T0028,19.3,0.0,0.0,0.0,0.3,88.2,-nan,-nan,-nan,60.3
DISKBUSY,T0028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKREAD,T0028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKWRITE,T0028,19.9,19.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
DISKXFER,T0028,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0