This file is indexed.

/var/lib/pcp/testsuite/1079.out is in pcp-testsuite 4.0.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
QA output created by 1079
General options (default)
=== std out


ATOP - slick        2015/09/25  11:03:20        --------------        1s elapsed
PRC | sys   16m20s | user  61m45s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       1% | user      4% | irq       0% | idle    392% | wait      2% |
cpu | sys       0% | user      1% | irq       0% | idle     97% | cpu002 w  1% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu000 w  1% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu001 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     99% | cpu003 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw 64269970 | intr 21748e3 |
MEM | tot     3.8G | free  196.6M | cache   1.5G | buff  275.4M | slab  358.0M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.2G | vmlim  15.2G |
PAG | scan  412940 | steal      0 | stall      0 | swin      96 | swout   2329 |
DSK |          sda | busy      2% | read  161108 | write 163892 | avio 6.23 ms |
NFC | rpc       35 | read       0 | write      0 | retxmit    0 | autref    35 |
NET | transport    | tcpi  263904 | tcpo  284726 | udpi   75245 | udpo   81495 |
NET | network      | ipi   300472 | ipo   328158 | ipfrw      0 | deliv 298076 |
NET | p2p1      4% | pcki  391116 | pcko  275261 | si 1168 Mbps | so  830 Mbps |
NET | tun0      0% | pcki    5917 | pcko    6220 | si   17 Mbps | so 4842 Kbps |
NET | lo      ---- | pcki   60893 | pcko   60893 | si  597 Mbps | so  597 Mbps |
WWW | reqs       9 | totKB     17 | byt/rq  1934 | iwork      4 | bwork      1 |
                   *** system and process activity since boot ***
  PID SYSCPU USRCPU  VGROW  RGROW  RDDSK  WRDSK  THR S CPUNR  CPU CMD            
 7014  4m11s 45m01s   1.8G 546.0M 183.7M 991.2M   49 S     3   3% firefox        
  877  5m15s  3m38s 187.0M 28928K     0K     0K    1 S     1   1% Xorg           
  556  3m00s  3m48s   3.5G 185.6M     0K     0K   55 S     2   0% java           
 6354 44.94s  4m28s   2.1G 388.3M 38904K   196K    7 S     2   0% gnome-shell    
 6971 28.27s  1m59s 529.5M 42968K  9016K 57432K    2 S     3   0% xchat          
 1430 18.67s 27.66s 510.9M 23448K     0K     0K    6 S     0   0% polkitd        
21737  4.13s 30.23s 632.2M 32040K  2536K     0K    4 S     0   0% gnome-terminal 
  519  6.53s 17.23s  4364K  1332K     0K     0K    1 S     3   0% rngd           
  957  2.09s 17.03s 482.6M 17104K     0K     0K    7 S     1   0% docker         
 6299  2.16s 15.46s 418.3M  7580K     0K     0K    5 S     2   0% udisksd        
    7 15.60s  0.00s     0K     0K     0K     0K    1 S     1   0% rcu_sched      
  542  3.19s 11.80s 41992K  4124K     0K     0K    2 S     3   0% dbus-daemon    
  495  9.55s  4.50s   1.3G 13372K     0K     0K    4 S     0   0% rsyslogd       
   25 10.01s  0.00s     0K     0K     0K     0K    1 S     3   0% rcuos/2        
    9  9.62s  0.00s     0K     0K     0K     0K    1 S     2   0% rcuos/0        
  643  2.82s  6.71s 433.2M 13696K     0K     0K    4 S     1   0% NetworkManager 
  530  7.69s  1.13s 19140K  2672K     0K     0K    1 S     0   0% irqbalance     
    1  6.63s  1.99s 193.8M  7800K     0K     0K    1 S     2   0% systemd        
 6317  0.79s  5.68s 954.1M 36924K   292K     0K    5 S     2   0% goa-daemon     
16582  4.03s  2.26s 128.5M  4568K     0K     0K    1 S     2   0% sshd           
 6265  1.98s  2.43s   1.3G 37712K  3220K     0K    5 S     1   0% gnome-settings 
   18  4.30s  0.00s     0K     0K     0K     0K    1 S     1   0% rcuos/1        
  959  2.11s  2.05s 307.4M  2460K     0K     0K    6 S     0   0% memcached      
  462  4.00s  0.00s     0K     0K     0K     0K    1 D     0   0% rtsx_usb_ms_1  
   32  3.91s  0.00s     0K     0K     0K     0K    1 S     1   0% rcuos/3        
  313  2.77s  0.60s 136.7M 44052K     0K     0K    1 S     2   0% systemd-journa 
 6531  1.19s  2.12s   1.3G 74108K  1520K   820K    6 S     1   0% evolution-cale 
  235  2.84s  0.00s     0K     0K     0K     0K    1 S     0   0% jbd2/sda7-8    
  237  2.72s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/2:1H   
  548  2.31s  0.27s 123.4M  3188K     0K     0K    1 S     1   0% crond          
16591  0.53s  1.77s 114.4M  5428K 13856K  9968K    1 S     2   0% bash           
 1249  1.97s  0.20s 188.0M  3200K     0K     0K    1 S     0   0% postgres       
30630  0.05s  1.99s 157.8M 13796K     0K     0K    2 S     3   0% pmdarpm        
 6410  0.92s  0.92s 460.1M  9012K     0K     4K    3 S     0   0% ibus-daemon    
21741  0.57s  1.20s 114.5M  5464K 40228K 30800K    1 S     1   0% bash           
  539  1.25s  0.49s 34700K  3032K     0K     0K    1 S     0   0% systemd-logind 
28356  1.04s  0.65s 543.4M  6948K   124K     0K    4 S     3   0% gvfsd-mtp      
 8209  0.77s  0.83s 79704K  7268K     0K     0K    1 S     3   0% vpnc           
  489  1.27s  0.23s 160.8M  2200K     0K     0K    3 S     3   0% rtkit-daemon   
  483  0.39s  0.73s 322.0M 27648K     0K     0K    2 S     0   0% firewalld      
 1248  0.78s  0.30s 329.6M  5904K     0K     0K    1 S     2   0% postgres       
 1013  1.02s  0.05s 328.8M 18436K     0K     0K    1 S     0   0% postgres       
   22  1.05s  0.00s     0K     0K     0K     0K    1 S     2   0% ksoftirqd/2    
12870  1.02s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/u16:2  
  486  0.30s  0.70s 361.0M  6924K     0K     0K    3 S     3   0% accounts-daemo 
 6323  0.17s  0.80s 305.8M 11984K   228K     8K    3 S     2   0% mission-contro 
 6258  0.39s  0.53s 555.6M 10844K   632K     8K    4 S     3   0% pulseaudio     
 1246  0.68s  0.24s 328.8M  4472K     0K     0K    1 S     2   0% postgres       
 6075  0.31s  0.60s 41808K  3416K   128K     0K    2 S     1   0% dbus-daemon    
 1247  0.70s  0.19s 328.8M  3140K     0K     0K    1 S     0   0% postgres       
   14  0.84s  0.00s     0K     0K     0K     0K    1 S     1   0% migration/1    
  520  0.60s  0.20s 44068K  2292K     0K     0K    1 S     0   0% rpcbind        
 6007  0.40s  0.37s 360.9M 10740K     0K     0K    3 S     3   0% gdm-session-wo 
   74  0.77s  0.00s     0K     0K     0K     0K    1 S     2   0% fsnotify_mark  
 5756  0.32s  0.44s 433.8M 11904K     0K     0K    3 S     0   0% upowerd        
 6035  0.09s  0.65s 908.7M  7672K     0K     0K   10 S     2   0% gnome-keyring- 
    3  0.71s  0.00s     0K     0K     0K     0K    1 S     0   0% ksoftirqd/0    
 6706  0.18s  0.49s 683.5M 25080K   588K     0K    3 S     0   0% vino-server    
 6066  0.28s  0.37s 562.5M 12108K  1800K    32K    4 S     1   0% gnome-session  
  341  0.17s  0.48s 46508K  4836K     0K     0K    1 S     3   0% systemd-udevd  
   73  0.63s  0.00s     0K     0K     0K     0K    1 S     0   0% kswapd0        
 6656  0.11s  0.49s 495.9M 19836K 12504K   888K    8 S     2   0% tracker-store  
   12  0.56s  0.00s     0K     0K     0K     0K    1 S     0   0% watchdog/0     
   13  0.56s  0.00s     0K     0K     0K     0K    1 S     1   0% watchdog/1     
  538  0.29s  0.26s 28080K  2848K     0K     0K    1 S     2   0% avahi-daemon   
   15  0.53s  0.00s     0K     0K     0K     0K    1 S     1   0% ksoftirqd/1    
   11  0.51s  0.00s     0K     0K     0K     0K    1 S     0   0% migration/0    
 6414  0.08s  0.41s   1.3G 27352K  8852K     0K    3 S     3   0% evolution-sour 
   20  0.49s  0.00s     0K     0K     0K     0K    1 S     2   0% watchdog/2     
 6483  0.12s  0.35s 859.0M 32004K  2728K     0K    5 S     0   0% evolution-alar 
 6398  0.08s  0.39s 759.6M 25700K  2008K     0K    5 S     3   0% gnome-shell-ca 
 6245  0.17s  0.30s 126.6M  6120K     0K     0K    2 S     3   0% at-spi2-regist 
   28  0.45s  0.00s     0K     0K     0K     0K    1 S     3   0% migration/3    
22844  0.45s  0.00s     0K     0K     0K     0K    1 S     0   0% kworker/u16:1  
   21  0.44s  0.00s     0K     0K     0K     0K    1 S     2   0% migration/2    
  468  0.36s  0.06s 80216K  1468K     0K     0K    2 S     1   0% audispd        
30594  0.05s  0.35s 162.2M  7780K     0K     0K    1 S     0   0% perl           
 6297  0.12s  0.27s 539.9M  9468K   280K     0K    3 S     1   0% gvfs-udisks2-v 
  956  0.15s  0.23s 495.6M 25180K     0K     0K   11 S     2   0% libvirtd       
  388  0.29s  0.09s 51192K  3032K     0K     0K    2 S     2   0% auditd         
   27  0.38s  0.00s     0K     0K     0K     0K    1 S     3   0% watchdog/3     
 1352  0.28s  0.09s 245.2M 11944K     0K     0K    2 S     2   0% pmwebd         
   29  0.32s  0.00s     0K     0K     0K     0K    1 S     3   0% ksoftirqd/3    
24248  0.28s  0.00s     0K     0K     0K     0K    1 S     1   0% kworker/1:0    
 6596  0.03s  0.24s 361.5M 20636K   648K     0K    2 S     1   0% applet.py      
 6592  0.08s  0.18s 670.6M 14176K  5568K     8K    4 S     2   0% tracker-miner- 
21038  0.07s  0.19s 114.2M  5240K     0K     0K    1 S     0   0% bash           
30636  0.16s  0.08s 64288K  4488K     0K     0K    2 S     2   0% pmdaperfevent  
 5797  0.05s  0.18s 388.6M 11964K     0K     0K    3 S     0   0% colord         
22779  0.10s  0.13s 146.2M  4796K   124K     0K    1 S     2   0% gconfd-2       
  509  0.12s  0.09s 204.7M  7456K     0K     0K    1 S     0   0% abrt-watch-log 
29378  0.05s  0.15s 114.5M  5380K  1528K     4K    1 S     2   0% bash           
  492  0.18s  0.02s 100.3M  3156K     0K     0K    1 S     3   0% chronyd        
 6682  0.04s  0.15s 447.6M 22784K  1136K     0K    2 S     2   0% abrt-applet    
19036  0.18s  0.00s     0K     0K     0K     0K    1 S     0   0% kworker/0:2    
 4507  0.04s  0.11s 114.4M  5288K 148.6M 28628K    1 S     0   0% bash           
30575  0.10s  0.05s 131.8M  4144K     0K     0K    2 S     2   0% pmcd           
30632  0.02s  0.12s 218.8M 14576K     0K     0K    1 S     0   0% python3        
 6688  0.04s  0.10s 476.2M  7712K   496K     0K    3 S     2   0% deja-dup-monit 
29334  0.12s  0.02s 128.3M  7180K     0K     0K    1 S     0   0% sshd           
16672  0.11s  0.02s 128.3M  7304K     0K     0K    1 S     1   0% sshd           
16569  0.11s  0.02s 128.3M  7280K     0K     0K    1 S     2   0% sshd           
16677  0.10s  0.03s 128.5M  4276K     0K     0K    1 S     3   0% sshd           
16680  0.03s  0.09s 114.3M  5332K    36K     0K    1 S     0   0% bash           
30638  0.00s  0.11s 221.6M 15660K     0K     0K    1 S     0   0% python3        
 7984  0.07s  0.04s 80508K  6024K   704K     0K    1 S     3   0% ssh            
 6371  0.09s  0.01s 184.6M  7652K     0K     0K    1 S     2   0% cupsd          
 8421  0.02s  0.08s 114.4M  5364K 19668K     4K    1 S     0   0% bash           
    2  0.10s  0.00s     0K     0K     0K     0K    1 S     2   0% kthreadd       
30615  0.02s  0.07s 177.4M 13240K     0K     0K    1 S     0   0% perl           
 6381  0.02s  0.07s 176.5M  4728K     0K   576K    3 S     2   0% dconf-service  
 6241  0.04s  0.05s 41048K  3172K     0K     0K    2 S     2   0% dbus-daemon    
26115  0.09s  0.00s     0K     0K     0K     0K    1 S     3   0% kworker/3:2    
  471  0.01s  0.07s 26212K  2160K     0K     0K    1 S     3   0% sedispatch     
30628  0.01s  0.06s 170.9M 10648K     0K     0K    1 S     1   0% perl           
 7910  0.01s  0.06s 114.2M  4948K   132K     0K    1 S     1   0% bash           
 6014  0.05s  0.02s 44560K  4192K    24K     0K    1 S     3   0% systemd        
  534  0.04s  0.03s 26564K  3812K     0K     0K    1 S     1   0% smartd         
30579  0.05s  0.01s 53324K  4324K     0K     0K    1 R     0   0% pmdaproc       
30603  0.01s  0.05s 171.5M 11164K     0K     0K    1 S     3   0% perl           
30627  0.02s  0.04s 170.6M 10472K     0K     0K    1 S     2   0% perl           
32671  0.05s  0.01s 206.7M  7116K     0K     0K    1 S     0   0% httpd          
 6525  0.01s  0.05s 234.2M  6680K    96K   628K    2 S     2   0% gvfsd-metadata 
 6140  0.01s  0.05s 306.6M  6448K   776K     0K    2 S     0   0% gvfsd          
 7524  0.04s  0.02s 44564K  4240K     0K     0K    1 S     2   0% systemd        
 8026  0.04s  0.02s 44564K  4232K     0K     0K    1 S     3   0% systemd        
 5628  0.04s  0.02s 44556K  4204K     0K     0K    1 S     0   0% systemd        
  127  0.06s  0.00s     0K     0K     0K     0K    1 S     1   0% kauditd        
  500  0.03s  0.02s 207.1M  8656K     0K     0K    1 S     0   0% abrtd          
28161  0.00s  0.05s 148.5M  7980K     0K    16K    1 S     1   0% vim            
  647  0.02s  0.03s 373.8M  6928K     0K     0K    3 S     0   0% gdm-simple-sla 
29375  0.03s  0.01s 128.3M  4068K     0K     0K    1 S     3   0% sshd           
30581  0.04s  0.00s 123.3M  3596K     0K     0K    2 S     1   0% pmdashping     
 1245  0.04s  0.00s 328.8M  3140K     0K     0K    1 S     2   0% postgres       
  482  0.03s  0.01s 16776K  2608K     0K     0K    1 S     0   0% alsactl        
  222  0.04s  0.00s     0K     0K     0K     0K    1 S     1   0% kworker/1:1H   
30101  0.04s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/2:1    
 1193  0.02s  0.01s  99.8M 19160K     0K     0K    1 S     3   0% dhclient       
  496  0.02s  0.01s 318.9M  7048K     0K     0K    3 S     1   0% ModemManager   
 6327  0.01s  0.02s 310.3M  6964K   112K     0K    2 S     1   0% gvfs-mtp-volum 
  551  0.02s  0.01s 292.1M  5744K     0K     0K    3 S     3   0% gdm            
  662  0.02s  0.01s 50476K  3800K     0K    17K    1 S     0   0% pmlogger       
 6630  0.00s  0.02s 288.0M 16540K    76K     0K    1 S     2   0% seapplet       
 6420  0.00s  0.02s 427.6M 15116K     0K     0K    3 S     3   0% ibus-x11       
 6308  0.00s  0.02s 430.3M 10232K   116K     0K    3 S     2   0% gvfs-afc-volum 
 6340  0.00s  0.02s 316.9M  6592K   572K     0K    2 S     2   0% gvfs-gphoto2-v 
 6314  0.00s  0.02s 302.1M  6332K   116K     0K    2 S     2   0% gvfs-goa-volum 
  972  0.01s  0.01s 82832K  5960K     0K     0K    1 S     1   0% sshd           
30593  0.02s  0.00s 50652K  3728K     0K     0K    1 S     1   0% pmdalinux      
 5801  0.02s  0.00s 165.5M  3000K     0K     0K    3 S     3   0% pcscd          
 6469  0.00s  0.01s 312.5M  7080K     0K     0K    3 S     1   0% ibus-engine-si 
21036  0.01s  0.00s 216.5M  6792K     0K     0K    1 S     1   0% sudo           
 6160  0.00s  0.01s 353.5M  6248K   340K     0K    5 S     2   0% gvfsd-fuse     
  552  0.01s  0.00s 30228K  3880K     0K     0K    1 S     1   0% bluetoothd     
30609  0.01s  0.00s 52536K  3732K     0K     0K    1 S     2   0% pmdaapache     
  309  0.00s  0.01s 110.6M  3056K    89K     0K    1 S     2   0% mk.atop.sh     
  983  0.00s  0.01s 44492K  3012K     0K     0K    1 S     2   0% rpc.statd      
  549  0.01s  0.00s 25944K  2264K     0K     0K    1 S     0   0% atd            
  216  0.01s  0.00s     0K     0K     0K     0K    1 S     0   0% kworker/0:1H   
 6378  0.00s  0.00s 501.9M  9716K    52K     0K    2 S     3   0% gsd-printer    
 6687  0.00s  0.00s 294.9M  8948K   244K     0K    3 S     3   0% telepathy-logg 
  531  0.00s  0.00s 204.7M  7388K     0K     0K    1 S     3   0% abrt-watch-log 
 6418  0.00s  0.00s 384.4M  7028K     8K     0K    4 S     0   0% ibus-dconf     
 6693  0.00s  0.00s 378.6M  6104K   168K     0K    2 S     3   0% gvfsd-burn     
 8201  0.00s  0.00s 244.9M  5884K     0K     0K    2 S     3   0% nm-vpnc-servic 
32672  0.00s  0.00s 206.9M  5768K     0K     0K    1 S     2   0% httpd          
21037  0.00s  0.00s 195.7M  5616K     0K     0K    1 S     2   0% su             
 6237  0.00s  0.00s 332.0M  5412K     0K     0K    4 S     0   0% at-spi-bus-lau 
32673  0.00s  0.00s 206.9M  5328K     0K     0K    1 S     0   0% httpd          
32675  0.00s  0.00s 206.9M  5328K     0K     0K    1 S     3   0% httpd          
32674  0.00s  0.00s 206.9M  5200K     0K     0K    1 S     0   0% httpd          
32676  0.00s  0.00s 206.9M  5200K     0K     0K    1 S     0   0% httpd          
  333  0.00s  0.00s 104.4M  4372K     0K     0K    1 S     0   0% lvmetad        
30642  0.00s  0.00s 52528K  3656K     0K     0K    1 S     3   0% pmdasimple     
30584  0.00s  0.00s 52588K  3644K     0K     0K    1 S     1   0% pmdasample     
30611  0.00s  0.00s 52528K  3588K     0K     0K    1 S     0   0% pmdamounts     
30578  0.00s  0.00s 50456K  3424K     0K     0K    1 S     0   0% pmdaroot       
30580  0.00s  0.00s 50456K  3408K     0K     0K    1 S     2   0% pmdaxfs        
 1236  0.00s  0.00s 187.9M  3064K     0K     0K    1 S     2   0% postgres       
 8033  0.00s  0.00s 74424K  2872K     0K     0K    1 S     3   0% (sd-pam)       
 7529  0.00s  0.00s 74424K  2868K     0K     0K    1 S     3   0% (sd-pam)       
 6020  0.00s  0.00s 74424K  2836K     0K     0K    1 S     0   0% (sd-pam)       
 5631  0.00s  0.00s 74424K  2820K     0K     0K    1 S     0   0% (sd-pam)       
 6685  0.00s  0.00s 23372K  2812K   440K     0K    1 S     2   0% obexd          
28162  0.00s  0.00s 11544K  1932K     0K     0K    1 S     1   0% cscope         
 6074  0.00s  0.00s 13936K  1872K     0K     0K    1 S     3   0% dbus-launch    
  955  0.00s  0.00s  7000K  1800K     0K     0K    1 S     3   0% mcelog         
21740  0.00s  0.00s  8448K  1532K     0K     0K    1 S     3   0% gnome-pty-help 
  672  0.00s  0.00s 27952K   232K     0K     0K    1 S     0   0% avahi-daemon   
    5  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% kworker/0:0H   
    8  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcu_bh         
   10  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcuob/0        
   17  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% kworker/1:0H   
   19  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcuob/1        
   24  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/2:0H   
   26  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcuob/2        
   31  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kworker/3:0H   
   33  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcuob/3        
   34  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% khelper        
   35  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kdevtmpfs      
   36  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% netns          
   37  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% perf           
   38  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% writeback      
   39  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% ksmd           
   40  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% khugepaged     
   41  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% crypto         
   42  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kintegrityd    
   43  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% bioset         
   44  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kblockd        
   45  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% ata_sff        
   46  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% md             
   47  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% devfreq_wq     
   84  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% kthrotld       
   85  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% acpi_thermal_p 
   86  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% scsi_eh_0      
   87  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% scsi_tmf_0     
   88  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% scsi_eh_1      
   89  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% scsi_tmf_1     
   92  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% kpsmoused      
   94  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% dm_bufio_cache 
   95  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% ipv6_addrconf  
   97  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% deferwq        
  215  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kworker/3:1H   
  236  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% ext4-rsv-conve 
  401  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% irq/46-mei_me  
  437  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% hd-audio0      
  438  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% hd-audio1      
  444  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kmemstick      
  474  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% cfg80211       
  476  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% rpciod         
  499  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% kvm-irqfd-clea 
  510  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/u17:0  
  511  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% hci0           
  512  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% hci0           
  513  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/u17:1  
  677  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1162  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% loop0          
 1163  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% loop1          
 1164  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kdmflush       
 1175  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% bioset         
 1194  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% kcopyd         
 1195  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% bioset         
 1196  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% dm-thin        
 1197  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% bioset         
 6290  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% krfcommd       
29143  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kworker/3:1    
30245  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% kworker/1:1    
30263  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% kworker/0:3    
30730  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% nfsiod         
30736  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% nfsv4.0-svc    
31667  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/2:3    
32428  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kworker/3:0    
32429  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kworker/3:3    
  670  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                


ATOP - slick        2015/09/25  11:03:21        --------------        1s elapsed
PRC | sys    0.04s | user   0.02s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       5% | user      5% | irq       0% | idle    382% | wait      8% |
cpu | sys       2% | user      2% | irq       0% | idle     96% | cpu000 w  0% |
cpu | sys       1% | user      2% | irq       0% | idle     97% | cpu003 w  0% |
cpu | sys       1% | user      1% | irq       0% | idle     90% | cpu001 w  8% |
cpu | sys       1% | user      1% | irq       0% | idle     98% | cpu002 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw     1622 | intr     305 |
MEM | tot     3.8G | free  195.8M | cache   1.5G | buff  275.4M | slab  358.1M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.1G | vmlim  15.2G |
DSK |          sda | busy      8% | read       5 | write      0 | avio 16.2 ms |
NET | transport    | tcpi       5 | tcpo       5 | udpi       0 | udpo       0 |
NET | network      | ipi        5 | ipo        4 | ipfrw      0 | deliv      4 |
NET | p2p1      0% | pcki       8 | pcko       5 | si    8 Kbps | so    2 Kbps |
NET | lo      ---- | pcki       2 | pcko       2 | si    1 Kbps | so    1 Kbps |

  PID SYSCPU USRCPU  VGROW  RGROW  RDDSK  WRDSK  THR S CPUNR  CPU CMD            
30579  0.02s  0.01s    92K   300K     0K     0K    1 R     0   3% pmdaproc       
 7014  0.00s  0.01s     0K     0K     0K     0K   49 S     3   1% firefox        
  662  0.01s  0.00s   640K   376K     0K   148K    1 S     0   1% pmlogger       
    9  0.01s  0.00s     0K     0K     0K     0K    1 S     2   1% rcuos/0        
30594  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% perl           
 6354  0.00s  0.00s     0K     0K     0K     0K    7 S     1   0% gnome-shell    
  877  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% Xorg           
32676  0.00s  0.00s     0K   536K     0K     0K    1 S     2   0% httpd          
30575  0.00s  0.00s   232K   128K     0K     0K    2 S     1   0% pmcd           
30593  0.00s  0.00s     0K    24K     0K     0K    1 S     2   0% pmdalinux      
30609  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% pmdaapache     
  309  0.00s  0.00s     0K     0K    50K     0K    1 S     2   0% mk.atop.sh     
  677  0.00s  0.00s 48148K  2212K     0K     0K    1 S     1   0% pmsleep        
    7  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% rcu_sched      
   18  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcuos/1        
   25  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% rcuos/2        
  462  0.00s  0.00s     0K     0K     0K     0K    1 D     2   0% rtsx_usb_ms_1  
12870  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% kworker/u16:2  
22844  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/u16:1  


ATOP - slick        2015/09/25  11:03:22        --------------        1s elapsed
PRC | sys    0.01s | user   0.02s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       2% | user      2% | irq       0% | idle    395% | wait      1% |
cpu | sys       2% | user      2% | irq       0% | idle     96% | cpu000 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu003 w  0% |
cpu | sys       1% | user      0% | irq       0% | idle     99% | cpu001 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw      501 | intr     219 |
MEM | tot     3.8G | free  195.7M | cache   1.5G | buff  275.4M | slab  358.1M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.1G | vmlim  15.2G |
NET | transport    | tcpi       5 | tcpo       6 | udpi       0 | udpo       0 |
NET | p2p1      0% | pcki       3 | pcko       0 | si    1 Kbps | so    0 Kbps |
NET | lo      ---- | pcki       7 | pcko       7 | si    9 Kbps | so    9 Kbps |

  PID SYSCPU USRCPU  VGROW  RGROW  RDDSK  WRDSK  THR S CPUNR  CPU CMD            
30579  0.01s  0.01s     4K     4K     0K     0K    1 R     0   2% pmdaproc       
 7014  0.00s  0.01s     0K     0K     0K     0K   49 S     3   1% firefox        
30594  0.00s  0.00s     0K     0K     0K     0K    1 S     0   1% perl           
 6354  0.00s  0.00s     0K     0K     0K     0K    7 S     2   0% gnome-shell    
  877  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% Xorg           
  662  0.00s  0.00s   224K   160K     0K   131K    1 S     0   0% pmlogger       
30575  0.00s  0.00s     0K     0K     0K     0K    2 S     2   0% pmcd           
30593  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% pmdalinux      
  309  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% mk.atop.sh     
    7  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% rcu_sched      
    9  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% rcuos/0        
   25  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcuos/2        
  677  0.00s  0.00s -47.0M -2212K     0K     0K    0      0   0%                
12870  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/u16:2  
22844  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% kworker/u16:1  
=== std err
=== done

Memory option
=== std out


ATOP - slick        2015/09/25  11:03:20        --------------        1s elapsed
PRC | sys   16m20s | user  61m45s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       1% | user      4% | irq       0% | idle    392% | wait      2% |
cpu | sys       0% | user      1% | irq       0% | idle     97% | cpu002 w  1% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu000 w  1% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu001 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     99% | cpu003 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw 64269970 | intr 21748e3 |
MEM | tot     3.8G | free  196.6M | cache   1.5G | buff  275.4M | slab  358.0M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.2G | vmlim  15.2G |
PAG | scan  412940 | steal      0 | stall      0 | swin      96 | swout   2329 |
DSK |          sda | busy      2% | read  161108 | write 163892 | avio 6.23 ms |
NFC | rpc       35 | read       0 | write      0 | retxmit    0 | autref    35 |
NET | transport    | tcpi  263904 | tcpo  284726 | udpi   75245 | udpo   81495 |
NET | network      | ipi   300472 | ipo   328158 | ipfrw      0 | deliv 298076 |
NET | p2p1      4% | pcki  391116 | pcko  275261 | si 1168 Mbps | so  830 Mbps |
NET | tun0      0% | pcki    5917 | pcko    6220 | si   17 Mbps | so 4842 Kbps |
NET | lo      ---- | pcki   60893 | pcko   60893 | si  597 Mbps | so  597 Mbps |
WWW | reqs       9 | totKB     17 | byt/rq  1934 | iwork      4 | bwork      1 |
                   *** system and process activity since boot ***
  PID VSTACK  VSIZE  RSIZE  PSIZE  VGROW  RGROW SWAPSZ  MEM CMD            
 7014   376K   1.8G 546.0M     ?K   1.8G 546.0M     0K  14% firefox        
 6354   156K   2.1G 388.3M     ?K   2.1G 388.3M     0K  10% gnome-shell    
  556   136K   3.5G 185.6M     ?K   3.5G 185.6M     0K   5% java           
 6531   136K   1.3G 74108K     ?K   1.3G 74108K     0K   2% evolution-cale 
  313   136K 136.7M 44052K     ?K 136.7M 44052K    80K   1% systemd-journa 
 6971   208K 529.5M 42968K     ?K 529.5M 42968K     0K   1% xchat          
 6265   136K   1.3G 37712K     ?K   1.3G 37712K     0K   1% gnome-settings 
 6317   136K 954.1M 36924K     ?K 954.1M 36924K     0K   1% goa-daemon     
21737   136K 632.2M 32040K     ?K 632.2M 32040K     0K   1% gnome-terminal 
 6483   136K 859.0M 32004K     ?K 859.0M 32004K     0K   1% evolution-alar 
  877   136K 187.0M 28928K     ?K 187.0M 28928K     0K   1% Xorg           
  483   136K 322.0M 27648K     ?K 322.0M 27648K     0K   1% firewalld      
 6414   136K   1.3G 27352K     ?K   1.3G 27352K     0K   1% evolution-sour 
 6398   136K 759.6M 25700K     ?K 759.6M 25700K     0K   1% gnome-shell-ca 
  956   136K 495.6M 25180K     ?K 495.6M 25180K     0K   1% libvirtd       
 6706   136K 683.5M 25080K     ?K 683.5M 25080K     0K   1% vino-server    
 1430   136K 510.9M 23448K     ?K 510.9M 23448K     0K   1% polkitd        
 6682   136K 447.6M 22784K     ?K 447.6M 22784K     0K   1% abrt-applet    
 6596   136K 361.5M 20636K     ?K 361.5M 20636K     0K   1% applet.py      
 6656   136K 495.9M 19836K     ?K 495.9M 19836K     0K   1% tracker-store  
 1193   136K  99.8M 19160K     ?K  99.8M 19160K     0K   0% dhclient       
 1013   152K 328.8M 18436K     ?K 328.8M 18436K     0K   0% postgres       
  957   136K 482.6M 17104K     ?K 482.6M 17104K     0K   0% docker         
 6630   136K 288.0M 16540K     ?K 288.0M 16540K     0K   0% seapplet       
30638   136K 221.6M 15660K     ?K 221.6M 15660K     0K   0% python3        
 6420   136K 427.6M 15116K     ?K 427.6M 15116K     0K   0% ibus-x11       
30632   136K 218.8M 14576K     ?K 218.8M 14576K     0K   0% python3        
 6592   136K 670.6M 14176K     ?K 670.6M 14176K     0K   0% tracker-miner- 
30630   136K 157.8M 13796K     ?K 157.8M 13796K     0K   0% pmdarpm        
  643   136K 433.2M 13696K     ?K 433.2M 13696K     0K   0% NetworkManager 
  495   136K   1.3G 13372K     ?K   1.3G 13372K     0K   0% rsyslogd       
30615   136K 177.4M 13240K     ?K 177.4M 13240K     0K   0% perl           
 6066   136K 562.5M 12108K     ?K 562.5M 12108K     0K   0% gnome-session  
 6323   136K 305.8M 11984K     ?K 305.8M 11984K     0K   0% mission-contro 
 5797   136K 388.6M 11964K     ?K 388.6M 11964K     0K   0% colord         
 1352   136K 245.2M 11944K     ?K 245.2M 11944K     0K   0% pmwebd         
 5756   136K 433.8M 11904K     ?K 433.8M 11904K     0K   0% upowerd        
30603   136K 171.5M 11164K     ?K 171.5M 11164K     0K   0% perl           
 6258   136K 555.6M 10844K     ?K 555.6M 10844K     0K   0% pulseaudio     
 6007   136K 360.9M 10740K     ?K 360.9M 10740K     0K   0% gdm-session-wo 
30628   136K 170.9M 10648K     ?K 170.9M 10648K     0K   0% perl           
30627   136K 170.6M 10472K     ?K 170.6M 10472K     0K   0% perl           
 6308   136K 430.3M 10232K     ?K 430.3M 10232K     0K   0% gvfs-afc-volum 
 6378   136K 501.9M  9716K     ?K 501.9M  9716K     0K   0% gsd-printer    
 6297   136K 539.9M  9468K     ?K 539.9M  9468K     0K   0% gvfs-udisks2-v 
 6410   136K 460.1M  9012K     ?K 460.1M  9012K     0K   0% ibus-daemon    
 6687   136K 294.9M  8948K     ?K 294.9M  8948K     0K   0% telepathy-logg 
  500   136K 207.1M  8656K     ?K 207.1M  8656K     0K   0% abrtd          
28161   136K 148.5M  7980K     ?K 148.5M  7980K     0K   0% vim            
    1   136K 193.8M  7800K     ?K 193.8M  7800K   144K   0% systemd        
30594   136K 162.2M  7780K     ?K 162.2M  7780K     0K   0% perl           
 6688   136K 476.2M  7712K     ?K 476.2M  7712K     0K   0% deja-dup-monit 
 6035   136K 908.7M  7672K     ?K 908.7M  7672K     0K   0% gnome-keyring- 
 6371   136K 184.6M  7652K     ?K 184.6M  7652K     0K   0% cupsd          
 6299   136K 418.3M  7580K     ?K 418.3M  7580K     0K   0% udisksd        
  509   136K 204.7M  7456K     ?K 204.7M  7456K     0K   0% abrt-watch-log 
  531   136K 204.7M  7388K     ?K 204.7M  7388K     0K   0% abrt-watch-log 
16672   136K 128.3M  7304K     ?K 128.3M  7304K     0K   0% sshd           
16569   136K 128.3M  7280K     ?K 128.3M  7280K     0K   0% sshd           
 8209   136K 79704K  7268K     ?K 79704K  7268K     0K   0% vpnc           
29334   136K 128.3M  7180K     ?K 128.3M  7180K     0K   0% sshd           
32671   136K 206.7M  7116K     ?K 206.7M  7116K     0K   0% httpd          
 6469   136K 312.5M  7080K     ?K 312.5M  7080K     0K   0% ibus-engine-si 
  496   136K 318.9M  7048K     ?K 318.9M  7048K     0K   0% ModemManager   
 6418   136K 384.4M  7028K     ?K 384.4M  7028K     0K   0% ibus-dconf     
 6327   136K 310.3M  6964K     ?K 310.3M  6964K     0K   0% gvfs-mtp-volum 
28356   136K 543.4M  6948K     ?K 543.4M  6948K     0K   0% gvfsd-mtp      
  647   136K 373.8M  6928K     ?K 373.8M  6928K     0K   0% gdm-simple-sla 
  486   136K 361.0M  6924K     ?K 361.0M  6924K     0K   0% accounts-daemo 
21036   136K 216.5M  6792K     ?K 216.5M  6792K     0K   0% sudo           
 6525   136K 234.2M  6680K     ?K 234.2M  6680K     0K   0% gvfsd-metadata 
 6340   136K 316.9M  6592K     ?K 316.9M  6592K     0K   0% gvfs-gphoto2-v 
 6140   136K 306.6M  6448K     ?K 306.6M  6448K     0K   0% gvfsd          
 6314   136K 302.1M  6332K     ?K 302.1M  6332K     0K   0% gvfs-goa-volum 
 6160   136K 353.5M  6248K     ?K 353.5M  6248K     0K   0% gvfsd-fuse     
 6245   136K 126.6M  6120K     ?K 126.6M  6120K     0K   0% at-spi2-regist 
 6693   136K 378.6M  6104K     ?K 378.6M  6104K     0K   0% gvfsd-burn     
 7984   136K 80508K  6024K     ?K 80508K  6024K     0K   0% ssh            
  972   136K 82832K  5960K     ?K 82832K  5960K     0K   0% sshd           
 1248   152K 329.6M  5904K     ?K 329.6M  5904K     0K   0% postgres       
 8201   136K 244.9M  5884K     ?K 244.9M  5884K     0K   0% nm-vpnc-servic 
32672   136K 206.9M  5768K     ?K 206.9M  5768K     0K   0% httpd          
  551   136K 292.1M  5744K     ?K 292.1M  5744K     0K   0% gdm            
21037   292K 195.7M  5616K     ?K 195.7M  5616K     0K   0% su             
21741   136K 114.5M  5464K     ?K 114.5M  5464K     0K   0% bash           
16591   136K 114.4M  5428K     ?K 114.4M  5428K     0K   0% bash           
 6237   136K 332.0M  5412K     ?K 332.0M  5412K     0K   0% at-spi-bus-lau 
29378   136K 114.5M  5380K     ?K 114.5M  5380K     0K   0% bash           
 8421   136K 114.4M  5364K     ?K 114.4M  5364K     0K   0% bash           
16680   136K 114.3M  5332K     ?K 114.3M  5332K     0K   0% bash           
32673   136K 206.9M  5328K     ?K 206.9M  5328K     0K   0% httpd          
32675   136K 206.9M  5328K     ?K 206.9M  5328K     0K   0% httpd          
 4507   136K 114.4M  5288K     ?K 114.4M  5288K     0K   0% bash           
21038   136K 114.2M  5240K     ?K 114.2M  5240K     0K   0% bash           
32674   136K 206.9M  5200K     ?K 206.9M  5200K     0K   0% httpd          
32676   136K 206.9M  5200K     ?K 206.9M  5200K     0K   0% httpd          
 7910   136K 114.2M  4948K     ?K 114.2M  4948K     0K   0% bash           
  341   136K 46508K  4836K     ?K 46508K  4836K  1584K   0% systemd-udevd  
22779   136K 146.2M  4796K     ?K 146.2M  4796K     0K   0% gconfd-2       
 6381   136K 176.5M  4728K     ?K 176.5M  4728K     0K   0% dconf-service  
16582   136K 128.5M  4568K     ?K 128.5M  4568K     0K   0% sshd           
30636   136K 64288K  4488K     ?K 64288K  4488K     0K   0% pmdaperfevent  
 1246   152K 328.8M  4472K     ?K 328.8M  4472K     0K   0% postgres       
  333   136K 104.4M  4372K     ?K 104.4M  4372K     4K   0% lvmetad        
30579   136K 53324K  4324K     ?K 53324K  4324K     0K   0% pmdaproc       
16677   136K 128.5M  4276K     ?K 128.5M  4276K     0K   0% sshd           
 7524   136K 44564K  4240K     ?K 44564K  4240K     0K   0% systemd        
 8026   136K 44564K  4232K     ?K 44564K  4232K     0K   0% systemd        
 5628   136K 44556K  4204K     ?K 44556K  4204K     0K   0% systemd        
 6014   136K 44560K  4192K     ?K 44560K  4192K     0K   0% systemd        
30575   136K 131.8M  4144K     ?K 131.8M  4144K     0K   0% pmcd           
  542   136K 41992K  4124K     ?K 41992K  4124K     0K   0% dbus-daemon    
29375   136K 128.3M  4068K     ?K 128.3M  4068K     0K   0% sshd           
  552   136K 30228K  3880K     ?K 30228K  3880K     0K   0% bluetoothd     
  534   136K 26564K  3812K     ?K 26564K  3812K     0K   0% smartd         
  662   136K 50476K  3800K     ?K 50476K  3800K     0K   0% pmlogger       
30609   136K 52536K  3732K     ?K 52536K  3732K     0K   0% pmdaapache     
30593   136K 50652K  3728K     ?K 50652K  3728K     0K   0% pmdalinux      
30642   136K 52528K  3656K     ?K 52528K  3656K     0K   0% pmdasimple     
30584   136K 52588K  3644K     ?K 52588K  3644K     0K   0% pmdasample     
30581   136K 123.3M  3596K     ?K 123.3M  3596K     0K   0% pmdashping     
30611   136K 52528K  3588K     ?K 52528K  3588K     0K   0% pmdamounts     
30578   136K 50456K  3424K     ?K 50456K  3424K     0K   0% pmdaroot       
 6075   136K 41808K  3416K     ?K 41808K  3416K     0K   0% dbus-daemon    
30580   136K 50456K  3408K     ?K 50456K  3408K     0K   0% pmdaxfs        
 1249   152K 188.0M  3200K     ?K 188.0M  3200K     0K   0% postgres       
  548   528K 123.4M  3188K     ?K 123.4M  3188K     0K   0% crond          
 6241   136K 41048K  3172K     ?K 41048K  3172K     0K   0% dbus-daemon    
  492   136K 100.3M  3156K     ?K 100.3M  3156K     0K   0% chronyd        
 1245   152K 328.8M  3140K     ?K 328.8M  3140K     0K   0% postgres       
 1247   152K 328.8M  3140K     ?K 328.8M  3140K     0K   0% postgres       
 1236   152K 187.9M  3064K     ?K 187.9M  3064K     0K   0% postgres       
  309   136K 110.6M  3056K     ?K 110.6M  3056K     0K   0% mk.atop.sh     
  388   136K 51192K  3032K     ?K 51192K  3032K    12K   0% auditd         
  539   136K 34700K  3032K     ?K 34700K  3032K     0K   0% systemd-logind 
  983   136K 44492K  3012K     ?K 44492K  3012K     0K   0% rpc.statd      
 5801   136K 165.5M  3000K     ?K 165.5M  3000K     0K   0% pcscd          
 8033   136K 74424K  2872K     ?K 74424K  2872K   200K   0% (sd-pam)       
 7529   136K 74424K  2868K     ?K 74424K  2868K   200K   0% (sd-pam)       
  538   136K 28080K  2848K     ?K 28080K  2848K     0K   0% avahi-daemon   
 6020   136K 74424K  2836K     ?K 74424K  2836K   208K   0% (sd-pam)       
 5631   136K 74424K  2820K     ?K 74424K  2820K   208K   0% (sd-pam)       
 6685   136K 23372K  2812K     ?K 23372K  2812K     0K   0% obexd          
  530   136K 19140K  2672K     ?K 19140K  2672K     0K   0% irqbalance     
  482   136K 16776K  2608K     ?K 16776K  2608K     0K   0% alsactl        
  959   136K 307.4M  2460K     ?K 307.4M  2460K     0K   0% memcached      
  520   136K 44068K  2292K     ?K 44068K  2292K     0K   0% rpcbind        
  549   136K 25944K  2264K     ?K 25944K  2264K     0K   0% atd            
  489   136K 160.8M  2200K     ?K 160.8M  2200K     0K   0% rtkit-daemon   
  471   136K 26212K  2160K     ?K 26212K  2160K     0K   0% sedispatch     
28162   136K 11544K  1932K     ?K 11544K  1932K     0K   0% cscope         
 6074   136K 13936K  1872K     ?K 13936K  1872K     0K   0% dbus-launch    
  955   136K  7000K  1800K     ?K  7000K  1800K     0K   0% mcelog         
21740   136K  8448K  1532K     ?K  8448K  1532K     0K   0% gnome-pty-help 
  468   136K 80216K  1468K     ?K 80216K  1468K     0K   0% audispd        
  519   136K  4364K  1332K     ?K  4364K  1332K     0K   0% rngd           
  672   136K 27952K   232K     ?K 27952K   232K     0K   0% avahi-daemon   
    2     0K     0K     0K     ?K     0K     0K     0K   0% kthreadd       
    3     0K     0K     0K     ?K     0K     0K     0K   0% ksoftirqd/0    
    5     0K     0K     0K     ?K     0K     0K     0K   0% kworker/0:0H   
    7     0K     0K     0K     ?K     0K     0K     0K   0% rcu_sched      
    8     0K     0K     0K     ?K     0K     0K     0K   0% rcu_bh         
    9     0K     0K     0K     ?K     0K     0K     0K   0% rcuos/0        
   10     0K     0K     0K     ?K     0K     0K     0K   0% rcuob/0        
   11     0K     0K     0K     ?K     0K     0K     0K   0% migration/0    
   12     0K     0K     0K     ?K     0K     0K     0K   0% watchdog/0     
   13     0K     0K     0K     ?K     0K     0K     0K   0% watchdog/1     
   14     0K     0K     0K     ?K     0K     0K     0K   0% migration/1    
   15     0K     0K     0K     ?K     0K     0K     0K   0% ksoftirqd/1    
   17     0K     0K     0K     ?K     0K     0K     0K   0% kworker/1:0H   
   18     0K     0K     0K     ?K     0K     0K     0K   0% rcuos/1        
   19     0K     0K     0K     ?K     0K     0K     0K   0% rcuob/1        
   20     0K     0K     0K     ?K     0K     0K     0K   0% watchdog/2     
   21     0K     0K     0K     ?K     0K     0K     0K   0% migration/2    
   22     0K     0K     0K     ?K     0K     0K     0K   0% ksoftirqd/2    
   24     0K     0K     0K     ?K     0K     0K     0K   0% kworker/2:0H   
   25     0K     0K     0K     ?K     0K     0K     0K   0% rcuos/2        
   26     0K     0K     0K     ?K     0K     0K     0K   0% rcuob/2        
   27     0K     0K     0K     ?K     0K     0K     0K   0% watchdog/3     
   28     0K     0K     0K     ?K     0K     0K     0K   0% migration/3    
   29     0K     0K     0K     ?K     0K     0K     0K   0% ksoftirqd/3    
   31     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:0H   
   32     0K     0K     0K     ?K     0K     0K     0K   0% rcuos/3        
   33     0K     0K     0K     ?K     0K     0K     0K   0% rcuob/3        
   34     0K     0K     0K     ?K     0K     0K     0K   0% khelper        
   35     0K     0K     0K     ?K     0K     0K     0K   0% kdevtmpfs      
   36     0K     0K     0K     ?K     0K     0K     0K   0% netns          
   37     0K     0K     0K     ?K     0K     0K     0K   0% perf           
   38     0K     0K     0K     ?K     0K     0K     0K   0% writeback      
   39     0K     0K     0K     ?K     0K     0K     0K   0% ksmd           
   40     0K     0K     0K     ?K     0K     0K     0K   0% khugepaged     
   41     0K     0K     0K     ?K     0K     0K     0K   0% crypto         
   42     0K     0K     0K     ?K     0K     0K     0K   0% kintegrityd    
   43     0K     0K     0K     ?K     0K     0K     0K   0% bioset         
   44     0K     0K     0K     ?K     0K     0K     0K   0% kblockd        
   45     0K     0K     0K     ?K     0K     0K     0K   0% ata_sff        
   46     0K     0K     0K     ?K     0K     0K     0K   0% md             
   47     0K     0K     0K     ?K     0K     0K     0K   0% devfreq_wq     
   73     0K     0K     0K     ?K     0K     0K     0K   0% kswapd0        
   74     0K     0K     0K     ?K     0K     0K     0K   0% fsnotify_mark  
   84     0K     0K     0K     ?K     0K     0K     0K   0% kthrotld       
   85     0K     0K     0K     ?K     0K     0K     0K   0% acpi_thermal_p 
   86     0K     0K     0K     ?K     0K     0K     0K   0% scsi_eh_0      
   87     0K     0K     0K     ?K     0K     0K     0K   0% scsi_tmf_0     
   88     0K     0K     0K     ?K     0K     0K     0K   0% scsi_eh_1      
   89     0K     0K     0K     ?K     0K     0K     0K   0% scsi_tmf_1     
   92     0K     0K     0K     ?K     0K     0K     0K   0% kpsmoused      
   94     0K     0K     0K     ?K     0K     0K     0K   0% dm_bufio_cache 
   95     0K     0K     0K     ?K     0K     0K     0K   0% ipv6_addrconf  
   97     0K     0K     0K     ?K     0K     0K     0K   0% deferwq        
  127     0K     0K     0K     ?K     0K     0K     0K   0% kauditd        
  215     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:1H   
  216     0K     0K     0K     ?K     0K     0K     0K   0% kworker/0:1H   
  222     0K     0K     0K     ?K     0K     0K     0K   0% kworker/1:1H   
  235     0K     0K     0K     ?K     0K     0K     0K   0% jbd2/sda7-8    
  236     0K     0K     0K     ?K     0K     0K     0K   0% ext4-rsv-conve 
  237     0K     0K     0K     ?K     0K     0K     0K   0% kworker/2:1H   
  401     0K     0K     0K     ?K     0K     0K     0K   0% irq/46-mei_me  
  437     0K     0K     0K     ?K     0K     0K     0K   0% hd-audio0      
  438     0K     0K     0K     ?K     0K     0K     0K   0% hd-audio1      
  444     0K     0K     0K     ?K     0K     0K     0K   0% kmemstick      
  462     0K     0K     0K     ?K     0K     0K     0K   0% rtsx_usb_ms_1  
  474     0K     0K     0K     ?K     0K     0K     0K   0% cfg80211       
  476     0K     0K     0K     ?K     0K     0K     0K   0% rpciod         
  499     0K     0K     0K     ?K     0K     0K     0K   0% kvm-irqfd-clea 
  510     0K     0K     0K     ?K     0K     0K     0K   0% kworker/u17:0  
  511     0K     0K     0K     ?K     0K     0K     0K   0% hci0           
  512     0K     0K     0K     ?K     0K     0K     0K   0% hci0           
  513     0K     0K     0K     ?K     0K     0K     0K   0% kworker/u17:1  
  677     0K     0K     0K     ?K     0K     0K     0K   0%                
 1162     0K     0K     0K     ?K     0K     0K     0K   0% loop0          
 1163     0K     0K     0K     ?K     0K     0K     0K   0% loop1          
 1164     0K     0K     0K     ?K     0K     0K     0K   0% kdmflush       
 1175     0K     0K     0K     ?K     0K     0K     0K   0% bioset         
 1194     0K     0K     0K     ?K     0K     0K     0K   0% kcopyd         
 1195     0K     0K     0K     ?K     0K     0K     0K   0% bioset         
 1196     0K     0K     0K     ?K     0K     0K     0K   0% dm-thin        
 1197     0K     0K     0K     ?K     0K     0K     0K   0% bioset         
 6290     0K     0K     0K     ?K     0K     0K     0K   0% krfcommd       
12870     0K     0K     0K     ?K     0K     0K     0K   0% kworker/u16:2  
19036     0K     0K     0K     ?K     0K     0K     0K   0% kworker/0:2    
22844     0K     0K     0K     ?K     0K     0K     0K   0% kworker/u16:1  
24248     0K     0K     0K     ?K     0K     0K     0K   0% kworker/1:0    
26115     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:2    
29143     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:1    
30101     0K     0K     0K     ?K     0K     0K     0K   0% kworker/2:1    
30245     0K     0K     0K     ?K     0K     0K     0K   0% kworker/1:1    
30263     0K     0K     0K     ?K     0K     0K     0K   0% kworker/0:3    
30730     0K     0K     0K     ?K     0K     0K     0K   0% nfsiod         
30736     0K     0K     0K     ?K     0K     0K     0K   0% nfsv4.0-svc    
31667     0K     0K     0K     ?K     0K     0K     0K   0% kworker/2:3    
32428     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:0    
32429     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:3    
  670     0K     0K     0K     ?K     0K     0K     0K   0%                


ATOP - slick        2015/09/25  11:03:21        --------------        1s elapsed
PRC | sys    0.04s | user   0.02s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       5% | user      5% | irq       0% | idle    382% | wait      8% |
cpu | sys       2% | user      2% | irq       0% | idle     96% | cpu000 w  0% |
cpu | sys       1% | user      2% | irq       0% | idle     97% | cpu003 w  0% |
cpu | sys       1% | user      1% | irq       0% | idle     90% | cpu001 w  8% |
cpu | sys       1% | user      1% | irq       0% | idle     98% | cpu002 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw     1622 | intr     305 |
MEM | tot     3.8G | free  195.8M | cache   1.5G | buff  275.4M | slab  358.1M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.1G | vmlim  15.2G |
DSK |          sda | busy      8% | read       5 | write      0 | avio 16.2 ms |
NET | transport    | tcpi       5 | tcpo       5 | udpi       0 | udpo       0 |
NET | network      | ipi        5 | ipo        4 | ipfrw      0 | deliv      4 |
NET | p2p1      0% | pcki       8 | pcko       5 | si    8 Kbps | so    2 Kbps |
NET | lo      ---- | pcki       2 | pcko       2 | si    1 Kbps | so    1 Kbps |

  PID VSTACK  VSIZE  RSIZE  PSIZE  VGROW  RGROW SWAPSZ  MEM CMD            
 7014   376K   1.8G 546.0M     ?K     0K     0K     0K  14% firefox        
 6354   156K   2.1G 388.3M     ?K     0K     0K     0K  10% gnome-shell    
  556   136K   3.5G 185.6M     ?K     0K     0K     0K   5% java           
 6531   136K   1.3G 74108K     ?K     0K     0K     0K   2% evolution-cale 
  313   136K 136.7M 44052K     ?K     0K     0K    80K   1% systemd-journa 
 6971   208K 529.5M 42968K     ?K     0K     0K     0K   1% xchat          
 6265   136K   1.3G 37712K     ?K     0K     0K     0K   1% gnome-settings 
 6317   136K 954.1M 36924K     ?K     0K     0K     0K   1% goa-daemon     
21737   136K 632.2M 32040K     ?K     0K     0K     0K   1% gnome-terminal 
 6483   136K 859.0M 32004K     ?K     0K     0K     0K   1% evolution-alar 
  877   136K 187.0M 28928K     ?K     0K     0K     0K   1% Xorg           
  483   136K 322.0M 27648K     ?K     0K     0K     0K   1% firewalld      
 6414   136K   1.3G 27352K     ?K     0K     0K     0K   1% evolution-sour 
 6398   136K 759.6M 25700K     ?K     0K     0K     0K   1% gnome-shell-ca 
  956   136K 495.6M 25180K     ?K     0K     0K     0K   1% libvirtd       
 6706   136K 683.5M 25080K     ?K     0K     0K     0K   1% vino-server    
 1430   136K 510.9M 23448K     ?K     0K     0K     0K   1% polkitd        
 6682   136K 447.6M 22784K     ?K     0K     0K     0K   1% abrt-applet    
 6596   136K 361.5M 20636K     ?K     0K     0K     0K   1% applet.py      
 6656   136K 495.9M 19836K     ?K     0K     0K     0K   1% tracker-store  
 1193   136K  99.8M 19160K     ?K     0K     0K     0K   0% dhclient       
 1013   152K 328.8M 18436K     ?K     0K     0K     0K   0% postgres       
  957   136K 482.6M 17104K     ?K     0K     0K     0K   0% docker         
 6630   136K 288.0M 16540K     ?K     0K     0K     0K   0% seapplet       
30638   136K 221.6M 15660K     ?K     0K     0K     0K   0% python3        
 6420   136K 427.6M 15116K     ?K     0K     0K     0K   0% ibus-x11       
30632   136K 218.8M 14576K     ?K     0K     0K     0K   0% python3        
 6592   136K 670.6M 14176K     ?K     0K     0K     0K   0% tracker-miner- 
30630   136K 157.8M 13796K     ?K     0K     0K     0K   0% pmdarpm        
  643   136K 433.2M 13696K     ?K     0K     0K     0K   0% NetworkManager 
  495   136K   1.3G 13372K     ?K     0K     0K     0K   0% rsyslogd       
30615   136K 177.4M 13240K     ?K     0K     0K     0K   0% perl           
 6066   136K 562.5M 12108K     ?K     0K     0K     0K   0% gnome-session  
 6323   136K 305.8M 11984K     ?K     0K     0K     0K   0% mission-contro 
 5797   136K 388.6M 11964K     ?K     0K     0K     0K   0% colord         
 1352   136K 245.2M 11944K     ?K     0K     0K     0K   0% pmwebd         
 5756   136K 433.8M 11904K     ?K     0K     0K     0K   0% upowerd        
30603   136K 171.5M 11164K     ?K     0K     0K     0K   0% perl           
 6258   136K 555.6M 10844K     ?K     0K     0K     0K   0% pulseaudio     
 6007   136K 360.9M 10740K     ?K     0K     0K     0K   0% gdm-session-wo 
30628   136K 170.9M 10648K     ?K     0K     0K     0K   0% perl           
30627   136K 170.6M 10472K     ?K     0K     0K     0K   0% perl           
 6308   136K 430.3M 10232K     ?K     0K     0K     0K   0% gvfs-afc-volum 
 6378   136K 501.9M  9716K     ?K     0K     0K     0K   0% gsd-printer    
 6297   136K 539.9M  9468K     ?K     0K     0K     0K   0% gvfs-udisks2-v 
 6410   136K 460.1M  9012K     ?K     0K     0K     0K   0% ibus-daemon    
 6687   136K 294.9M  8948K     ?K     0K     0K     0K   0% telepathy-logg 
  500   136K 207.1M  8656K     ?K     0K     0K     0K   0% abrtd          
28161   136K 148.5M  7980K     ?K     0K     0K     0K   0% vim            
    1   136K 193.8M  7800K     ?K     0K     0K   144K   0% systemd        
30594   136K 162.2M  7780K     ?K     0K     0K     0K   0% perl           
 6688   136K 476.2M  7712K     ?K     0K     0K     0K   0% deja-dup-monit 
 6035   136K 908.7M  7672K     ?K     0K     0K     0K   0% gnome-keyring- 
 6371   136K 184.6M  7652K     ?K     0K     0K     0K   0% cupsd          
 6299   136K 418.3M  7580K     ?K     0K     0K     0K   0% udisksd        
  509   136K 204.7M  7456K     ?K     0K     0K     0K   0% abrt-watch-log 
  531   136K 204.7M  7388K     ?K     0K     0K     0K   0% abrt-watch-log 
16672   136K 128.3M  7304K     ?K     0K     0K     0K   0% sshd           
16569   136K 128.3M  7280K     ?K     0K     0K     0K   0% sshd           
 8209   136K 79704K  7268K     ?K     0K     0K     0K   0% vpnc           
29334   136K 128.3M  7180K     ?K     0K     0K     0K   0% sshd           
32671   136K 206.7M  7116K     ?K     0K     0K     0K   0% httpd          
 6469   136K 312.5M  7080K     ?K     0K     0K     0K   0% ibus-engine-si 
  496   136K 318.9M  7048K     ?K     0K     0K     0K   0% ModemManager   
 6418   136K 384.4M  7028K     ?K     0K     0K     0K   0% ibus-dconf     
 6327   136K 310.3M  6964K     ?K     0K     0K     0K   0% gvfs-mtp-volum 
28356   136K 543.4M  6948K     ?K     0K     0K     0K   0% gvfsd-mtp      
  647   136K 373.8M  6928K     ?K     0K     0K     0K   0% gdm-simple-sla 
  486   136K 361.0M  6924K     ?K     0K     0K     0K   0% accounts-daemo 
21036   136K 216.5M  6792K     ?K     0K     0K     0K   0% sudo           
 6525   136K 234.2M  6680K     ?K     0K     0K     0K   0% gvfsd-metadata 
 6340   136K 316.9M  6592K     ?K     0K     0K     0K   0% gvfs-gphoto2-v 
 6140   136K 306.6M  6448K     ?K     0K     0K     0K   0% gvfsd          
 6314   136K 302.1M  6332K     ?K     0K     0K     0K   0% gvfs-goa-volum 
 6160   136K 353.5M  6248K     ?K     0K     0K     0K   0% gvfsd-fuse     
 6245   136K 126.6M  6120K     ?K     0K     0K     0K   0% at-spi2-regist 
 6693   136K 378.6M  6104K     ?K     0K     0K     0K   0% gvfsd-burn     
 7984   136K 80508K  6024K     ?K     0K     0K     0K   0% ssh            
  972   136K 82832K  5960K     ?K     0K     0K     0K   0% sshd           
 1248   152K 329.6M  5904K     ?K     0K     0K     0K   0% postgres       
 8201   136K 244.9M  5884K     ?K     0K     0K     0K   0% nm-vpnc-servic 
32672   136K 206.9M  5768K     ?K     0K     0K     0K   0% httpd          
  551   136K 292.1M  5744K     ?K     0K     0K     0K   0% gdm            
32676   136K 206.9M  5736K     ?K     0K   536K     0K   0% httpd          
21037   292K 195.7M  5616K     ?K     0K     0K     0K   0% su             
21741   136K 114.5M  5464K     ?K     0K     0K     0K   0% bash           
16591   136K 114.4M  5428K     ?K     0K     0K     0K   0% bash           
 6237   136K 332.0M  5412K     ?K     0K     0K     0K   0% at-spi-bus-lau 
29378   136K 114.5M  5380K     ?K     0K     0K     0K   0% bash           
 8421   136K 114.4M  5364K     ?K     0K     0K     0K   0% bash           
16680   136K 114.3M  5332K     ?K     0K     0K     0K   0% bash           
32673   136K 206.9M  5328K     ?K     0K     0K     0K   0% httpd          
32675   136K 206.9M  5328K     ?K     0K     0K     0K   0% httpd          
 4507   136K 114.4M  5288K     ?K     0K     0K     0K   0% bash           
21038   136K 114.2M  5240K     ?K     0K     0K     0K   0% bash           
32674   136K 206.9M  5200K     ?K     0K     0K     0K   0% httpd          
 7910   136K 114.2M  4948K     ?K     0K     0K     0K   0% bash           
  341   136K 46508K  4836K     ?K     0K     0K  1584K   0% systemd-udevd  
22779   136K 146.2M  4796K     ?K     0K     0K     0K   0% gconfd-2       
 6381   136K 176.5M  4728K     ?K     0K     0K     0K   0% dconf-service  
30579   136K 53416K  4624K     ?K    92K   300K     0K   0% pmdaproc       
16582   136K 128.5M  4568K     ?K     0K     0K     0K   0% sshd           
30636   136K 64288K  4488K     ?K     0K     0K     0K   0% pmdaperfevent  
 1246   152K 328.8M  4472K     ?K     0K     0K     0K   0% postgres       
  333   136K 104.4M  4372K     ?K     0K     0K     4K   0% lvmetad        
16677   136K 128.5M  4276K     ?K     0K     0K     0K   0% sshd           
30575   136K 132.1M  4272K     ?K   232K   128K     0K   0% pmcd           
 7524   136K 44564K  4240K     ?K     0K     0K     0K   0% systemd        
 8026   136K 44564K  4232K     ?K     0K     0K     0K   0% systemd        
 5628   136K 44556K  4204K     ?K     0K     0K     0K   0% systemd        
 6014   136K 44560K  4192K     ?K     0K     0K     0K   0% systemd        
  662   136K 51116K  4176K     ?K   640K   376K     0K   0% pmlogger       
  542   136K 41992K  4124K     ?K     0K     0K     0K   0% dbus-daemon    
29375   136K 128.3M  4068K     ?K     0K     0K     0K   0% sshd           
  552   136K 30228K  3880K     ?K     0K     0K     0K   0% bluetoothd     
  534   136K 26564K  3812K     ?K     0K     0K     0K   0% smartd         
30593   136K 50652K  3752K     ?K     0K    24K     0K   0% pmdalinux      
30609   136K 52536K  3732K     ?K     0K     0K     0K   0% pmdaapache     
30642   136K 52528K  3656K     ?K     0K     0K     0K   0% pmdasimple     
30584   136K 52588K  3644K     ?K     0K     0K     0K   0% pmdasample     
30581   136K 123.3M  3596K     ?K     0K     0K     0K   0% pmdashping     
30611   136K 52528K  3588K     ?K     0K     0K     0K   0% pmdamounts     
30578   136K 50456K  3424K     ?K     0K     0K     0K   0% pmdaroot       
 6075   136K 41808K  3416K     ?K     0K     0K     0K   0% dbus-daemon    
30580   136K 50456K  3408K     ?K     0K     0K     0K   0% pmdaxfs        
 1249   152K 188.0M  3200K     ?K     0K     0K     0K   0% postgres       
  548   528K 123.4M  3188K     ?K     0K     0K     0K   0% crond          
 6241   136K 41048K  3172K     ?K     0K     0K     0K   0% dbus-daemon    
  492   136K 100.3M  3156K     ?K     0K     0K     0K   0% chronyd        
 1245   152K 328.8M  3140K     ?K     0K     0K     0K   0% postgres       
 1247   152K 328.8M  3140K     ?K     0K     0K     0K   0% postgres       
 1236   152K 187.9M  3064K     ?K     0K     0K     0K   0% postgres       
  309   136K 110.6M  3056K     ?K     0K     0K     0K   0% mk.atop.sh     
  388   136K 51192K  3032K     ?K     0K     0K    12K   0% auditd         
  539   136K 34700K  3032K     ?K     0K     0K     0K   0% systemd-logind 
  983   136K 44492K  3012K     ?K     0K     0K     0K   0% rpc.statd      
 5801   136K 165.5M  3000K     ?K     0K     0K     0K   0% pcscd          
 8033   136K 74424K  2872K     ?K     0K     0K   200K   0% (sd-pam)       
 7529   136K 74424K  2868K     ?K     0K     0K   200K   0% (sd-pam)       
  538   136K 28080K  2848K     ?K     0K     0K     0K   0% avahi-daemon   
 6020   136K 74424K  2836K     ?K     0K     0K   208K   0% (sd-pam)       
 5631   136K 74424K  2820K     ?K     0K     0K   208K   0% (sd-pam)       
 6685   136K 23372K  2812K     ?K     0K     0K     0K   0% obexd          
  530   136K 19140K  2672K     ?K     0K     0K     0K   0% irqbalance     
  482   136K 16776K  2608K     ?K     0K     0K     0K   0% alsactl        
  959   136K 307.4M  2460K     ?K     0K     0K     0K   0% memcached      
  520   136K 44068K  2292K     ?K     0K     0K     0K   0% rpcbind        
  549   136K 25944K  2264K     ?K     0K     0K     0K   0% atd            
  677   136K 48148K  2212K     ?K 48148K  2212K     0K   0% pmsleep        
  489   136K 160.8M  2200K     ?K     0K     0K     0K   0% rtkit-daemon   
  471   136K 26212K  2160K     ?K     0K     0K     0K   0% sedispatch     
28162   136K 11544K  1932K     ?K     0K     0K     0K   0% cscope         
 6074   136K 13936K  1872K     ?K     0K     0K     0K   0% dbus-launch    
  955   136K  7000K  1800K     ?K     0K     0K     0K   0% mcelog         
21740   136K  8448K  1532K     ?K     0K     0K     0K   0% gnome-pty-help 
  468   136K 80216K  1468K     ?K     0K     0K     0K   0% audispd        
  519   136K  4364K  1332K     ?K     0K     0K     0K   0% rngd           
  672   136K 27952K   232K     ?K     0K     0K     0K   0% avahi-daemon   
    2     0K     0K     0K     ?K     0K     0K     0K   0% kthreadd       
    3     0K     0K     0K     ?K     0K     0K     0K   0% ksoftirqd/0    
    5     0K     0K     0K     ?K     0K     0K     0K   0% kworker/0:0H   
    7     0K     0K     0K     ?K     0K     0K     0K   0% rcu_sched      
    8     0K     0K     0K     ?K     0K     0K     0K   0% rcu_bh         
    9     0K     0K     0K     ?K     0K     0K     0K   0% rcuos/0        
   10     0K     0K     0K     ?K     0K     0K     0K   0% rcuob/0        
   11     0K     0K     0K     ?K     0K     0K     0K   0% migration/0    
   12     0K     0K     0K     ?K     0K     0K     0K   0% watchdog/0     
   13     0K     0K     0K     ?K     0K     0K     0K   0% watchdog/1     
   14     0K     0K     0K     ?K     0K     0K     0K   0% migration/1    
   15     0K     0K     0K     ?K     0K     0K     0K   0% ksoftirqd/1    
   17     0K     0K     0K     ?K     0K     0K     0K   0% kworker/1:0H   
   18     0K     0K     0K     ?K     0K     0K     0K   0% rcuos/1        
   19     0K     0K     0K     ?K     0K     0K     0K   0% rcuob/1        
   20     0K     0K     0K     ?K     0K     0K     0K   0% watchdog/2     
   21     0K     0K     0K     ?K     0K     0K     0K   0% migration/2    
   22     0K     0K     0K     ?K     0K     0K     0K   0% ksoftirqd/2    
   24     0K     0K     0K     ?K     0K     0K     0K   0% kworker/2:0H   
   25     0K     0K     0K     ?K     0K     0K     0K   0% rcuos/2        
   26     0K     0K     0K     ?K     0K     0K     0K   0% rcuob/2        
   27     0K     0K     0K     ?K     0K     0K     0K   0% watchdog/3     
   28     0K     0K     0K     ?K     0K     0K     0K   0% migration/3    
   29     0K     0K     0K     ?K     0K     0K     0K   0% ksoftirqd/3    
   31     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:0H   
   32     0K     0K     0K     ?K     0K     0K     0K   0% rcuos/3        
   33     0K     0K     0K     ?K     0K     0K     0K   0% rcuob/3        
   34     0K     0K     0K     ?K     0K     0K     0K   0% khelper        
   35     0K     0K     0K     ?K     0K     0K     0K   0% kdevtmpfs      
   36     0K     0K     0K     ?K     0K     0K     0K   0% netns          
   37     0K     0K     0K     ?K     0K     0K     0K   0% perf           
   38     0K     0K     0K     ?K     0K     0K     0K   0% writeback      
   39     0K     0K     0K     ?K     0K     0K     0K   0% ksmd           
   40     0K     0K     0K     ?K     0K     0K     0K   0% khugepaged     
   41     0K     0K     0K     ?K     0K     0K     0K   0% crypto         
   42     0K     0K     0K     ?K     0K     0K     0K   0% kintegrityd    
   43     0K     0K     0K     ?K     0K     0K     0K   0% bioset         
   44     0K     0K     0K     ?K     0K     0K     0K   0% kblockd        
   45     0K     0K     0K     ?K     0K     0K     0K   0% ata_sff        
   46     0K     0K     0K     ?K     0K     0K     0K   0% md             
   47     0K     0K     0K     ?K     0K     0K     0K   0% devfreq_wq     
   73     0K     0K     0K     ?K     0K     0K     0K   0% kswapd0        
   74     0K     0K     0K     ?K     0K     0K     0K   0% fsnotify_mark  
   84     0K     0K     0K     ?K     0K     0K     0K   0% kthrotld       
   85     0K     0K     0K     ?K     0K     0K     0K   0% acpi_thermal_p 
   86     0K     0K     0K     ?K     0K     0K     0K   0% scsi_eh_0      
   87     0K     0K     0K     ?K     0K     0K     0K   0% scsi_tmf_0     
   88     0K     0K     0K     ?K     0K     0K     0K   0% scsi_eh_1      
   89     0K     0K     0K     ?K     0K     0K     0K   0% scsi_tmf_1     
   92     0K     0K     0K     ?K     0K     0K     0K   0% kpsmoused      
   94     0K     0K     0K     ?K     0K     0K     0K   0% dm_bufio_cache 
   95     0K     0K     0K     ?K     0K     0K     0K   0% ipv6_addrconf  
   97     0K     0K     0K     ?K     0K     0K     0K   0% deferwq        
  127     0K     0K     0K     ?K     0K     0K     0K   0% kauditd        
  215     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:1H   
  216     0K     0K     0K     ?K     0K     0K     0K   0% kworker/0:1H   
  222     0K     0K     0K     ?K     0K     0K     0K   0% kworker/1:1H   
  235     0K     0K     0K     ?K     0K     0K     0K   0% jbd2/sda7-8    
  236     0K     0K     0K     ?K     0K     0K     0K   0% ext4-rsv-conve 
  237     0K     0K     0K     ?K     0K     0K     0K   0% kworker/2:1H   
  401     0K     0K     0K     ?K     0K     0K     0K   0% irq/46-mei_me  
  437     0K     0K     0K     ?K     0K     0K     0K   0% hd-audio0      
  438     0K     0K     0K     ?K     0K     0K     0K   0% hd-audio1      
  444     0K     0K     0K     ?K     0K     0K     0K   0% kmemstick      
  462     0K     0K     0K     ?K     0K     0K     0K   0% rtsx_usb_ms_1  
  474     0K     0K     0K     ?K     0K     0K     0K   0% cfg80211       
  476     0K     0K     0K     ?K     0K     0K     0K   0% rpciod         
  499     0K     0K     0K     ?K     0K     0K     0K   0% kvm-irqfd-clea 
  510     0K     0K     0K     ?K     0K     0K     0K   0% kworker/u17:0  
  511     0K     0K     0K     ?K     0K     0K     0K   0% hci0           
  512     0K     0K     0K     ?K     0K     0K     0K   0% hci0           
  513     0K     0K     0K     ?K     0K     0K     0K   0% kworker/u17:1  
 1162     0K     0K     0K     ?K     0K     0K     0K   0% loop0          
 1163     0K     0K     0K     ?K     0K     0K     0K   0% loop1          
 1164     0K     0K     0K     ?K     0K     0K     0K   0% kdmflush       
 1175     0K     0K     0K     ?K     0K     0K     0K   0% bioset         
 1194     0K     0K     0K     ?K     0K     0K     0K   0% kcopyd         
 1195     0K     0K     0K     ?K     0K     0K     0K   0% bioset         
 1196     0K     0K     0K     ?K     0K     0K     0K   0% dm-thin        
 1197     0K     0K     0K     ?K     0K     0K     0K   0% bioset         
 6290     0K     0K     0K     ?K     0K     0K     0K   0% krfcommd       
12870     0K     0K     0K     ?K     0K     0K     0K   0% kworker/u16:2  
19036     0K     0K     0K     ?K     0K     0K     0K   0% kworker/0:2    
22844     0K     0K     0K     ?K     0K     0K     0K   0% kworker/u16:1  
24248     0K     0K     0K     ?K     0K     0K     0K   0% kworker/1:0    
26115     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:2    
29143     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:1    
30101     0K     0K     0K     ?K     0K     0K     0K   0% kworker/2:1    
30245     0K     0K     0K     ?K     0K     0K     0K   0% kworker/1:1    
30263     0K     0K     0K     ?K     0K     0K     0K   0% kworker/0:3    
30730     0K     0K     0K     ?K     0K     0K     0K   0% nfsiod         
30736     0K     0K     0K     ?K     0K     0K     0K   0% nfsv4.0-svc    
31667     0K     0K     0K     ?K     0K     0K     0K   0% kworker/2:3    
32428     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:0    
32429     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:3    
  670     0K     0K     0K     ?K     0K     0K     0K   0%                


ATOP - slick        2015/09/25  11:03:22        --------------        1s elapsed
PRC | sys    0.01s | user   0.02s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       2% | user      2% | irq       0% | idle    395% | wait      1% |
cpu | sys       2% | user      2% | irq       0% | idle     96% | cpu000 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu003 w  0% |
cpu | sys       1% | user      0% | irq       0% | idle     99% | cpu001 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw      501 | intr     219 |
MEM | tot     3.8G | free  195.7M | cache   1.5G | buff  275.4M | slab  358.1M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.1G | vmlim  15.2G |
NET | transport    | tcpi       5 | tcpo       6 | udpi       0 | udpo       0 |
NET | p2p1      0% | pcki       3 | pcko       0 | si    1 Kbps | so    0 Kbps |
NET | lo      ---- | pcki       7 | pcko       7 | si    9 Kbps | so    9 Kbps |

  PID VSTACK  VSIZE  RSIZE  PSIZE  VGROW  RGROW SWAPSZ  MEM CMD            
 7014   376K   1.8G 546.0M     ?K     0K     0K     0K  14% firefox        
 6354   156K   2.1G 388.3M     ?K     0K     0K     0K  10% gnome-shell    
  556   136K   3.5G 185.6M     ?K     0K     0K     0K   5% java           
 6531   136K   1.3G 74108K     ?K     0K     0K     0K   2% evolution-cale 
  313   136K 136.7M 44052K     ?K     0K     0K    80K   1% systemd-journa 
 6971   208K 529.5M 42968K     ?K     0K     0K     0K   1% xchat          
 6265   136K   1.3G 37712K     ?K     0K     0K     0K   1% gnome-settings 
 6317   136K 954.1M 36924K     ?K     0K     0K     0K   1% goa-daemon     
21737   136K 632.2M 32040K     ?K     0K     0K     0K   1% gnome-terminal 
 6483   136K 859.0M 32004K     ?K     0K     0K     0K   1% evolution-alar 
  877   136K 187.0M 28928K     ?K     0K     0K     0K   1% Xorg           
  483   136K 322.0M 27648K     ?K     0K     0K     0K   1% firewalld      
 6414   136K   1.3G 27352K     ?K     0K     0K     0K   1% evolution-sour 
 6398   136K 759.6M 25700K     ?K     0K     0K     0K   1% gnome-shell-ca 
  956   136K 495.6M 25180K     ?K     0K     0K     0K   1% libvirtd       
 6706   136K 683.5M 25080K     ?K     0K     0K     0K   1% vino-server    
 1430   136K 510.9M 23448K     ?K     0K     0K     0K   1% polkitd        
 6682   136K 447.6M 22784K     ?K     0K     0K     0K   1% abrt-applet    
 6596   136K 361.5M 20636K     ?K     0K     0K     0K   1% applet.py      
 6656   136K 495.9M 19836K     ?K     0K     0K     0K   1% tracker-store  
 1193   136K  99.8M 19160K     ?K     0K     0K     0K   0% dhclient       
 1013   152K 328.8M 18436K     ?K     0K     0K     0K   0% postgres       
  957   136K 482.6M 17104K     ?K     0K     0K     0K   0% docker         
 6630   136K 288.0M 16540K     ?K     0K     0K     0K   0% seapplet       
30638   136K 221.6M 15660K     ?K     0K     0K     0K   0% python3        
 6420   136K 427.6M 15116K     ?K     0K     0K     0K   0% ibus-x11       
30632   136K 218.8M 14576K     ?K     0K     0K     0K   0% python3        
 6592   136K 670.6M 14176K     ?K     0K     0K     0K   0% tracker-miner- 
30630   136K 157.8M 13796K     ?K     0K     0K     0K   0% pmdarpm        
  643   136K 433.2M 13696K     ?K     0K     0K     0K   0% NetworkManager 
  495   136K   1.3G 13372K     ?K     0K     0K     0K   0% rsyslogd       
30615   136K 177.4M 13240K     ?K     0K     0K     0K   0% perl           
 6066   136K 562.5M 12108K     ?K     0K     0K     0K   0% gnome-session  
 6323   136K 305.8M 11984K     ?K     0K     0K     0K   0% mission-contro 
 5797   136K 388.6M 11964K     ?K     0K     0K     0K   0% colord         
 1352   136K 245.2M 11944K     ?K     0K     0K     0K   0% pmwebd         
 5756   136K 433.8M 11904K     ?K     0K     0K     0K   0% upowerd        
30603   136K 171.5M 11164K     ?K     0K     0K     0K   0% perl           
 6258   136K 555.6M 10844K     ?K     0K     0K     0K   0% pulseaudio     
 6007   136K 360.9M 10740K     ?K     0K     0K     0K   0% gdm-session-wo 
30628   136K 170.9M 10648K     ?K     0K     0K     0K   0% perl           
30627   136K 170.6M 10472K     ?K     0K     0K     0K   0% perl           
 6308   136K 430.3M 10232K     ?K     0K     0K     0K   0% gvfs-afc-volum 
 6378   136K 501.9M  9716K     ?K     0K     0K     0K   0% gsd-printer    
 6297   136K 539.9M  9468K     ?K     0K     0K     0K   0% gvfs-udisks2-v 
 6410   136K 460.1M  9012K     ?K     0K     0K     0K   0% ibus-daemon    
 6687   136K 294.9M  8948K     ?K     0K     0K     0K   0% telepathy-logg 
  500   136K 207.1M  8656K     ?K     0K     0K     0K   0% abrtd          
28161   136K 148.5M  7980K     ?K     0K     0K     0K   0% vim            
    1   136K 193.8M  7800K     ?K     0K     0K   144K   0% systemd        
30594   136K 162.2M  7780K     ?K     0K     0K     0K   0% perl           
 6688   136K 476.2M  7712K     ?K     0K     0K     0K   0% deja-dup-monit 
 6035   136K 908.7M  7672K     ?K     0K     0K     0K   0% gnome-keyring- 
 6371   136K 184.6M  7652K     ?K     0K     0K     0K   0% cupsd          
 6299   136K 418.3M  7580K     ?K     0K     0K     0K   0% udisksd        
  509   136K 204.7M  7456K     ?K     0K     0K     0K   0% abrt-watch-log 
  531   136K 204.7M  7388K     ?K     0K     0K     0K   0% abrt-watch-log 
16672   136K 128.3M  7304K     ?K     0K     0K     0K   0% sshd           
16569   136K 128.3M  7280K     ?K     0K     0K     0K   0% sshd           
 8209   136K 79704K  7268K     ?K     0K     0K     0K   0% vpnc           
29334   136K 128.3M  7180K     ?K     0K     0K     0K   0% sshd           
32671   136K 206.7M  7116K     ?K     0K     0K     0K   0% httpd          
 6469   136K 312.5M  7080K     ?K     0K     0K     0K   0% ibus-engine-si 
  496   136K 318.9M  7048K     ?K     0K     0K     0K   0% ModemManager   
 6418   136K 384.4M  7028K     ?K     0K     0K     0K   0% ibus-dconf     
 6327   136K 310.3M  6964K     ?K     0K     0K     0K   0% gvfs-mtp-volum 
28356   136K 543.4M  6948K     ?K     0K     0K     0K   0% gvfsd-mtp      
  647   136K 373.8M  6928K     ?K     0K     0K     0K   0% gdm-simple-sla 
  486   136K 361.0M  6924K     ?K     0K     0K     0K   0% accounts-daemo 
21036   136K 216.5M  6792K     ?K     0K     0K     0K   0% sudo           
 6525   136K 234.2M  6680K     ?K     0K     0K     0K   0% gvfsd-metadata 
 6340   136K 316.9M  6592K     ?K     0K     0K     0K   0% gvfs-gphoto2-v 
 6140   136K 306.6M  6448K     ?K     0K     0K     0K   0% gvfsd          
 6314   136K 302.1M  6332K     ?K     0K     0K     0K   0% gvfs-goa-volum 
 6160   136K 353.5M  6248K     ?K     0K     0K     0K   0% gvfsd-fuse     
 6245   136K 126.6M  6120K     ?K     0K     0K     0K   0% at-spi2-regist 
 6693   136K 378.6M  6104K     ?K     0K     0K     0K   0% gvfsd-burn     
 7984   136K 80508K  6024K     ?K     0K     0K     0K   0% ssh            
  972   136K 82832K  5960K     ?K     0K     0K     0K   0% sshd           
 1248   152K 329.6M  5904K     ?K     0K     0K     0K   0% postgres       
 8201   136K 244.9M  5884K     ?K     0K     0K     0K   0% nm-vpnc-servic 
32672   136K 206.9M  5768K     ?K     0K     0K     0K   0% httpd          
  551   136K 292.1M  5744K     ?K     0K     0K     0K   0% gdm            
32676   136K 206.9M  5736K     ?K     0K     0K     0K   0% httpd          
21037   292K 195.7M  5616K     ?K     0K     0K     0K   0% su             
21741   136K 114.5M  5464K     ?K     0K     0K     0K   0% bash           
16591   136K 114.4M  5428K     ?K     0K     0K     0K   0% bash           
 6237   136K 332.0M  5412K     ?K     0K     0K     0K   0% at-spi-bus-lau 
29378   136K 114.5M  5380K     ?K     0K     0K     0K   0% bash           
 8421   136K 114.4M  5364K     ?K     0K     0K     0K   0% bash           
16680   136K 114.3M  5332K     ?K     0K     0K     0K   0% bash           
32673   136K 206.9M  5328K     ?K     0K     0K     0K   0% httpd          
32675   136K 206.9M  5328K     ?K     0K     0K     0K   0% httpd          
 4507   136K 114.4M  5288K     ?K     0K     0K     0K   0% bash           
21038   136K 114.2M  5240K     ?K     0K     0K     0K   0% bash           
32674   136K 206.9M  5200K     ?K     0K     0K     0K   0% httpd          
 7910   136K 114.2M  4948K     ?K     0K     0K     0K   0% bash           
  341   136K 46508K  4836K     ?K     0K     0K  1584K   0% systemd-udevd  
22779   136K 146.2M  4796K     ?K     0K     0K     0K   0% gconfd-2       
 6381   136K 176.5M  4728K     ?K     0K     0K     0K   0% dconf-service  
30579   136K 53420K  4628K     ?K     4K     4K     0K   0% pmdaproc       
16582   136K 128.5M  4568K     ?K     0K     0K     0K   0% sshd           
30636   136K 64288K  4488K     ?K     0K     0K     0K   0% pmdaperfevent  
 1246   152K 328.8M  4472K     ?K     0K     0K     0K   0% postgres       
  333   136K 104.4M  4372K     ?K     0K     0K     4K   0% lvmetad        
  662   136K 51340K  4336K     ?K   224K   160K     0K   0% pmlogger       
16677   136K 128.5M  4276K     ?K     0K     0K     0K   0% sshd           
30575   136K 132.1M  4272K     ?K     0K     0K     0K   0% pmcd           
 7524   136K 44564K  4240K     ?K     0K     0K     0K   0% systemd        
 8026   136K 44564K  4232K     ?K     0K     0K     0K   0% systemd        
 5628   136K 44556K  4204K     ?K     0K     0K     0K   0% systemd        
 6014   136K 44560K  4192K     ?K     0K     0K     0K   0% systemd        
  542   136K 41992K  4124K     ?K     0K     0K     0K   0% dbus-daemon    
29375   136K 128.3M  4068K     ?K     0K     0K     0K   0% sshd           
  552   136K 30228K  3880K     ?K     0K     0K     0K   0% bluetoothd     
  534   136K 26564K  3812K     ?K     0K     0K     0K   0% smartd         
30593   136K 50652K  3752K     ?K     0K     0K     0K   0% pmdalinux      
30609   136K 52536K  3732K     ?K     0K     0K     0K   0% pmdaapache     
30642   136K 52528K  3656K     ?K     0K     0K     0K   0% pmdasimple     
30584   136K 52588K  3644K     ?K     0K     0K     0K   0% pmdasample     
30581   136K 123.3M  3596K     ?K     0K     0K     0K   0% pmdashping     
30611   136K 52528K  3588K     ?K     0K     0K     0K   0% pmdamounts     
30578   136K 50456K  3424K     ?K     0K     0K     0K   0% pmdaroot       
 6075   136K 41808K  3416K     ?K     0K     0K     0K   0% dbus-daemon    
30580   136K 50456K  3408K     ?K     0K     0K     0K   0% pmdaxfs        
 1249   152K 188.0M  3200K     ?K     0K     0K     0K   0% postgres       
  548   528K 123.4M  3188K     ?K     0K     0K     0K   0% crond          
 6241   136K 41048K  3172K     ?K     0K     0K     0K   0% dbus-daemon    
  492   136K 100.3M  3156K     ?K     0K     0K     0K   0% chronyd        
 1245   152K 328.8M  3140K     ?K     0K     0K     0K   0% postgres       
 1247   152K 328.8M  3140K     ?K     0K     0K     0K   0% postgres       
 1236   152K 187.9M  3064K     ?K     0K     0K     0K   0% postgres       
  309   136K 110.6M  3056K     ?K     0K     0K     0K   0% mk.atop.sh     
  388   136K 51192K  3032K     ?K     0K     0K    12K   0% auditd         
  539   136K 34700K  3032K     ?K     0K     0K     0K   0% systemd-logind 
  983   136K 44492K  3012K     ?K     0K     0K     0K   0% rpc.statd      
 5801   136K 165.5M  3000K     ?K     0K     0K     0K   0% pcscd          
 8033   136K 74424K  2872K     ?K     0K     0K   200K   0% (sd-pam)       
 7529   136K 74424K  2868K     ?K     0K     0K   200K   0% (sd-pam)       
  538   136K 28080K  2848K     ?K     0K     0K     0K   0% avahi-daemon   
 6020   136K 74424K  2836K     ?K     0K     0K   208K   0% (sd-pam)       
 5631   136K 74424K  2820K     ?K     0K     0K   208K   0% (sd-pam)       
 6685   136K 23372K  2812K     ?K     0K     0K     0K   0% obexd          
  530   136K 19140K  2672K     ?K     0K     0K     0K   0% irqbalance     
  482   136K 16776K  2608K     ?K     0K     0K     0K   0% alsactl        
  959   136K 307.4M  2460K     ?K     0K     0K     0K   0% memcached      
  520   136K 44068K  2292K     ?K     0K     0K     0K   0% rpcbind        
  549   136K 25944K  2264K     ?K     0K     0K     0K   0% atd            
  489   136K 160.8M  2200K     ?K     0K     0K     0K   0% rtkit-daemon   
  471   136K 26212K  2160K     ?K     0K     0K     0K   0% sedispatch     
28162   136K 11544K  1932K     ?K     0K     0K     0K   0% cscope         
 6074   136K 13936K  1872K     ?K     0K     0K     0K   0% dbus-launch    
  955   136K  7000K  1800K     ?K     0K     0K     0K   0% mcelog         
21740   136K  8448K  1532K     ?K     0K     0K     0K   0% gnome-pty-help 
  468   136K 80216K  1468K     ?K     0K     0K     0K   0% audispd        
  519   136K  4364K  1332K     ?K     0K     0K     0K   0% rngd           
  672   136K 27952K   232K     ?K     0K     0K     0K   0% avahi-daemon   
    2     0K     0K     0K     ?K     0K     0K     0K   0% kthreadd       
    3     0K     0K     0K     ?K     0K     0K     0K   0% ksoftirqd/0    
    5     0K     0K     0K     ?K     0K     0K     0K   0% kworker/0:0H   
    7     0K     0K     0K     ?K     0K     0K     0K   0% rcu_sched      
    8     0K     0K     0K     ?K     0K     0K     0K   0% rcu_bh         
    9     0K     0K     0K     ?K     0K     0K     0K   0% rcuos/0        
   10     0K     0K     0K     ?K     0K     0K     0K   0% rcuob/0        
   11     0K     0K     0K     ?K     0K     0K     0K   0% migration/0    
   12     0K     0K     0K     ?K     0K     0K     0K   0% watchdog/0     
   13     0K     0K     0K     ?K     0K     0K     0K   0% watchdog/1     
   14     0K     0K     0K     ?K     0K     0K     0K   0% migration/1    
   15     0K     0K     0K     ?K     0K     0K     0K   0% ksoftirqd/1    
   17     0K     0K     0K     ?K     0K     0K     0K   0% kworker/1:0H   
   18     0K     0K     0K     ?K     0K     0K     0K   0% rcuos/1        
   19     0K     0K     0K     ?K     0K     0K     0K   0% rcuob/1        
   20     0K     0K     0K     ?K     0K     0K     0K   0% watchdog/2     
   21     0K     0K     0K     ?K     0K     0K     0K   0% migration/2    
   22     0K     0K     0K     ?K     0K     0K     0K   0% ksoftirqd/2    
   24     0K     0K     0K     ?K     0K     0K     0K   0% kworker/2:0H   
   25     0K     0K     0K     ?K     0K     0K     0K   0% rcuos/2        
   26     0K     0K     0K     ?K     0K     0K     0K   0% rcuob/2        
   27     0K     0K     0K     ?K     0K     0K     0K   0% watchdog/3     
   28     0K     0K     0K     ?K     0K     0K     0K   0% migration/3    
   29     0K     0K     0K     ?K     0K     0K     0K   0% ksoftirqd/3    
   31     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:0H   
   32     0K     0K     0K     ?K     0K     0K     0K   0% rcuos/3        
   33     0K     0K     0K     ?K     0K     0K     0K   0% rcuob/3        
   34     0K     0K     0K     ?K     0K     0K     0K   0% khelper        
   35     0K     0K     0K     ?K     0K     0K     0K   0% kdevtmpfs      
   36     0K     0K     0K     ?K     0K     0K     0K   0% netns          
   37     0K     0K     0K     ?K     0K     0K     0K   0% perf           
   38     0K     0K     0K     ?K     0K     0K     0K   0% writeback      
   39     0K     0K     0K     ?K     0K     0K     0K   0% ksmd           
   40     0K     0K     0K     ?K     0K     0K     0K   0% khugepaged     
   41     0K     0K     0K     ?K     0K     0K     0K   0% crypto         
   42     0K     0K     0K     ?K     0K     0K     0K   0% kintegrityd    
   43     0K     0K     0K     ?K     0K     0K     0K   0% bioset         
   44     0K     0K     0K     ?K     0K     0K     0K   0% kblockd        
   45     0K     0K     0K     ?K     0K     0K     0K   0% ata_sff        
   46     0K     0K     0K     ?K     0K     0K     0K   0% md             
   47     0K     0K     0K     ?K     0K     0K     0K   0% devfreq_wq     
   73     0K     0K     0K     ?K     0K     0K     0K   0% kswapd0        
   74     0K     0K     0K     ?K     0K     0K     0K   0% fsnotify_mark  
   84     0K     0K     0K     ?K     0K     0K     0K   0% kthrotld       
   85     0K     0K     0K     ?K     0K     0K     0K   0% acpi_thermal_p 
   86     0K     0K     0K     ?K     0K     0K     0K   0% scsi_eh_0      
   87     0K     0K     0K     ?K     0K     0K     0K   0% scsi_tmf_0     
   88     0K     0K     0K     ?K     0K     0K     0K   0% scsi_eh_1      
   89     0K     0K     0K     ?K     0K     0K     0K   0% scsi_tmf_1     
   92     0K     0K     0K     ?K     0K     0K     0K   0% kpsmoused      
   94     0K     0K     0K     ?K     0K     0K     0K   0% dm_bufio_cache 
   95     0K     0K     0K     ?K     0K     0K     0K   0% ipv6_addrconf  
   97     0K     0K     0K     ?K     0K     0K     0K   0% deferwq        
  127     0K     0K     0K     ?K     0K     0K     0K   0% kauditd        
  215     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:1H   
  216     0K     0K     0K     ?K     0K     0K     0K   0% kworker/0:1H   
  222     0K     0K     0K     ?K     0K     0K     0K   0% kworker/1:1H   
  235     0K     0K     0K     ?K     0K     0K     0K   0% jbd2/sda7-8    
  236     0K     0K     0K     ?K     0K     0K     0K   0% ext4-rsv-conve 
  237     0K     0K     0K     ?K     0K     0K     0K   0% kworker/2:1H   
  401     0K     0K     0K     ?K     0K     0K     0K   0% irq/46-mei_me  
  437     0K     0K     0K     ?K     0K     0K     0K   0% hd-audio0      
  438     0K     0K     0K     ?K     0K     0K     0K   0% hd-audio1      
  444     0K     0K     0K     ?K     0K     0K     0K   0% kmemstick      
  462     0K     0K     0K     ?K     0K     0K     0K   0% rtsx_usb_ms_1  
  474     0K     0K     0K     ?K     0K     0K     0K   0% cfg80211       
  476     0K     0K     0K     ?K     0K     0K     0K   0% rpciod         
  499     0K     0K     0K     ?K     0K     0K     0K   0% kvm-irqfd-clea 
  510     0K     0K     0K     ?K     0K     0K     0K   0% kworker/u17:0  
  511     0K     0K     0K     ?K     0K     0K     0K   0% hci0           
  512     0K     0K     0K     ?K     0K     0K     0K   0% hci0           
  513     0K     0K     0K     ?K     0K     0K     0K   0% kworker/u17:1  
  677     0K     0K     0K     ?K -47.0M -2212K     0K   0%                
 1162     0K     0K     0K     ?K     0K     0K     0K   0% loop0          
 1163     0K     0K     0K     ?K     0K     0K     0K   0% loop1          
 1164     0K     0K     0K     ?K     0K     0K     0K   0% kdmflush       
 1175     0K     0K     0K     ?K     0K     0K     0K   0% bioset         
 1194     0K     0K     0K     ?K     0K     0K     0K   0% kcopyd         
 1195     0K     0K     0K     ?K     0K     0K     0K   0% bioset         
 1196     0K     0K     0K     ?K     0K     0K     0K   0% dm-thin        
 1197     0K     0K     0K     ?K     0K     0K     0K   0% bioset         
 6290     0K     0K     0K     ?K     0K     0K     0K   0% krfcommd       
12870     0K     0K     0K     ?K     0K     0K     0K   0% kworker/u16:2  
19036     0K     0K     0K     ?K     0K     0K     0K   0% kworker/0:2    
22844     0K     0K     0K     ?K     0K     0K     0K   0% kworker/u16:1  
24248     0K     0K     0K     ?K     0K     0K     0K   0% kworker/1:0    
26115     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:2    
29143     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:1    
30101     0K     0K     0K     ?K     0K     0K     0K   0% kworker/2:1    
30245     0K     0K     0K     ?K     0K     0K     0K   0% kworker/1:1    
30263     0K     0K     0K     ?K     0K     0K     0K   0% kworker/0:3    
30730     0K     0K     0K     ?K     0K     0K     0K   0% nfsiod         
30736     0K     0K     0K     ?K     0K     0K     0K   0% nfsv4.0-svc    
31667     0K     0K     0K     ?K     0K     0K     0K   0% kworker/2:3    
32428     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:0    
32429     0K     0K     0K     ?K     0K     0K     0K   0% kworker/3:3    
  670     0K     0K     0K     ?K     0K     0K     0K   0%                
=== std err
=== done

Disk option
=== std out


ATOP - slick        2015/09/25  11:03:20        --------------        1s elapsed
PRC | sys   16m20s | user  61m45s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       1% | user      4% | irq       0% | idle    392% | wait      2% |
cpu | sys       0% | user      1% | irq       0% | idle     97% | cpu002 w  1% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu000 w  1% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu001 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     99% | cpu003 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw 64269970 | intr 21748e3 |
MEM | tot     3.8G | free  196.6M | cache   1.5G | buff  275.4M | slab  358.0M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.2G | vmlim  15.2G |
PAG | scan  412940 | steal      0 | stall      0 | swin      96 | swout   2329 |
DSK |          sda | busy      2% | read  161108 | write 163892 | avio 6.23 ms |
NFC | rpc       35 | read       0 | write      0 | retxmit    0 | autref    35 |
NET | transport    | tcpi  263904 | tcpo  284726 | udpi   75245 | udpo   81495 |
NET | network      | ipi   300472 | ipo   328158 | ipfrw      0 | deliv 298076 |
NET | p2p1      4% | pcki  391116 | pcko  275261 | si 1168 Mbps | so  830 Mbps |
NET | tun0      0% | pcki    5917 | pcko    6220 | si   17 Mbps | so 4842 Kbps |
NET | lo      ---- | pcki   60893 | pcko   60893 | si  597 Mbps | so  597 Mbps |
WWW | reqs       9 | totKB     17 | byt/rq  1934 | iwork      4 | bwork      1 |
                   *** system and process activity since boot ***
  PID   TID  RDDSK  WRDSK WCANCL  DSK CMD            
 7014     - 183.7M   1.4G 454.0M  73% firefox        
 4507     - 148.6M 57520K 28892K  11% bash           
21741     - 40228K 41980K 11180K   4% bash           
 6971     -  9016K 57648K   216K   4% xchat          
 6354     - 38904K   196K     0K   2% gnome-shell    
16591     - 13856K 12236K  2268K   1% bash           
 8421     - 19668K     4K     0K   1% bash           
 6656     - 12504K  1000K   112K   1% tracker-store  
 6414     -  8852K     0K     0K   1% evolution-sour 
 6592     -  5568K     8K     0K   0% tracker-miner- 
 6265     -  3220K     0K     0K   0% gnome-settings 
 6483     -  2728K     0K     0K   0% evolution-alar 
21737     -  2536K     0K     0K   0% gnome-terminal 
 6531     -  1520K   820K     0K   0% evolution-cale 
 6398     -  2008K     0K     0K   0% gnome-shell-ca 
 6066     -  1800K    32K     0K   0% gnome-session  
29378     -  1528K     4K     0K   0% bash           
 6682     -  1136K     0K     0K   0% abrt-applet    
 6140     -   776K     0K     0K   0% gvfsd          
 6525     -    96K   640K    12K   0% gvfsd-metadata 
 7984     -   704K     0K     0K   0% ssh            
 6596     -   648K     0K     0K   0% applet.py      
 6258     -   632K     8K     0K   0% pulseaudio     
 6706     -   588K     0K     0K   0% vino-server    
 6381     -     0K   576K     0K   0% dconf-service  
 6340     -   572K     0K     0K   0% gvfs-gphoto2-v 
 6688     -   496K     0K     0K   0% deja-dup-monit 
 6685     -   440K     0K     0K   0% obexd          
 6160     -   340K     0K     0K   0% gvfsd-fuse     
 6317     -   292K     0K     0K   0% goa-daemon     
 6297     -   280K     0K     0K   0% gvfs-udisks2-v 
 6687     -   244K     0K     0K   0% telepathy-logg 
 6323     -   228K     8K     0K   0% mission-contro 
 6693     -   168K     0K     0K   0% gvfsd-burn     
 7910     -   132K     0K     0K   0% bash           
 6075     -   128K     0K     0K   0% dbus-daemon    
28356     -   124K     0K     0K   0% gvfsd-mtp      
22779     -   124K     0K     0K   0% gconfd-2       
 6308     -   116K     0K     0K   0% gvfs-afc-volum 
 6314     -   116K     0K     0K   0% gvfs-goa-volum 
 6327     -   112K     0K     0K   0% gvfs-mtp-volum 
  309     -    89K     0K     0K   0% mk.atop.sh     
 6630     -    76K     0K     0K   0% seapplet       
 6378     -    52K     0K     0K   0% gsd-printer    
16680     -    36K     4K     4K   0% bash           
 6014     -    24K     0K     0K   0% systemd        
  662     -     0K    17K     0K   0% pmlogger       
28161     -     0K    16K     0K   0% vim            
 6418     -     8K     0K     0K   0% ibus-dconf     
 6410     -     0K     4K     0K   0% ibus-daemon    
  877     -     0K     0K     0K   0% Xorg           
  556     -     0K     0K     0K   0% java           
 1430     -     0K     0K     0K   0% polkitd        
  519     -     0K     0K     0K   0% rngd           
  957     -     0K     0K     0K   0% docker         
 6299     -     0K     0K     0K   0% udisksd        
    7     -     0K     0K     0K   0% rcu_sched      
  542     -     0K     0K     0K   0% dbus-daemon    
  495     -     0K     0K     0K   0% rsyslogd       
   25     -     0K     0K     0K   0% rcuos/2        
    9     -     0K     0K     0K   0% rcuos/0        
  643     -     0K     0K     0K   0% NetworkManager 
  530     -     0K     0K     0K   0% irqbalance     
    1     -     0K     0K     0K   0% systemd        
16582     -     0K     0K     0K   0% sshd           
   18     -     0K     0K     0K   0% rcuos/1        
  959     -     0K     0K     0K   0% memcached      
  462     -     0K     0K     0K   0% rtsx_usb_ms_1  
   32     -     0K     0K     0K   0% rcuos/3        
  313     -     0K     0K     0K   0% systemd-journa 
  235     -     0K     0K     0K   0% jbd2/sda7-8    
  237     -     0K     0K     0K   0% kworker/2:1H   
  548     -     0K     0K     0K   0% crond          
 1249     -     0K     0K     0K   0% postgres       
30630     -     0K     0K     0K   0% pmdarpm        
  539     -     0K     0K     0K   0% systemd-logind 
 8209     -     0K     0K     0K   0% vpnc           
  489     -     0K     0K     0K   0% rtkit-daemon   
  483     -     0K     0K     0K   0% firewalld      
 1248     -     0K     0K     0K   0% postgres       
 1013     -     0K     0K     0K   0% postgres       
   22     -     0K     0K     0K   0% ksoftirqd/2    
12870     -     0K     0K     0K   0% kworker/u16:2  
  486     -     0K     0K     0K   0% accounts-daemo 
 1246     -     0K     0K     0K   0% postgres       
 1247     -     0K     0K     0K   0% postgres       
   14     -     0K     0K     0K   0% migration/1    
  520     -     0K     0K     0K   0% rpcbind        
 6007     -     0K     0K     0K   0% gdm-session-wo 
   74     -     0K     0K     0K   0% fsnotify_mark  
 5756     -     0K     0K     0K   0% upowerd        
 6035     -     0K     0K     0K   0% gnome-keyring- 
    3     -     0K     0K     0K   0% ksoftirqd/0    
  341     -     0K     0K     0K   0% systemd-udevd  
   73     -     0K     0K     0K   0% kswapd0        
   12     -     0K     0K     0K   0% watchdog/0     
   13     -     0K     0K     0K   0% watchdog/1     
  538     -     0K     0K     0K   0% avahi-daemon   
   15     -     0K     0K     0K   0% ksoftirqd/1    
   11     -     0K     0K     0K   0% migration/0    
   20     -     0K     0K     0K   0% watchdog/2     
 6245     -     0K     0K     0K   0% at-spi2-regist 
   28     -     0K     0K     0K   0% migration/3    
22844     -     0K     0K     0K   0% kworker/u16:1  
   21     -     0K     0K     0K   0% migration/2    
  468     -     0K     0K     0K   0% audispd        
30594     -     0K     0K     0K   0% perl           
  956     -     0K     0K     0K   0% libvirtd       
  388     -     0K     0K     0K   0% auditd         
   27     -     0K     0K     0K   0% watchdog/3     
 1352     -     0K     0K     0K   0% pmwebd         
   29     -     0K     0K     0K   0% ksoftirqd/3    
24248     -     0K     0K     0K   0% kworker/1:0    
21038     -     0K     0K     0K   0% bash           
30636     -     0K     0K     0K   0% pmdaperfevent  
 5797     -     0K     0K     0K   0% colord         
  509     -     0K     0K     0K   0% abrt-watch-log 
  492     -     0K     0K     0K   0% chronyd        
19036     -     0K     0K     0K   0% kworker/0:2    
30575     -     0K     0K     0K   0% pmcd           
30632     -     0K     0K     0K   0% python3        
29334     -     0K     0K     0K   0% sshd           
16672     -     0K     0K     0K   0% sshd           
16569     -     0K     0K     0K   0% sshd           
16677     -     0K     0K     0K   0% sshd           
30638     -     0K     0K     0K   0% python3        
 6371     -     0K     0K     0K   0% cupsd          
    2     -     0K     0K     0K   0% kthreadd       
30615     -     0K     0K     0K   0% perl           
 6241     -     0K     0K     0K   0% dbus-daemon    
26115     -     0K     0K     0K   0% kworker/3:2    
  471     -     0K     0K     0K   0% sedispatch     
30628     -     0K     0K     0K   0% perl           
  534     -     0K     0K     0K   0% smartd         
30579     -     0K     0K     0K   0% pmdaproc       
30603     -     0K     0K     0K   0% perl           
30627     -     0K     0K     0K   0% perl           
32671     -     0K     0K     0K   0% httpd          
 7524     -     0K     0K     0K   0% systemd        
 8026     -     0K     0K     0K   0% systemd        
 5628     -     0K     0K     0K   0% systemd        
  127     -     0K     0K     0K   0% kauditd        
  500     -     0K     0K     0K   0% abrtd          
  647     -     0K     0K     0K   0% gdm-simple-sla 
29375     -     0K     0K     0K   0% sshd           
30581     -     0K     0K     0K   0% pmdashping     
 1245     -     0K     0K     0K   0% postgres       
  482     -     0K     0K     0K   0% alsactl        
  222     -     0K     0K     0K   0% kworker/1:1H   
30101     -     0K     0K     0K   0% kworker/2:1    
 1193     -     0K     0K     0K   0% dhclient       
  496     -     0K     0K     0K   0% ModemManager   
  551     -     0K     0K     0K   0% gdm            
 6420     -     0K     0K     0K   0% ibus-x11       
  972     -     0K     0K     0K   0% sshd           
30593     -     0K     0K     0K   0% pmdalinux      
 5801     -     0K     0K     0K   0% pcscd          
 6469     -     0K     0K     0K   0% ibus-engine-si 
21036     -     0K     0K     0K   0% sudo           
  552     -     0K     0K     0K   0% bluetoothd     
30609     -     0K     0K     0K   0% pmdaapache     
  983     -     0K     0K     0K   0% rpc.statd      
  549     -     0K     0K     0K   0% atd            
  216     -     0K     0K     0K   0% kworker/0:1H   
  531     -     0K     0K     0K   0% abrt-watch-log 
 8201     -     0K     0K     0K   0% nm-vpnc-servic 
32672     -     0K     0K     0K   0% httpd          
21037     -     0K     0K     0K   0% su             
 6237     -     0K     0K     0K   0% at-spi-bus-lau 
32673     -     0K     0K     0K   0% httpd          
32675     -     0K     0K     0K   0% httpd          
32674     -     0K     0K     0K   0% httpd          
32676     -     0K     0K     0K   0% httpd          
  333     -     0K     0K     0K   0% lvmetad        
30642     -     0K     0K     0K   0% pmdasimple     
30584     -     0K     0K     0K   0% pmdasample     
30611     -     0K     0K     0K   0% pmdamounts     
30578     -     0K     0K     0K   0% pmdaroot       
30580     -     0K     0K     0K   0% pmdaxfs        
 1236     -     0K     0K     0K   0% postgres       
 8033     -     0K     0K     0K   0% (sd-pam)       
 7529     -     0K     0K     0K   0% (sd-pam)       
 6020     -     0K     0K     0K   0% (sd-pam)       
 5631     -     0K     0K     0K   0% (sd-pam)       
28162     -     0K     0K     0K   0% cscope         
 6074     -     0K     0K     0K   0% dbus-launch    
  955     -     0K     0K     0K   0% mcelog         
21740     -     0K     0K     0K   0% gnome-pty-help 
  672     -     0K     0K     0K   0% avahi-daemon   
    5     -     0K     0K     0K   0% kworker/0:0H   
    8     -     0K     0K     0K   0% rcu_bh         
   10     -     0K     0K     0K   0% rcuob/0        
   17     -     0K     0K     0K   0% kworker/1:0H   
   19     -     0K     0K     0K   0% rcuob/1        
   24     -     0K     0K     0K   0% kworker/2:0H   
   26     -     0K     0K     0K   0% rcuob/2        
   31     -     0K     0K     0K   0% kworker/3:0H   
   33     -     0K     0K     0K   0% rcuob/3        
   34     -     0K     0K     0K   0% khelper        
   35     -     0K     0K     0K   0% kdevtmpfs      
   36     -     0K     0K     0K   0% netns          
   37     -     0K     0K     0K   0% perf           
   38     -     0K     0K     0K   0% writeback      
   39     -     0K     0K     0K   0% ksmd           
   40     -     0K     0K     0K   0% khugepaged     
   41     -     0K     0K     0K   0% crypto         
   42     -     0K     0K     0K   0% kintegrityd    
   43     -     0K     0K     0K   0% bioset         
   44     -     0K     0K     0K   0% kblockd        
   45     -     0K     0K     0K   0% ata_sff        
   46     -     0K     0K     0K   0% md             
   47     -     0K     0K     0K   0% devfreq_wq     
   84     -     0K     0K     0K   0% kthrotld       
   85     -     0K     0K     0K   0% acpi_thermal_p 
   86     -     0K     0K     0K   0% scsi_eh_0      
   87     -     0K     0K     0K   0% scsi_tmf_0     
   88     -     0K     0K     0K   0% scsi_eh_1      
   89     -     0K     0K     0K   0% scsi_tmf_1     
   92     -     0K     0K     0K   0% kpsmoused      
   94     -     0K     0K     0K   0% dm_bufio_cache 
   95     -     0K     0K     0K   0% ipv6_addrconf  
   97     -     0K     0K     0K   0% deferwq        
  215     -     0K     0K     0K   0% kworker/3:1H   
  236     -     0K     0K     0K   0% ext4-rsv-conve 
  401     -     0K     0K     0K   0% irq/46-mei_me  
  437     -     0K     0K     0K   0% hd-audio0      
  438     -     0K     0K     0K   0% hd-audio1      
  444     -     0K     0K     0K   0% kmemstick      
  474     -     0K     0K     0K   0% cfg80211       
  476     -     0K     0K     0K   0% rpciod         
  499     -     0K     0K     0K   0% kvm-irqfd-clea 
  510     -     0K     0K     0K   0% kworker/u17:0  
  511     -     0K     0K     0K   0% hci0           
  512     -     0K     0K     0K   0% hci0           
  513     -     0K     0K     0K   0% kworker/u17:1  
  677     -     0K     0K     0K   0%                
 1162     -     0K     0K     0K   0% loop0          
 1163     -     0K     0K     0K   0% loop1          
 1164     -     0K     0K     0K   0% kdmflush       
 1175     -     0K     0K     0K   0% bioset         
 1194     -     0K     0K     0K   0% kcopyd         
 1195     -     0K     0K     0K   0% bioset         
 1196     -     0K     0K     0K   0% dm-thin        
 1197     -     0K     0K     0K   0% bioset         
 6290     -     0K     0K     0K   0% krfcommd       
29143     -     0K     0K     0K   0% kworker/3:1    
30245     -     0K     0K     0K   0% kworker/1:1    
30263     -     0K     0K     0K   0% kworker/0:3    
30730     -     0K     0K     0K   0% nfsiod         
30736     -     0K     0K     0K   0% nfsv4.0-svc    
31667     -     0K     0K     0K   0% kworker/2:3    
32428     -     0K     0K     0K   0% kworker/3:0    
32429     -     0K     0K     0K   0% kworker/3:3    
  670     -     0K     0K     0K   0%                


ATOP - slick        2015/09/25  11:03:21        --------------        1s elapsed
PRC | sys    0.04s | user   0.02s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       5% | user      5% | irq       0% | idle    382% | wait      8% |
cpu | sys       2% | user      2% | irq       0% | idle     96% | cpu000 w  0% |
cpu | sys       1% | user      2% | irq       0% | idle     97% | cpu003 w  0% |
cpu | sys       1% | user      1% | irq       0% | idle     90% | cpu001 w  8% |
cpu | sys       1% | user      1% | irq       0% | idle     98% | cpu002 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw     1622 | intr     305 |
MEM | tot     3.8G | free  195.8M | cache   1.5G | buff  275.4M | slab  358.1M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.1G | vmlim  15.2G |
DSK |          sda | busy      8% | read       5 | write      0 | avio 16.2 ms |
NET | transport    | tcpi       5 | tcpo       5 | udpi       0 | udpo       0 |
NET | network      | ipi        5 | ipo        4 | ipfrw      0 | deliv      4 |
NET | p2p1      0% | pcki       8 | pcko       5 | si    8 Kbps | so    2 Kbps |
NET | lo      ---- | pcki       2 | pcko       2 | si    1 Kbps | so    1 Kbps |

  PID   TID  RDDSK  WRDSK WCANCL  DSK CMD            
  662     -     0K   148K     0K  75% pmlogger       
  309     -    50K     0K     0K  25% mk.atop.sh     
30579     -     0K     0K     0K   0% pmdaproc       
 7014     -     0K     0K     0K   0% firefox        
    9     -     0K     0K     0K   0% rcuos/0        
30594     -     0K     0K     0K   0% perl           
 6354     -     0K     0K     0K   0% gnome-shell    
  877     -     0K     0K     0K   0% Xorg           
32676     -     0K     0K     0K   0% httpd          
30575     -     0K     0K     0K   0% pmcd           
30593     -     0K     0K     0K   0% pmdalinux      
30609     -     0K     0K     0K   0% pmdaapache     
  677     -     0K     0K     0K   0% pmsleep        
    7     -     0K     0K     0K   0% rcu_sched      
   18     -     0K     0K     0K   0% rcuos/1        
   25     -     0K     0K     0K   0% rcuos/2        
  462     -     0K     0K     0K   0% rtsx_usb_ms_1  
12870     -     0K     0K     0K   0% kworker/u16:2  
22844     -     0K     0K     0K   0% kworker/u16:1  


ATOP - slick        2015/09/25  11:03:22        --------------        1s elapsed
PRC | sys    0.01s | user   0.02s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       2% | user      2% | irq       0% | idle    395% | wait      1% |
cpu | sys       2% | user      2% | irq       0% | idle     96% | cpu000 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu003 w  0% |
cpu | sys       1% | user      0% | irq       0% | idle     99% | cpu001 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw      501 | intr     219 |
MEM | tot     3.8G | free  195.7M | cache   1.5G | buff  275.4M | slab  358.1M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.1G | vmlim  15.2G |
NET | transport    | tcpi       5 | tcpo       6 | udpi       0 | udpo       0 |
NET | p2p1      0% | pcki       3 | pcko       0 | si    1 Kbps | so    0 Kbps |
NET | lo      ---- | pcki       7 | pcko       7 | si    9 Kbps | so    9 Kbps |

  PID   TID  RDDSK  WRDSK WCANCL  DSK CMD            
  662     -     0K   131K     0K 100% pmlogger       
30579     -     0K     0K     0K   0% pmdaproc       
 7014     -     0K     0K     0K   0% firefox        
30594     -     0K     0K     0K   0% perl           
 6354     -     0K     0K     0K   0% gnome-shell    
  877     -     0K     0K     0K   0% Xorg           
30575     -     0K     0K     0K   0% pmcd           
30593     -     0K     0K     0K   0% pmdalinux      
  309     -     0K     0K     0K   0% mk.atop.sh     
    7     -     0K     0K     0K   0% rcu_sched      
    9     -     0K     0K     0K   0% rcuos/0        
   25     -     0K     0K     0K   0% rcuos/2        
  677     -     0K     0K     0K   0%                
12870     -     0K     0K     0K   0% kworker/u16:2  
22844     -     0K     0K     0K   0% kworker/u16:1  
=== std err
=== done

Scheduling option
=== std out


ATOP - slick        2015/09/25  11:03:20        --------------        1s elapsed
PRC | sys   16m20s | user  61m45s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       1% | user      4% | irq       0% | idle    392% | wait      2% |
cpu | sys       0% | user      1% | irq       0% | idle     97% | cpu002 w  1% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu000 w  1% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu001 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     99% | cpu003 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw 64269970 | intr 21748e3 |
MEM | tot     3.8G | free  196.6M | cache   1.5G | buff  275.4M | slab  358.0M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.2G | vmlim  15.2G |
PAG | scan  412940 | steal      0 | stall      0 | swin      96 | swout   2329 |
DSK |          sda | busy      2% | read  161108 | write 163892 | avio 6.23 ms |
NFC | rpc       35 | read       0 | write      0 | retxmit    0 | autref    35 |
NET | transport    | tcpi  263904 | tcpo  284726 | udpi   75245 | udpo   81495 |
NET | network      | ipi   300472 | ipo   328158 | ipfrw      0 | deliv 298076 |
NET | p2p1      4% | pcki  391116 | pcko  275261 | si 1168 Mbps | so  830 Mbps |
NET | tun0      0% | pcki    5917 | pcko    6220 | si   17 Mbps | so 4842 Kbps |
NET | lo      ---- | pcki   60893 | pcko   60893 | si  597 Mbps | so  597 Mbps |
WWW | reqs       9 | totKB     17 | byt/rq  1934 | iwork      4 | bwork      1 |
                   *** system and process activity since boot ***
  PID TRUN TSLPI TSLPU POLI NICE PRI RTPR CPUNR ST EXC S  CPU CMD            
 7014    0     1     0 norm    0 120    0     3 N-   - S   3% firefox        
  877    0     1     0 norm    0 120    0     1 N-   - S   1% Xorg           
  556    0     1     0 norm    0 120    0     2 N-   - S   0% java           
 6354    0     1     0 norm    0 120    0     2 N-   - S   0% gnome-shell    
 6971    0     1     0 norm    0 120    0     3 N-   - S   0% xchat          
 1430    0     1     0 norm    0 120    0     0 N-   - S   0% polkitd        
21737    0     1     0 norm    0 120    0     0 N-   - S   0% gnome-terminal 
  519    0     1     0 norm    0 120    0     3 N-   - S   0% rngd           
  957    0     1     0 norm    0 120    0     1 N-   - S   0% docker         
 6299    0     1     0 norm    0 120    0     2 N-   - S   0% udisksd        
    7    0     1     0 norm    0 120    0     1 N-   - S   0% rcu_sched      
  542    0     1     0 norm    0 120    0     3 N-   - S   0% dbus-daemon    
  495    0     1     0 norm    0 120    0     0 N-   - S   0% rsyslogd       
   25    0     1     0 norm    0 120    0     3 N-   - S   0% rcuos/2        
    9    0     1     0 norm    0 120    0     2 N-   - S   0% rcuos/0        
  643    0     1     0 norm    0 120    0     1 N-   - S   0% NetworkManager 
  530    0     1     0 norm    0 120    0     0 N-   - S   0% irqbalance     
    1    0     1     0 norm    0 120    0     2 N-   - S   0% systemd        
 6317    0     1     0 norm    0 120    0     2 N-   - S   0% goa-daemon     
16582    0     1     0 norm    0 120    0     2 N-   - S   0% sshd           
 6265    0     1     0 norm    0 120    0     1 N-   - S   0% gnome-settings 
   18    0     1     0 norm    0 120    0     1 N-   - S   0% rcuos/1        
  959    0     1     0 norm    0 120    0     0 N-   - S   0% memcached      
  462    0     0     1 norm    0 120    0     0 N-   - D   0% rtsx_usb_ms_1  
   32    0     1     0 norm    0 120    0     1 N-   - S   0% rcuos/3        
  313    0     1     0 norm    0 120    0     2 N-   - S   0% systemd-journa 
 6531    0     1     0 norm    0 120    0     1 N-   - S   0% evolution-cale 
  235    0     1     0 norm    0 120    0     0 N-   - S   0% jbd2/sda7-8    
  237    0     1     0 norm    0 100    0     2 N-   - S   0% kworker/2:1H   
  548    0     1     0 norm    0 120    0     1 N-   - S   0% crond          
16591    0     1     0 norm    0 120    0     2 N-   - S   0% bash           
 1249    0     1     0 norm    0 120    0     0 N-   - S   0% postgres       
30630    0     1     0 norm    0 120    0     3 N-   - S   0% pmdarpm        
 6410    0     1     0 norm    0 120    0     0 N-   - S   0% ibus-daemon    
21741    0     1     0 norm    0 120    0     1 N-   - S   0% bash           
  539    0     1     0 norm    0 120    0     0 N-   - S   0% systemd-logind 
28356    0     1     0 norm    0 120    0     3 N-   - S   0% gvfsd-mtp      
 8209    0     1     0 norm    0 120    0     3 N-   - S   0% vpnc           
  489    0     1     0 norm    1 121    0     3 N-   - S   0% rtkit-daemon   
  483    0     1     0 norm    0 120    0     0 N-   - S   0% firewalld      
 1248    0     1     0 norm    0 120    0     2 N-   - S   0% postgres       
 1013    0     1     0 norm    0 120    0     0 N-   - S   0% postgres       
   22    0     1     0 norm    0 120    0     2 N-   - S   0% ksoftirqd/2    
12870    0     1     0 norm    0 120    0     2 N-   - S   0% kworker/u16:2  
  486    0     1     0 norm    0 120    0     3 N-   - S   0% accounts-daemo 
 6323    0     1     0 norm    0 120    0     2 N-   - S   0% mission-contro 
 6258    0     1     0 norm    0 109    0     3 N-   - S   0% pulseaudio     
 1246    0     1     0 norm    0 120    0     2 N-   - S   0% postgres       
 6075    0     1     0 norm    0 120    0     1 N-   - S   0% dbus-daemon    
 1247    0     1     0 norm    0 120    0     0 N-   - S   0% postgres       
   14    0     1     0 fifo    0 100   99     1 N-   - S   0% migration/1    
  520    0     1     0 norm    0 120    0     0 N-   - S   0% rpcbind        
 6007    0     1     0 norm    0 120    0     3 N-   - S   0% gdm-session-wo 
   74    0     1     0 norm    0 120    0     2 N-   - S   0% fsnotify_mark  
 5756    0     1     0 norm    0 120    0     0 N-   - S   0% upowerd        
 6035    0     1     0 norm    0 120    0     2 N-   - S   0% gnome-keyring- 
    3    0     1     0 norm    0 120    0     0 N-   - S   0% ksoftirqd/0    
 6706    0     1     0 norm    0 120    0     0 N-   - S   0% vino-server    
 6066    0     1     0 norm    0 120    0     1 N-   - S   0% gnome-session  
  341    0     1     0 norm    0 120    0     3 N-   - S   0% systemd-udevd  
   73    0     1     0 norm    0 120    0     0 N-   - S   0% kswapd0        
 6656    0     1     0 norm    0 120    0     2 N-   - S   0% tracker-store  
   12    0     1     0 fifo    0 100   99     0 N-   - S   0% watchdog/0     
   13    0     1     0 fifo    0 100   99     1 N-   - S   0% watchdog/1     
  538    0     1     0 norm    0 120    0     2 N-   - S   0% avahi-daemon   
   15    0     1     0 norm    0 120    0     1 N-   - S   0% ksoftirqd/1    
   11    0     1     0 fifo    0 100   99     0 N-   - S   0% migration/0    
 6414    0     1     0 norm    0 120    0     3 N-   - S   0% evolution-sour 
   20    0     1     0 fifo    0 100   99     2 N-   - S   0% watchdog/2     
 6483    0     1     0 norm    0 120    0     0 N-   - S   0% evolution-alar 
 6398    0     1     0 norm    0 120    0     3 N-   - S   0% gnome-shell-ca 
 6245    0     1     0 norm    0 120    0     3 N-   - S   0% at-spi2-regist 
   28    0     1     0 fifo    0 100   99     3 N-   - S   0% migration/3    
22844    0     1     0 norm    0 120    0     0 N-   - S   0% kworker/u16:1  
   21    0     1     0 fifo    0 100   99     2 N-   - S   0% migration/2    
  468    0     1     0 norm    0 112    0     1 N-   - S   0% audispd        
30594    0     1     0 norm    0 120    0     0 N-   - S   0% perl           
 6297    0     1     0 norm    0 120    0     1 N-   - S   0% gvfs-udisks2-v 
  956    0     1     0 norm    0 120    0     2 N-   - S   0% libvirtd       
  388    0     1     0 norm    0 116    0     2 N-   - S   0% auditd         
   27    0     1     0 fifo    0 100   99     3 N-   - S   0% watchdog/3     
 1352    0     1     0 norm    0 120    0     2 N-   - S   0% pmwebd         
   29    0     1     0 norm    0 120    0     3 N-   - S   0% ksoftirqd/3    
24248    0     1     0 norm    0 120    0     1 N-   - S   0% kworker/1:0    
 6596    0     1     0 norm    0 120    0     1 N-   - S   0% applet.py      
 6592    0     1     0 norm   19 139    0     2 N-   - S   0% tracker-miner- 
21038    0     1     0 norm    0 120    0     0 N-   - S   0% bash           
30636    0     1     0 norm    0 120    0     2 N-   - S   0% pmdaperfevent  
 5797    0     1     0 norm    0 120    0     0 N-   - S   0% colord         
22779    0     1     0 norm    0 120    0     2 N-   - S   0% gconfd-2       
  509    0     1     0 norm    0 120    0     0 N-   - S   0% abrt-watch-log 
29378    0     1     0 norm    0 120    0     2 N-   - S   0% bash           
  492    0     1     0 norm    0 120    0     3 N-   - S   0% chronyd        
 6682    0     1     0 norm    0 120    0     2 N-   - S   0% abrt-applet    
19036    0     1     0 norm    0 120    0     0 N-   - S   0% kworker/0:2    
 4507    0     1     0 norm    0 120    0     0 N-   - S   0% bash           
30575    0     1     0 norm    0 120    0     2 N-   - S   0% pmcd           
30632    0     1     0 norm    0 120    0     0 N-   - S   0% python3        
 6688    0     1     0 norm    0 120    0     2 N-   - S   0% deja-dup-monit 
29334    0     1     0 norm    0 120    0     0 N-   - S   0% sshd           
16672    0     1     0 norm    0 120    0     1 N-   - S   0% sshd           
16569    0     1     0 norm    0 120    0     2 N-   - S   0% sshd           
16677    0     1     0 norm    0 120    0     3 N-   - S   0% sshd           
16680    0     1     0 norm    0 120    0     0 N-   - S   0% bash           
30638    0     1     0 norm    0 120    0     0 N-   - S   0% python3        
 7984    0     1     0 norm    0 120    0     3 N-   - S   0% ssh            
 6371    0     1     0 norm    0 120    0     2 N-   - S   0% cupsd          
 8421    0     1     0 norm    0 120    0     0 N-   - S   0% bash           
    2    0     1     0 norm    0 120    0     2 N-   - S   0% kthreadd       
30615    0     1     0 norm    0 120    0     0 N-   - S   0% perl           
 6381    0     1     0 norm    0 120    0     2 N-   - S   0% dconf-service  
 6241    0     1     0 norm    0 120    0     2 N-   - S   0% dbus-daemon    
26115    0     1     0 norm    0 120    0     3 N-   - S   0% kworker/3:2    
  471    0     1     0 norm    0 116    0     3 N-   - S   0% sedispatch     
30628    0     1     0 norm    0 120    0     1 N-   - S   0% perl           
 7910    0     1     0 norm    0 120    0     1 N-   - S   0% bash           
 6014    0     1     0 norm    0 120    0     3 N-   - S   0% systemd        
  534    0     1     0 norm    0 120    0     1 N-   - S   0% smartd         
30579    1     0     0 norm    0 120    0     0 N-   - R   0% pmdaproc       
30603    0     1     0 norm    0 120    0     3 N-   - S   0% perl           
30627    0     1     0 norm    0 120    0     2 N-   - S   0% perl           
32671    0     1     0 norm    0 120    0     0 N-   - S   0% httpd          
 6525    0     1     0 norm    0 120    0     2 N-   - S   0% gvfsd-metadata 
 6140    0     1     0 norm    0 120    0     0 N-   - S   0% gvfsd          
 7524    0     1     0 norm    0 120    0     2 N-   - S   0% systemd        
 8026    0     1     0 norm    0 120    0     3 N-   - S   0% systemd        
 5628    0     1     0 norm    0 120    0     0 N-   - S   0% systemd        
  127    0     1     0 norm    0 120    0     1 N-   - S   0% kauditd        
  500    0     1     0 norm    0 120    0     0 N-   - S   0% abrtd          
28161    0     1     0 norm    0 120    0     1 N-   - S   0% vim            
  647    0     1     0 norm    0 120    0     0 N-   - S   0% gdm-simple-sla 
29375    0     1     0 norm    0 120    0     3 N-   - S   0% sshd           
30581    0     1     0 norm    0 120    0     1 N-   - S   0% pmdashping     
 1245    0     1     0 norm    0 120    0     2 N-   - S   0% postgres       
  482    0     1     0 norm   19 139    0     0 N-   - S   0% alsactl        
  222    0     1     0 norm    0 100    0     1 N-   - S   0% kworker/1:1H   
30101    0     1     0 norm    0 120    0     2 N-   - S   0% kworker/2:1    
 1193    0     1     0 norm    0 120    0     3 N-   - S   0% dhclient       
  496    0     1     0 norm    0 120    0     1 N-   - S   0% ModemManager   
 6327    0     1     0 norm    0 120    0     1 N-   - S   0% gvfs-mtp-volum 
  551    0     1     0 norm    0 120    0     3 N-   - S   0% gdm            
  662    0     1     0 norm    0 120    0     0 N-   - S   0% pmlogger       
 6630    0     1     0 norm    0 120    0     2 N-   - S   0% seapplet       
 6420    0     1     0 norm    0 120    0     3 N-   - S   0% ibus-x11       
 6308    0     1     0 norm    0 120    0     2 N-   - S   0% gvfs-afc-volum 
 6340    0     1     0 norm    0 120    0     2 N-   - S   0% gvfs-gphoto2-v 
 6314    0     1     0 norm    0 120    0     2 N-   - S   0% gvfs-goa-volum 
  972    0     1     0 norm    0 120    0     1 N-   - S   0% sshd           
30593    0     1     0 norm    0 120    0     1 N-   - S   0% pmdalinux      
 5801    0     1     0 norm    0 120    0     3 N-   - S   0% pcscd          
 6469    0     1     0 norm    0 120    0     1 N-   - S   0% ibus-engine-si 
21036    0     1     0 norm    0 120    0     1 N-   - S   0% sudo           
 6160    0     1     0 norm    0 120    0     2 N-   - S   0% gvfsd-fuse     
  552    0     1     0 norm    0 120    0     1 N-   - S   0% bluetoothd     
30609    0     1     0 norm    0 120    0     2 N-   - S   0% pmdaapache     
  309    0     1     0 norm    0 120    0     2 N-   - S   0% mk.atop.sh     
  983    0     1     0 norm    0 120    0     2 N-   - S   0% rpc.statd      
  549    0     1     0 norm    0 120    0     0 N-   - S   0% atd            
  216    0     1     0 norm    0 100    0     0 N-   - S   0% kworker/0:1H   
 6378    0     1     0 norm    0 120    0     3 N-   - S   0% gsd-printer    
 6687    0     1     0 norm    0 120    0     3 N-   - S   0% telepathy-logg 
  531    0     1     0 norm    0 120    0     3 N-   - S   0% abrt-watch-log 
 6418    0     1     0 norm    0 120    0     0 N-   - S   0% ibus-dconf     
 6693    0     1     0 norm    0 120    0     3 N-   - S   0% gvfsd-burn     
 8201    0     1     0 norm    0 120    0     3 N-   - S   0% nm-vpnc-servic 
32672    0     1     0 norm    0 120    0     2 N-   - S   0% httpd          
21037    0     1     0 norm    0 120    0     2 N-   - S   0% su             
 6237    0     1     0 norm    0 120    0     0 N-   - S   0% at-spi-bus-lau 
32673    0     1     0 norm    0 120    0     0 N-   - S   0% httpd          
32675    0     1     0 norm    0 120    0     3 N-   - S   0% httpd          
32674    0     1     0 norm    0 120    0     0 N-   - S   0% httpd          
32676    0     1     0 norm    0 120    0     0 N-   - S   0% httpd          
  333    0     1     0 norm    0 120    0     0 N-   - S   0% lvmetad        
30642    0     1     0 norm    0 120    0     3 N-   - S   0% pmdasimple     
30584    0     1     0 norm    0 120    0     1 N-   - S   0% pmdasample     
30611    0     1     0 norm    0 120    0     0 N-   - S   0% pmdamounts     
30578    0     1     0 norm    0 120    0     0 N-   - S   0% pmdaroot       
30580    0     1     0 norm    0 120    0     2 N-   - S   0% pmdaxfs        
 1236    0     1     0 norm    0 120    0     2 N-   - S   0% postgres       
 8033    0     1     0 norm    0 120    0     3 N-   - S   0% (sd-pam)       
 7529    0     1     0 norm    0 120    0     3 N-   - S   0% (sd-pam)       
 6020    0     1     0 norm    0 120    0     0 N-   - S   0% (sd-pam)       
 5631    0     1     0 norm    0 120    0     0 N-   - S   0% (sd-pam)       
 6685    0     1     0 norm    0 120    0     2 N-   - S   0% obexd          
28162    0     1     0 norm    0 120    0     1 N-   - S   0% cscope         
 6074    0     1     0 norm    0 120    0     3 N-   - S   0% dbus-launch    
  955    0     1     0 norm    0 120    0     3 N-   - S   0% mcelog         
21740    0     1     0 norm    0 120    0     3 N-   - S   0% gnome-pty-help 
  672    0     1     0 norm    0 120    0     0 N-   - S   0% avahi-daemon   
    5    0     1     0 norm    0 100    0     0 N-   - S   0% kworker/0:0H   
    8    0     1     0 norm    0 120    0     0 N-   - S   0% rcu_bh         
   10    0     1     0 norm    0 120    0     0 N-   - S   0% rcuob/0        
   17    0     1     0 norm    0 100    0     1 N-   - S   0% kworker/1:0H   
   19    0     1     0 norm    0 120    0     0 N-   - S   0% rcuob/1        
   24    0     1     0 norm    0 100    0     2 N-   - S   0% kworker/2:0H   
   26    0     1     0 norm    0 120    0     0 N-   - S   0% rcuob/2        
   31    0     1     0 norm    0 100    0     3 N-   - S   0% kworker/3:0H   
   33    0     1     0 norm    0 120    0     0 N-   - S   0% rcuob/3        
   34    0     1     0 norm    0 100    0     3 N-   - S   0% khelper        
   35    0     1     0 norm    0 120    0     3 N-   - S   0% kdevtmpfs      
   36    0     1     0 norm    0 100    0     3 N-   - S   0% netns          
   37    0     1     0 norm    0 100    0     3 N-   - S   0% perf           
   38    0     1     0 norm    0 100    0     3 N-   - S   0% writeback      
   39    0     1     0 norm    5 125    0     3 N-   - S   0% ksmd           
   40    0     1     0 norm   19 139    0     2 N-   - S   0% khugepaged     
   41    0     1     0 norm    0 100    0     2 N-   - S   0% crypto         
   42    0     1     0 norm    0 100    0     2 N-   - S   0% kintegrityd    
   43    0     1     0 norm    0 100    0     2 N-   - S   0% bioset         
   44    0     1     0 norm    0 100    0     2 N-   - S   0% kblockd        
   45    0     1     0 norm    0 100    0     2 N-   - S   0% ata_sff        
   46    0     1     0 norm    0 100    0     2 N-   - S   0% md             
   47    0     1     0 norm    0 100    0     3 N-   - S   0% devfreq_wq     
   84    0     1     0 norm    0 100    0     1 N-   - S   0% kthrotld       
   85    0     1     0 norm    0 100    0     1 N-   - S   0% acpi_thermal_p 
   86    0     1     0 norm    0 120    0     1 N-   - S   0% scsi_eh_0      
   87    0     1     0 norm    0 100    0     1 N-   - S   0% scsi_tmf_0     
   88    0     1     0 norm    0 120    0     2 N-   - S   0% scsi_eh_1      
   89    0     1     0 norm    0 100    0     1 N-   - S   0% scsi_tmf_1     
   92    0     1     0 norm    0 100    0     1 N-   - S   0% kpsmoused      
   94    0     1     0 norm    0 100    0     0 N-   - S   0% dm_bufio_cache 
   95    0     1     0 norm    0 100    0     0 N-   - S   0% ipv6_addrconf  
   97    0     1     0 norm    0 100    0     2 N-   - S   0% deferwq        
  215    0     1     0 norm    0 100    0     3 N-   - S   0% kworker/3:1H   
  236    0     1     0 norm    0 100    0     2 N-   - S   0% ext4-rsv-conve 
  401    0     1     0 fifo    0 100   50     3 N-   - S   0% irq/46-mei_me  
  437    0     1     0 norm    0 100    0     0 N-   - S   0% hd-audio0      
  438    0     1     0 norm    0 100    0     0 N-   - S   0% hd-audio1      
  444    0     1     0 norm    0 100    0     2 N-   - S   0% kmemstick      
  474    0     1     0 norm    0 100    0     2 N-   - S   0% cfg80211       
  476    0     1     0 norm    0 100    0     1 N-   - S   0% rpciod         
  499    0     1     0 norm    0 100    0     1 N-   - S   0% kvm-irqfd-clea 
  510    0     1     0 norm    0 100    0     2 N-   - S   0% kworker/u17:0  
  511    0     1     0 norm    0 100    0     0 N-   - S   0% hci0           
  512    0     1     0 norm    0 100    0     0 N-   - S   0% hci0           
  513    0     1     0 norm    0 100    0     2 N-   - S   0% kworker/u17:1  
  677    0     0     0 norm    0 100    0     0 N-   -    0%                
 1162    0     1     0 norm    0 100    0     0 N-   - S   0% loop0          
 1163    0     1     0 norm    0 100    0     1 N-   - S   0% loop1          
 1164    0     1     0 norm    0 100    0     3 N-   - S   0% kdmflush       
 1175    0     1     0 norm    0 100    0     1 N-   - S   0% bioset         
 1194    0     1     0 norm    0 100    0     0 N-   - S   0% kcopyd         
 1195    0     1     0 norm    0 100    0     0 N-   - S   0% bioset         
 1196    0     1     0 norm    0 100    0     0 N-   - S   0% dm-thin        
 1197    0     1     0 norm    0 100    0     2 N-   - S   0% bioset         
 6290    0     1     0 norm    0 110    0     3 N-   - S   0% krfcommd       
29143    0     1     0 norm    0 120    0     3 N-   - S   0% kworker/3:1    
30245    0     1     0 norm    0 120    0     1 N-   - S   0% kworker/1:1    
30263    0     1     0 norm    0 120    0     0 N-   - S   0% kworker/0:3    
30730    0     1     0 norm    0 100    0     2 N-   - S   0% nfsiod         
30736    0     1     0 norm    0 120    0     2 N-   - S   0% nfsv4.0-svc    
31667    0     1     0 norm    0 120    0     2 N-   - S   0% kworker/2:3    
32428    0     1     0 norm    0 120    0     3 N-   - S   0% kworker/3:0    
32429    0     1     0 norm    0 120    0     3 N-   - S   0% kworker/3:3    
  670    0     0     0 norm    0 120    0     0 N-   -    0%                


ATOP - slick        2015/09/25  11:03:21        --------------        1s elapsed
PRC | sys    0.04s | user   0.02s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       5% | user      5% | irq       0% | idle    382% | wait      8% |
cpu | sys       2% | user      2% | irq       0% | idle     96% | cpu000 w  0% |
cpu | sys       1% | user      2% | irq       0% | idle     97% | cpu003 w  0% |
cpu | sys       1% | user      1% | irq       0% | idle     90% | cpu001 w  8% |
cpu | sys       1% | user      1% | irq       0% | idle     98% | cpu002 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw     1622 | intr     305 |
MEM | tot     3.8G | free  195.8M | cache   1.5G | buff  275.4M | slab  358.1M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.1G | vmlim  15.2G |
DSK |          sda | busy      8% | read       5 | write      0 | avio 16.2 ms |
NET | transport    | tcpi       5 | tcpo       5 | udpi       0 | udpo       0 |
NET | network      | ipi        5 | ipo        4 | ipfrw      0 | deliv      4 |
NET | p2p1      0% | pcki       8 | pcko       5 | si    8 Kbps | so    2 Kbps |
NET | lo      ---- | pcki       2 | pcko       2 | si    1 Kbps | so    1 Kbps |

  PID TRUN TSLPI TSLPU POLI NICE PRI RTPR CPUNR ST EXC S  CPU CMD            
30579    1     0     0 norm    0 120    0     0 --   - R   3% pmdaproc       
 7014    0     1     0 norm    0 120    0     3 --   - S   1% firefox        
  662    0     1     0 norm    0 120    0     0 --   - S   1% pmlogger       
    9    0     1     0 norm    0 120    0     2 --   - S   1% rcuos/0        
30594    0     1     0 norm    0 120    0     0 --   - S   0% perl           
 6354    0     1     0 norm    0 120    0     1 --   - S   0% gnome-shell    
  877    0     1     0 norm    0 120    0     2 --   - S   0% Xorg           
32676    0     1     0 norm    0 120    0     2 --   - S   0% httpd          
30575    0     1     0 norm    0 120    0     1 --   - S   0% pmcd           
30593    0     1     0 norm    0 120    0     2 --   - S   0% pmdalinux      
30609    0     1     0 norm    0 120    0     3 --   - S   0% pmdaapache     
  309    0     1     0 norm    0 120    0     2 --   - S   0% mk.atop.sh     
  677    0     1     0 norm    0 120    0     1 N-   - S   0% pmsleep        
    7    0     1     0 norm    0 120    0     3 --   - S   0% rcu_sched      
   18    0     1     0 norm    0 120    0     0 --   - S   0% rcuos/1        
   25    0     1     0 norm    0 120    0     2 --   - S   0% rcuos/2        
  462    0     0     1 norm    0 120    0     2 --   - D   0% rtsx_usb_ms_1  
12870    0     1     0 norm    0 120    0     0 --   - S   0% kworker/u16:2  
22844    0     1     0 norm    0 120    0     2 --   - S   0% kworker/u16:1  


ATOP - slick        2015/09/25  11:03:22        --------------        1s elapsed
PRC | sys    0.01s | user   0.02s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       2% | user      2% | irq       0% | idle    395% | wait      1% |
cpu | sys       2% | user      2% | irq       0% | idle     96% | cpu000 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu003 w  0% |
cpu | sys       1% | user      0% | irq       0% | idle     99% | cpu001 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw      501 | intr     219 |
MEM | tot     3.8G | free  195.7M | cache   1.5G | buff  275.4M | slab  358.1M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.1G | vmlim  15.2G |
NET | transport    | tcpi       5 | tcpo       6 | udpi       0 | udpo       0 |
NET | p2p1      0% | pcki       3 | pcko       0 | si    1 Kbps | so    0 Kbps |
NET | lo      ---- | pcki       7 | pcko       7 | si    9 Kbps | so    9 Kbps |

  PID TRUN TSLPI TSLPU POLI NICE PRI RTPR CPUNR ST EXC S  CPU CMD            
30579    1     0     0 norm    0 120    0     0 --   - R   2% pmdaproc       
 7014    0     1     0 norm    0 120    0     3 --   - S   1% firefox        
30594    0     1     0 norm    0 120    0     0 --   - S   1% perl           
 6354    0     1     0 norm    0 120    0     2 --   - S   0% gnome-shell    
  877    0     1     0 norm    0 120    0     1 --   - S   0% Xorg           
  662    0     1     0 norm    0 120    0     0 --   - S   0% pmlogger       
30575    0     1     0 norm    0 120    0     2 --   - S   0% pmcd           
30593    0     1     0 norm    0 120    0     1 --   - S   0% pmdalinux      
  309    0     1     0 norm    0 120    0     2 --   - S   0% mk.atop.sh     
    7    0     1     0 norm    0 120    0     2 --   - S   0% rcu_sched      
    9    0     1     0 norm    0 120    0     3 --   - S   0% rcuos/0        
   25    0     1     0 norm    0 120    0     0 --   - S   0% rcuos/2        
  677    0     0     0 norm    0 120    0     0 --   -    0%                
12870    0     1     0 norm    0 120    0     2 --   - S   0% kworker/u16:2  
22844    0     1     0 norm    0 120    0     1 --   - S   0% kworker/u16:1  
=== std err
=== done

Replay with atop-style time window


ATOP - slick        2015/09/25  11:03:19        --------------        1s elapsed
PRC | sys    0.00s | user   0.00s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       0% | user      0% | irq       0% | idle      0% | wait      0% |
CPL | avg1   -1.00 | avg5   -1.00 | avg15  -1.00 | csw        0 | intr       0 |
MEM | tot     0.0M | free    0.0M | cache   0.0M | buff    0.0M | slab    0.0M |
SWP | tot     0.0M | free    0.0M |              | vmcom   0.0M | vmlim   0.0M |
                   *** system and process activity since boot ***
  PID SYSCPU USRCPU  VGROW  RGROW  RDDSK  WRDSK  THR S CPUNR  CPU CMD            
    1  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
    2  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
    3  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
    5  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
    7  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
    8  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
    9  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   10  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   11  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   12  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   13  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   14  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   15  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   17  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   18  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   19  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   20  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   21  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   22  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   24  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   25  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   26  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   27  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   28  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   29  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   31  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   32  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   33  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   34  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   35  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   36  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   37  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   38  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   39  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   40  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   41  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   42  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   43  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   44  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   45  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   46  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   47  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   73  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   74  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   84  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   85  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   86  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   87  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   88  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   89  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   92  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   94  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   95  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   97  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  127  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  215  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  216  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  222  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  235  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  236  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  237  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  309  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  313  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  333  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  341  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  388  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  401  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  437  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  438  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  444  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  462  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  468  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  471  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  474  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  476  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  482  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  483  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  486  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  489  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  492  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  495  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  496  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  499  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  500  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  509  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  510  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  511  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  512  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  513  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  519  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  520  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  530  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  531  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  534  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  538  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  539  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  542  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  548  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  549  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  551  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  552  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  556  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  643  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  647  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  662  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  672  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  677  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  877  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  955  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  956  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  957  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  959  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  972  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  983  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1013  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1162  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1163  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1164  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1175  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1193  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1194  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1195  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1196  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1197  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1236  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1245  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1246  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1247  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1248  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1249  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1352  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1430  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 4507  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 5628  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 5631  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 5756  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 5797  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 5801  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6007  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6014  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6020  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6035  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6066  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6074  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6075  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6140  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6160  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6237  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6241  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6245  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6258  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6265  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6290  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6297  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6299  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6308  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6314  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6317  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6323  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6327  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6340  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6354  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6371  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6378  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6381  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6398  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6410  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6414  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6418  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6420  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6469  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6483  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6525  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6531  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6592  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6596  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6630  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6656  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6682  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6685  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6687  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6688  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6693  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6706  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6971  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 7014  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 7524  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 7529  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 7910  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 7984  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 8026  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 8033  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 8201  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 8209  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 8421  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
12870  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
16569  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
16582  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
16591  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
16672  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
16677  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
16680  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
19036  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
21036  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
21037  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
21038  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
21737  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
21740  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
21741  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
22779  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
22844  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
24248  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
26115  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
28161  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
28162  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
28356  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
29143  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
29334  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
29375  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
29378  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30101  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30245  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30263  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30575  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30578  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30579  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30580  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30581  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30584  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30593  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30594  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30603  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30609  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30611  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30615  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30627  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30628  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30630  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30632  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30636  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30638  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30642  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30730  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30736  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
31667  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32428  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32429  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32671  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32672  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32673  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32674  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32675  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32676  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  670  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                


ATOP - slick        2015/09/25  11:03:20        --------------        1s elapsed
PRC | sys    0.00s | user   0.00s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       0% | user      0% | irq       0% | idle      0% | wait      0% |
CPL | avg1   -1.00 | avg5   -1.00 | avg15  -1.00 | csw        0 | intr       0 |
MEM | tot     3.8G | free    0.0M | cache   0.0M | buff    0.0M | slab    0.0M |
SWP | tot     0.0M | free    0.0M |              | vmcom   0.0M | vmlim   0.0M |

  PID SYSCPU USRCPU  VGROW  RGROW  RDDSK  WRDSK  THR S CPUNR  CPU CMD            
    1  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
    2  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
    3  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
    5  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
    7  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
    8  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
    9  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   10  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   11  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   12  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   13  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   14  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   15  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   17  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   18  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   19  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   20  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   21  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   22  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   24  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   25  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   26  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   27  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   28  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   29  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   31  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   32  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   33  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   34  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   35  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   36  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   37  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   38  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   39  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   40  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   41  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   42  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   43  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   44  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   45  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   46  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   47  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   73  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   74  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   84  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   85  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   86  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   87  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   88  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   89  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   92  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   94  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   95  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
   97  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  127  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  215  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  216  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  222  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  235  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  236  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  237  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  309  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  313  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  333  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  341  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  388  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  401  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  437  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  438  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  444  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  462  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  468  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  471  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  474  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  476  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  482  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  483  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  486  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  489  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  492  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  495  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  496  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  499  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  500  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  509  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  510  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  511  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  512  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  513  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  519  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  520  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  530  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  531  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  534  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  538  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  539  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  542  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  548  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  549  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  551  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  552  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  556  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  643  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  647  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  662  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  672  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  677  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  877  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  955  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  956  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  957  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  959  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  972  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  983  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1013  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1162  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1163  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1164  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1175  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1193  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1194  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1195  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1196  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1197  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1236  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1245  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1246  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1247  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1248  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1249  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1352  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1430  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 4507  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 5628  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 5631  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 5756  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 5797  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 5801  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6007  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6014  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6020  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6035  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6066  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6074  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6075  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6140  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6160  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6237  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6241  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6245  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6258  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6265  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6290  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6297  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6299  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6308  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6314  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6317  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6323  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6327  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6340  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6354  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6371  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6378  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6381  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6398  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6410  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6414  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6418  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6420  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6469  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6483  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6525  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6531  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6592  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6596  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6630  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6656  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6682  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6685  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6687  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6688  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6693  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6706  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 6971  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 7014  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 7524  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 7529  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 7910  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 7984  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 8026  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 8033  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 8201  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 8209  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 8421  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
12870  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
16569  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
16582  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
16591  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
16672  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
16677  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
16680  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
19036  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
21036  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
21037  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
21038  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
21737  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
21740  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
21741  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
22779  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
22844  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
24248  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
26115  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
28161  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
28162  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
28356  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
29143  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
29334  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
29375  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
29378  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30101  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30245  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30263  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30575  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30578  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30579  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30580  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30581  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30584  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30593  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30594  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30603  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30609  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30611  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30615  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30627  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30628  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30630  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30632  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30636  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30638  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30642  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30730  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
30736  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
31667  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32428  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32429  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32671  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32672  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32673  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32674  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32675  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
32676  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
  670  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                


ATOP - slick        2015/09/25  11:03:21        --------------        1s elapsed
PRC | sys   16m20s | user  61m45s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       1% | user      4% | irq       0% | idle    392% | wait      2% |
cpu | sys       0% | user      1% | irq       0% | idle     97% | cpu002 w  1% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu000 w  1% |
cpu | sys       0% | user      1% | irq       0% | idle     98% | cpu001 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     99% | cpu003 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw 64271501 | intr 21748e3 |
MEM | tot     3.8G | free  196.6M | cache   1.5G | buff  275.4M | slab  358.0M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.2G | vmlim  15.2G |
PAG | scan  412940 | steal      0 | stall      0 | swin      96 | swout   2329 |
DSK |          sda | busy      2% | read  161113 | write 163892 | avio 6.23 ms |
NFC | rpc       35 | read       0 | write      0 | retxmit    0 | autref    35 |
NET | transport    | tcpi  263909 | tcpo  284731 | udpi   75245 | udpo   81495 |
NET | network      | ipi   300477 | ipo   328162 | ipfrw      0 | deliv 298080 |
NET | p2p1    ---- | pcki  391124 | pcko  275266 | si 1168 Mbps | so  830 Mbps |
NET | lo      ---- | pcki   60894 | pcko   60894 | si  597 Mbps | so  597 Mbps |
NET | tun0    ---- | pcki    5917 | pcko    6220 | si   17 Mbps | so 4842 Kbps |
WWW | reqs       9 | totKB     17 | byt/rq  1934 | iwork      4 | bwork      1 |

  PID SYSCPU USRCPU  VGROW  RGROW  RDDSK  WRDSK  THR S CPUNR  CPU CMD            
 7014  4m11s 45m01s   1.8G 546.0M 183.7M 991.2M   49 S     3   3% firefox        
  877  5m15s  3m38s 187.0M 28928K     0K     0K    1 S     1   1% Xorg           
  556  3m00s  3m48s   3.5G 185.6M     0K     0K   55 S     2   0% java           
 6354 44.94s  4m28s   2.1G 388.3M 38904K   196K    7 S     2   0% gnome-shell    
 6971 28.27s  1m59s 529.5M 42968K  9016K 57432K    2 S     3   0% xchat          
 1430 18.67s 27.66s 510.9M 23448K     0K     0K    6 S     0   0% polkitd        
21737  4.13s 30.23s 632.2M 32040K  2536K     0K    4 S     0   0% gnome-terminal 
  519  6.53s 17.23s  4364K  1332K     0K     0K    1 S     3   0% rngd           
  957  2.09s 17.03s 482.6M 17104K     0K     0K    7 S     1   0% docker         
 6299  2.16s 15.46s 418.3M  7580K     0K     0K    5 S     2   0% udisksd        
    7 15.60s  0.00s     0K     0K     0K     0K    1 S     1   0% rcu_sched      
  542  3.19s 11.80s 41992K  4124K     0K     0K    2 S     3   0% dbus-daemon    
  495  9.55s  4.50s   1.3G 13372K     0K     0K    4 S     0   0% rsyslogd       
   25 10.01s  0.00s     0K     0K     0K     0K    1 S     3   0% rcuos/2        
    9  9.63s  0.00s     0K     0K     0K     0K    1 S     2   0% rcuos/0        
  643  2.82s  6.71s 433.2M 13696K     0K     0K    4 S     1   0% NetworkManager 
  530  7.69s  1.13s 19140K  2672K     0K     0K    1 S     0   0% irqbalance     
    1  6.63s  1.99s 193.8M  7800K     0K     0K    1 S     2   0% systemd        
 6317  0.79s  5.68s 954.1M 36924K   292K     0K    5 S     2   0% goa-daemon     
16582  4.03s  2.26s 128.5M  4568K     0K     0K    1 S     2   0% sshd           
 6265  1.98s  2.43s   1.3G 37712K  3220K     0K    5 S     1   0% gnome-settings 
   18  4.30s  0.00s     0K     0K     0K     0K    1 S     1   0% rcuos/1        
  959  2.11s  2.05s 307.4M  2460K     0K     0K    6 S     0   0% memcached      
  462  4.00s  0.00s     0K     0K     0K     0K    1 D     0   0% rtsx_usb_ms_1  
   32  3.91s  0.00s     0K     0K     0K     0K    1 S     1   0% rcuos/3        
  313  2.77s  0.60s 136.7M 44052K     0K     0K    1 S     2   0% systemd-journa 
 6531  1.19s  2.12s   1.3G 74108K  1520K   820K    6 S     1   0% evolution-cale 
  235  2.84s  0.00s     0K     0K     0K     0K    1 S     0   0% jbd2/sda7-8    
  237  2.72s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/2:1H   
  548  2.31s  0.27s 123.4M  3188K     0K     0K    1 S     1   0% crond          
16591  0.53s  1.77s 114.4M  5428K 13856K  9968K    1 S     2   0% bash           
 1249  1.97s  0.20s 188.0M  3200K     0K     0K    1 S     0   0% postgres       
30630  0.05s  1.99s 157.8M 13796K     0K     0K    2 S     3   0% pmdarpm        
 6410  0.92s  0.92s 460.1M  9012K     0K     4K    3 S     0   0% ibus-daemon    
21741  0.57s  1.20s 114.5M  5464K 40228K 30800K    1 S     1   0% bash           
  539  1.25s  0.49s 34700K  3032K     0K     0K    1 S     0   0% systemd-logind 
28356  1.04s  0.65s 543.4M  6948K   124K     0K    4 S     3   0% gvfsd-mtp      
 8209  0.77s  0.83s 79704K  7268K     0K     0K    1 S     3   0% vpnc           
  489  1.27s  0.23s 160.8M  2200K     0K     0K    3 S     3   0% rtkit-daemon   
  483  0.39s  0.73s 322.0M 27648K     0K     0K    2 S     0   0% firewalld      
 1248  0.78s  0.30s 329.6M  5904K     0K     0K    1 S     2   0% postgres       
 1013  1.02s  0.05s 328.8M 18436K     0K     0K    1 S     0   0% postgres       
   22  1.05s  0.00s     0K     0K     0K     0K    1 S     2   0% ksoftirqd/2    
12870  1.02s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/u16:2  
  486  0.30s  0.70s 361.0M  6924K     0K     0K    3 S     3   0% accounts-daemo 
 6323  0.17s  0.80s 305.8M 11984K   228K     8K    3 S     2   0% mission-contro 
 6258  0.39s  0.53s 555.6M 10844K   632K     8K    4 S     3   0% pulseaudio     
 1246  0.68s  0.24s 328.8M  4472K     0K     0K    1 S     2   0% postgres       
 6075  0.31s  0.60s 41808K  3416K   128K     0K    2 S     1   0% dbus-daemon    
 1247  0.70s  0.19s 328.8M  3140K     0K     0K    1 S     0   0% postgres       
   14  0.84s  0.00s     0K     0K     0K     0K    1 S     1   0% migration/1    
  520  0.60s  0.20s 44068K  2292K     0K     0K    1 S     0   0% rpcbind        
 6007  0.40s  0.37s 360.9M 10740K     0K     0K    3 S     3   0% gdm-session-wo 
   74  0.77s  0.00s     0K     0K     0K     0K    1 S     2   0% fsnotify_mark  
 5756  0.32s  0.44s 433.8M 11904K     0K     0K    3 S     0   0% upowerd        
 6035  0.09s  0.65s 908.7M  7672K     0K     0K   10 S     2   0% gnome-keyring- 
    3  0.71s  0.00s     0K     0K     0K     0K    1 S     0   0% ksoftirqd/0    
 6706  0.18s  0.49s 683.5M 25080K   588K     0K    3 S     0   0% vino-server    
 6066  0.28s  0.37s 562.5M 12108K  1800K    32K    4 S     1   0% gnome-session  
  341  0.17s  0.48s 46508K  4836K     0K     0K    1 S     3   0% systemd-udevd  
   73  0.63s  0.00s     0K     0K     0K     0K    1 S     0   0% kswapd0        
 6656  0.11s  0.49s 495.9M 19836K 12504K   888K    8 S     2   0% tracker-store  
   12  0.56s  0.00s     0K     0K     0K     0K    1 S     0   0% watchdog/0     
   13  0.56s  0.00s     0K     0K     0K     0K    1 S     1   0% watchdog/1     
  538  0.29s  0.26s 28080K  2848K     0K     0K    1 S     2   0% avahi-daemon   
   15  0.53s  0.00s     0K     0K     0K     0K    1 S     1   0% ksoftirqd/1    
   11  0.51s  0.00s     0K     0K     0K     0K    1 S     0   0% migration/0    
 6414  0.08s  0.41s   1.3G 27352K  8852K     0K    3 S     3   0% evolution-sour 
   20  0.49s  0.00s     0K     0K     0K     0K    1 S     2   0% watchdog/2     
 6483  0.12s  0.35s 859.0M 32004K  2728K     0K    5 S     0   0% evolution-alar 
 6398  0.08s  0.39s 759.6M 25700K  2008K     0K    5 S     3   0% gnome-shell-ca 
 6245  0.17s  0.30s 126.6M  6120K     0K     0K    2 S     3   0% at-spi2-regist 
   28  0.45s  0.00s     0K     0K     0K     0K    1 S     3   0% migration/3    
22844  0.45s  0.00s     0K     0K     0K     0K    1 S     0   0% kworker/u16:1  
   21  0.44s  0.00s     0K     0K     0K     0K    1 S     2   0% migration/2    
  468  0.36s  0.06s 80216K  1468K     0K     0K    2 S     1   0% audispd        
30594  0.05s  0.35s 162.2M  7780K     0K     0K    1 S     0   0% perl           
 6297  0.12s  0.27s 539.9M  9468K   280K     0K    3 S     1   0% gvfs-udisks2-v 
  956  0.15s  0.23s 495.6M 25180K     0K     0K   11 S     2   0% libvirtd       
  388  0.29s  0.09s 51192K  3032K     0K     0K    2 S     2   0% auditd         
   27  0.38s  0.00s     0K     0K     0K     0K    1 S     3   0% watchdog/3     
 1352  0.28s  0.09s 245.2M 11944K     0K     0K    2 S     2   0% pmwebd         
   29  0.32s  0.00s     0K     0K     0K     0K    1 S     3   0% ksoftirqd/3    
24248  0.28s  0.00s     0K     0K     0K     0K    1 S     1   0% kworker/1:0    
 6596  0.03s  0.24s 361.5M 20636K   648K     0K    2 S     1   0% applet.py      
 6592  0.08s  0.18s 670.6M 14176K  5568K     8K    4 S     2   0% tracker-miner- 
21038  0.07s  0.19s 114.2M  5240K     0K     0K    1 S     0   0% bash           
30636  0.16s  0.08s 64288K  4488K     0K     0K    2 S     2   0% pmdaperfevent  
 5797  0.05s  0.18s 388.6M 11964K     0K     0K    3 S     0   0% colord         
22779  0.10s  0.13s 146.2M  4796K   124K     0K    1 S     2   0% gconfd-2       
  509  0.12s  0.09s 204.7M  7456K     0K     0K    1 S     0   0% abrt-watch-log 
29378  0.05s  0.15s 114.5M  5380K  1528K     4K    1 S     2   0% bash           
  492  0.18s  0.02s 100.3M  3156K     0K     0K    1 S     3   0% chronyd        
 6682  0.04s  0.15s 447.6M 22784K  1136K     0K    2 S     2   0% abrt-applet    
19036  0.18s  0.00s     0K     0K     0K     0K    1 S     0   0% kworker/0:2    
 4507  0.04s  0.11s 114.4M  5288K 148.6M 28628K    1 S     0   0% bash           
30575  0.10s  0.05s 131.8M  4144K     0K     0K    2 S     2   0% pmcd           
30632  0.02s  0.12s 218.8M 14576K     0K     0K    1 S     0   0% python3        
 6688  0.04s  0.10s 476.2M  7712K   496K     0K    3 S     2   0% deja-dup-monit 
29334  0.12s  0.02s 128.3M  7180K     0K     0K    1 S     0   0% sshd           
16672  0.11s  0.02s 128.3M  7304K     0K     0K    1 S     1   0% sshd           
16569  0.11s  0.02s 128.3M  7280K     0K     0K    1 S     2   0% sshd           
16677  0.10s  0.03s 128.5M  4276K     0K     0K    1 S     3   0% sshd           
16680  0.03s  0.09s 114.3M  5332K    36K     0K    1 S     0   0% bash           
30638  0.00s  0.11s 221.6M 15660K     0K     0K    1 S     0   0% python3        
 7984  0.07s  0.04s 80508K  6024K   704K     0K    1 S     3   0% ssh            
 6371  0.09s  0.01s 184.6M  7652K     0K     0K    1 S     2   0% cupsd          
 8421  0.02s  0.08s 114.4M  5364K 19668K     4K    1 S     0   0% bash           
    2  0.10s  0.00s     0K     0K     0K     0K    1 S     2   0% kthreadd       
30615  0.02s  0.07s 177.4M 13240K     0K     0K    1 S     0   0% perl           
 6381  0.02s  0.07s 176.5M  4728K     0K   576K    3 S     2   0% dconf-service  
 6241  0.04s  0.05s 41048K  3172K     0K     0K    2 S     2   0% dbus-daemon    
26115  0.09s  0.00s     0K     0K     0K     0K    1 S     3   0% kworker/3:2    
30579  0.06s  0.02s 53324K  4324K     0K     0K    1 R     0   0% pmdaproc       
  471  0.01s  0.07s 26212K  2160K     0K     0K    1 S     3   0% sedispatch     
30628  0.01s  0.06s 170.9M 10648K     0K     0K    1 S     1   0% perl           
 7910  0.01s  0.06s 114.2M  4948K   132K     0K    1 S     1   0% bash           
 6014  0.05s  0.02s 44560K  4192K    24K     0K    1 S     3   0% systemd        
  534  0.04s  0.03s 26564K  3812K     0K     0K    1 S     1   0% smartd         
30603  0.01s  0.05s 171.5M 11164K     0K     0K    1 S     3   0% perl           
30627  0.02s  0.04s 170.6M 10472K     0K     0K    1 S     2   0% perl           
32671  0.05s  0.01s 206.7M  7116K     0K     0K    1 S     0   0% httpd          
 6525  0.01s  0.05s 234.2M  6680K    96K   628K    2 S     2   0% gvfsd-metadata 
 6140  0.01s  0.05s 306.6M  6448K   776K     0K    2 S     0   0% gvfsd          
 7524  0.04s  0.02s 44564K  4240K     0K     0K    1 S     2   0% systemd        
 8026  0.04s  0.02s 44564K  4232K     0K     0K    1 S     3   0% systemd        
 5628  0.04s  0.02s 44556K  4204K     0K     0K    1 S     0   0% systemd        
  127  0.06s  0.00s     0K     0K     0K     0K    1 S     1   0% kauditd        
  500  0.03s  0.02s 207.1M  8656K     0K     0K    1 S     0   0% abrtd          
28161  0.00s  0.05s 148.5M  7980K     0K    16K    1 S     1   0% vim            
  647  0.02s  0.03s 373.8M  6928K     0K     0K    3 S     0   0% gdm-simple-sla 
29375  0.03s  0.01s 128.3M  4068K     0K     0K    1 S     3   0% sshd           
  662  0.03s  0.01s 50476K  3800K     0K   152K    1 S     0   0% pmlogger       
30581  0.04s  0.00s 123.3M  3596K     0K     0K    2 S     1   0% pmdashping     
 1245  0.04s  0.00s 328.8M  3140K     0K     0K    1 S     2   0% postgres       
  482  0.03s  0.01s 16776K  2608K     0K     0K    1 S     0   0% alsactl        
  222  0.04s  0.00s     0K     0K     0K     0K    1 S     1   0% kworker/1:1H   
30101  0.04s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/2:1    
 1193  0.02s  0.01s  99.8M 19160K     0K     0K    1 S     3   0% dhclient       
  496  0.02s  0.01s 318.9M  7048K     0K     0K    3 S     1   0% ModemManager   
 6327  0.01s  0.02s 310.3M  6964K   112K     0K    2 S     1   0% gvfs-mtp-volum 
  551  0.02s  0.01s 292.1M  5744K     0K     0K    3 S     3   0% gdm            
 6630  0.00s  0.02s 288.0M 16540K    76K     0K    1 S     2   0% seapplet       
 6420  0.00s  0.02s 427.6M 15116K     0K     0K    3 S     3   0% ibus-x11       
 6308  0.00s  0.02s 430.3M 10232K   116K     0K    3 S     2   0% gvfs-afc-volum 
 6340  0.00s  0.02s 316.9M  6592K   572K     0K    2 S     2   0% gvfs-gphoto2-v 
 6314  0.00s  0.02s 302.1M  6332K   116K     0K    2 S     2   0% gvfs-goa-volum 
  972  0.01s  0.01s 82832K  5960K     0K     0K    1 S     1   0% sshd           
30593  0.02s  0.00s 50652K  3728K     0K     0K    1 S     1   0% pmdalinux      
 5801  0.02s  0.00s 165.5M  3000K     0K     0K    3 S     3   0% pcscd          
 6469  0.00s  0.01s 312.5M  7080K     0K     0K    3 S     1   0% ibus-engine-si 
21036  0.01s  0.00s 216.5M  6792K     0K     0K    1 S     1   0% sudo           
 6160  0.00s  0.01s 353.5M  6248K   340K     0K    5 S     2   0% gvfsd-fuse     
  552  0.01s  0.00s 30228K  3880K     0K     0K    1 S     1   0% bluetoothd     
30609  0.01s  0.00s 52536K  3732K     0K     0K    1 S     2   0% pmdaapache     
  309  0.00s  0.01s 110.6M  3056K   138K     0K    1 S     2   0% mk.atop.sh     
  983  0.00s  0.01s 44492K  3012K     0K     0K    1 S     2   0% rpc.statd      
  549  0.01s  0.00s 25944K  2264K     0K     0K    1 S     0   0% atd            
  216  0.01s  0.00s     0K     0K     0K     0K    1 S     0   0% kworker/0:1H   
 6378  0.00s  0.00s 501.9M  9716K    52K     0K    2 S     3   0% gsd-printer    
 6687  0.00s  0.00s 294.9M  8948K   244K     0K    3 S     3   0% telepathy-logg 
  531  0.00s  0.00s 204.7M  7388K     0K     0K    1 S     3   0% abrt-watch-log 
 6418  0.00s  0.00s 384.4M  7028K     8K     0K    4 S     0   0% ibus-dconf     
 6693  0.00s  0.00s 378.6M  6104K   168K     0K    2 S     3   0% gvfsd-burn     
 8201  0.00s  0.00s 244.9M  5884K     0K     0K    2 S     3   0% nm-vpnc-servic 
32672  0.00s  0.00s 206.9M  5768K     0K     0K    1 S     2   0% httpd          
21037  0.00s  0.00s 195.7M  5616K     0K     0K    1 S     2   0% su             
 6237  0.00s  0.00s 332.0M  5412K     0K     0K    4 S     0   0% at-spi-bus-lau 
32673  0.00s  0.00s 206.9M  5328K     0K     0K    1 S     0   0% httpd          
32675  0.00s  0.00s 206.9M  5328K     0K     0K    1 S     3   0% httpd          
32674  0.00s  0.00s 206.9M  5200K     0K     0K    1 S     0   0% httpd          
32676  0.00s  0.00s 206.9M  5200K     0K     0K    1 S     0   0% httpd          
  333  0.00s  0.00s 104.4M  4372K     0K     0K    1 S     0   0% lvmetad        
30642  0.00s  0.00s 52528K  3656K     0K     0K    1 S     3   0% pmdasimple     
30584  0.00s  0.00s 52588K  3644K     0K     0K    1 S     1   0% pmdasample     
30611  0.00s  0.00s 52528K  3588K     0K     0K    1 S     0   0% pmdamounts     
30578  0.00s  0.00s 50456K  3424K     0K     0K    1 S     0   0% pmdaroot       
30580  0.00s  0.00s 50456K  3408K     0K     0K    1 S     2   0% pmdaxfs        
 1236  0.00s  0.00s 187.9M  3064K     0K     0K    1 S     2   0% postgres       
 8033  0.00s  0.00s 74424K  2872K     0K     0K    1 S     3   0% (sd-pam)       
 7529  0.00s  0.00s 74424K  2868K     0K     0K    1 S     3   0% (sd-pam)       
 6020  0.00s  0.00s 74424K  2836K     0K     0K    1 S     0   0% (sd-pam)       
 5631  0.00s  0.00s 74424K  2820K     0K     0K    1 S     0   0% (sd-pam)       
 6685  0.00s  0.00s 23372K  2812K   440K     0K    1 S     2   0% obexd          
28162  0.00s  0.00s 11544K  1932K     0K     0K    1 S     1   0% cscope         
 6074  0.00s  0.00s 13936K  1872K     0K     0K    1 S     3   0% dbus-launch    
  955  0.00s  0.00s  7000K  1800K     0K     0K    1 S     3   0% mcelog         
21740  0.00s  0.00s  8448K  1532K     0K     0K    1 S     3   0% gnome-pty-help 
  672  0.00s  0.00s 27952K   232K     0K     0K    1 S     0   0% avahi-daemon   
    5  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% kworker/0:0H   
    8  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcu_bh         
   10  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcuob/0        
   17  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% kworker/1:0H   
   19  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcuob/1        
   24  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/2:0H   
   26  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcuob/2        
   31  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kworker/3:0H   
   33  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcuob/3        
   34  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% khelper        
   35  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kdevtmpfs      
   36  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% netns          
   37  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% perf           
   38  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% writeback      
   39  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% ksmd           
   40  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% khugepaged     
   41  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% crypto         
   42  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kintegrityd    
   43  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% bioset         
   44  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kblockd        
   45  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% ata_sff        
   46  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% md             
   47  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% devfreq_wq     
   84  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% kthrotld       
   85  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% acpi_thermal_p 
   86  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% scsi_eh_0      
   87  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% scsi_tmf_0     
   88  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% scsi_eh_1      
   89  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% scsi_tmf_1     
   92  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% kpsmoused      
   94  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% dm_bufio_cache 
   95  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% ipv6_addrconf  
   97  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% deferwq        
  215  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kworker/3:1H   
  236  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% ext4-rsv-conve 
  401  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% irq/46-mei_me  
  437  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% hd-audio0      
  438  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% hd-audio1      
  444  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kmemstick      
  474  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% cfg80211       
  476  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% rpciod         
  499  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% kvm-irqfd-clea 
  510  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/u17:0  
  511  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% hci0           
  512  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% hci0           
  513  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/u17:1  
  677  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1162  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% loop0          
 1163  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% loop1          
 1164  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kdmflush       
 1175  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% bioset         
 1194  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% kcopyd         
 1195  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% bioset         
 1196  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% dm-thin        
 1197  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% bioset         
 6290  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% krfcommd       
29143  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kworker/3:1    
30245  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% kworker/1:1    
30263  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% kworker/0:3    
30730  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% nfsiod         
30736  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% nfsv4.0-svc    
31667  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/2:3    
32428  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kworker/3:0    
32429  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% kworker/3:3    
  670  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                


ATOP - slick        2015/09/25  11:03:22        --------------        1s elapsed
PRC | sys    0.01s | user   0.03s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       2% | user      2% | irq       0% | idle    396% | wait      0% |
cpu | sys       2% | user      2% | irq       0% | idle     96% | cpu000 w  0% |
cpu | sys       1% | user      0% | irq       0% | idle     99% | cpu001 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     99% | cpu003 w  0% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw      537 | intr     220 |
MEM | tot     3.8G | free  195.8M | cache   1.5G | buff  275.4M | slab  358.1M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.1G | vmlim  15.2G |
NET | transport    | tcpi       5 | tcpo       6 | udpi       0 | udpo       0 |
NET | lo      ---- | pcki       8 | pcko       8 | si    9 Kbps | so    9 Kbps |
NET | p2p1    ---- | pcki       3 | pcko       0 | si    1 Kbps | so    0 Kbps |

  PID SYSCPU USRCPU  VGROW  RGROW  RDDSK  WRDSK  THR S CPUNR  CPU CMD            
30579  0.01s  0.01s    92K   300K     0K     0K    1 R     0   2% pmdaproc       
 7014  0.00s  0.01s     0K     0K     0K     0K   49 S     3   1% firefox        
30594  0.00s  0.01s     0K     0K     0K     0K    1 S     0   1% perl           
 6354  0.00s  0.00s     0K     0K     0K     0K    7 S     1   0% gnome-shell    
  877  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% Xorg           
32676  0.00s  0.00s     0K   536K     0K     0K    1 S     2   0% httpd          
30575  0.00s  0.00s   232K   128K     0K     0K    2 S     1   0% pmcd           
  662  0.00s  0.00s   640K   376K     0K   132K    1 S     0   0% pmlogger       
30593  0.00s  0.00s     0K    24K     0K     0K    1 S     2   0% pmdalinux      
30609  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% pmdaapache     
  309  0.00s  0.00s     0K     0K     1K     0K    1 S     2   0% mk.atop.sh     
  677  0.00s  0.00s 48148K  2212K     0K     0K    1 S     1   0% pmsleep        
    7  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% rcu_sched      
   18  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcuos/1        
   25  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% rcuos/2        
  462  0.00s  0.00s     0K     0K     0K     0K    1 D     2   0% rtsx_usb_ms_1  
12870  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% kworker/u16:2  
22844  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/u16:1  


ATOP - slick        2015/09/25  11:03:23        --------------        1s elapsed
PRC | sys    0.02s | user   0.03s | #proc    254 | #zombie    0 | no  procacct |
CPU | sys       3% | user      5% | irq       0% | idle    384% | wait      9% |
cpu | sys       2% | user      2% | irq       0% | idle     96% | cpu000 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     91% | cpu003 w  8% |
CPL | avg1    1.04 | avg5    1.06 | avg15   1.06 | csw      577 | intr     248 |
MEM | tot     3.8G | free  195.7M | cache   1.5G | buff  275.4M | slab  358.1M |
SWP | tot    13.3G | free   13.3G |              | vmcom   4.1G | vmlim  15.2G |
DSK |          sda | busy      8% | read       0 | write      2 | avio 41.5 ms |
NET | transport    | tcpi       4 | tcpo       3 | udpi       0 | udpo       0 |
NET | lo      ---- | pcki       1 | pcko       1 | si    0 Kbps | so    0 Kbps |
NET | p2p1    ---- | pcki       3 | pcko       0 | si    1 Kbps | so    0 Kbps |

  PID SYSCPU USRCPU  VGROW  RGROW  RDDSK  WRDSK  THR S CPUNR  CPU CMD            
30579  0.02s  0.01s     4K     4K     0K     0K    1 R     0   5% pmdaproc       
 7014  0.00s  0.01s     0K     0K     0K     0K   49 S     3   2% firefox        
 6354  0.00s  0.00s     0K     0K     0K     0K    7 S     2   0% gnome-shell    
  877  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% Xorg           
32672  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% httpd          
  662  0.00s  0.00s   224K   160K     0K   114K    1 S     0   0% pmlogger       
30575  0.00s  0.00s     0K     0K     0K     0K    2 S     2   0% pmcd           
30593  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% pmdalinux      
30609  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% pmdaapache     
  309  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% mk.atop.sh     
    7  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% rcu_sched      
    9  0.00s  0.00s     0K     0K     0K     0K    1 S     3   0% rcuos/0        
   25  0.00s  0.00s     0K     0K     0K     0K    1 S     0   0% rcuos/2        
  677  0.00s  0.00s -47.0M -2212K     0K     0K    0      0   0%                
12870  0.00s  0.00s     0K     0K     0K     0K    1 S     2   0% kworker/u16:2  
22844  0.00s  0.00s     0K     0K     0K     0K    1 S     1   0% kworker/u16:1  
Replay with atop hotproc support


ATOP - shard        2017/09/25  13:23:03        --------------        1s elapsed
PRC | sys    0.00s | user   0.00s | #proc     11 | #zombie    0 | no  procacct |
CPU | sys       0% | user      0% | irq       0% | idle      0% | wait      0% |
CPL | avg1   -1.00 | avg5   -1.00 | avg15  -1.00 | csw        0 | intr       0 |
MEM | tot     0.0M | free    0.0M | cache   0.0M | buff    0.0M | slab    0.0M |
SWP | tot     0.0M | free    0.0M |              | vmcom   0.0M | vmlim   0.0M |
                   *** system and process activity since boot ***
  PID SYSCPU USRCPU  VGROW  RGROW  RDDSK  WRDSK  THR S CPUNR  CPU CMD            
 1248  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1282  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1299  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
 1300  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
18831  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
19203  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
19204  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
19206  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
19214  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
19238  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                
19332  0.00s  0.00s     0K     0K     0K     0K    0      0   0%                


ATOP - shard        2017/09/25  13:23:04        --------------        1s elapsed
PRC | sys    1.33s | user   0.63s | #proc     11 | #zombie    0 | no  procacct |
CPU | sys       1% | user      5% | irq       1% | idle    793% | wait      0% |
cpu | sys       0% | user      1% | irq       0% | idle     99% | cpu000 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     99% | cpu006 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     99% | cpu004 w  0% |
cpu | sys       0% | user      1% | irq       0% | idle     99% | cpu002 w  0% |
cpu | sys       0% | user      0% | irq       0% | idle     99% | cpu003 w  0% |
cpu | sys       0% | user      0% | irq       0% | idle     99% | cpu001 w  0% |
cpu | sys       0% | user      0% | irq       0% | idle     99% | cpu005 w  0% |
cpu | sys       0% | user      0% | irq       0% | idle     99% | cpu007 w  0% |
CPL | avg1    0.14 | avg5    0.27 | avg15   0.28 | csw 345710e3 | intr 93602e3 |
MEM | tot    15.3G | free    6.8G | cache   3.5G | buff  563.0M | slab  568.3M |
SWP | tot     7.7G | free    7.7G |              | vmcom  13.3G | vmlim  15.4G |
LVM | a_shard-root | busy      0% | read   89045 | write 385359 | avio 0.00 ms |
LVM | a_shard-swap | busy      0% | read     114 | write      0 | avio 0.00 ms |
LVM | a_shard-home | busy      0% | read   16237 | write 533251 | avio 0.00 ms |
DSK |          sda | busy      0% | read  104096 | write 621081 | avio 0.63 ms |
NET | transport    | tcpi 3423243 | tcpo 3403917 | udpi  307137 | udpo  251753 |
NET | network      | ipi  3717042 | ipo  3655098 | ipfrw      0 | deliv 3696e3 |
NET | enp0s25 ---- | pcki 1335281 | pcko 1195715 | si 7398 Mbps | so 1078 Mbps |
NET | lo      ---- | pcki 2341058 | pcko 2341058 | si 2292 Mbps | so 2292 Mbps |
NET | tun0    ---- | pcki  100271 | pcko  123558 | si  405 Mbps | so   73 Mbps |
NET | wlp3s0  ---- | pcki   91166 | pcko    6240 | si  105 Mbps | so 8253 Kbps |
WWW | reqs      21 | totKB     20 | byt/rq   975 | iwork      5 | bwork      1 |

  PID SYSCPU USRCPU  VGROW  RGROW  RDDSK  WRDSK  THR S CPUNR  CPU CMD            
 1248  0.43s  0.29s 185.3M  5964K   624K    24K    2 S     7   0% pmcd           
19332  0.16s  0.06s 314.8M  8656K     0K     4K    6 S     1   0% httpd          
19203  0.16s  0.05s 314.8M  8656K     4K    12K    6 S     0   0% httpd          
19206  0.15s  0.06s 314.8M  8656K     0K     4K    6 S     2   0% httpd          
19214  0.16s  0.05s 314.8M  8656K     0K     0K    6 S     3   0% httpd          
19238  0.15s  0.06s 314.8M  8656K     0K     8K    6 S     2   0% httpd          
19204  0.10s  0.06s 506.8M  8660K     0K     4K   22 R     4   0% httpd          
18831  0.01s  0.00s 105.7M  5712K    20K     4K    1 S     2   0% pmdaapache     
 1282  0.01s  0.00s 103.7M  5560K   216K     4K    1 S     4   0% pmdasample     
 1300  0.00s  0.00s 103.6M  5488K    60K     4K    1 S     1   0% pmdasimple     
 1299  0.00s  0.00s 103.6M  5452K    28K     4K    1 S     0   0% pmdamounts     
Checking sample count and interval
OK
Recording an archive using atop
Replaying an archive using atop
done