Hi dear Andrew What we were talked before was about "Worker Thread Deadlock".
I tried to test scenario as you explained and started with 1M entry and after that I doubled it at each run. When I test with 4M entry size, I logged two things: 1. ps aux | grep vpp 2. First 5 lines of "vppctl show acl-plugin session" At first, I've run VPP and configured it with script that I attached to previous email. After that I run my logger script. Finally I run Trex with this command: ./t-rex-64 --cfg cfg/trex_config.yaml -f cap2/sfr.yaml -m 50 -c 3 -d 10000 -p After tracing VPP logs I found some signs of leakage. I mean in the logs of VPP, RSS (6th parameter in ps aux command) is increasing continuously (sometimes more and sometimes less) but on the other side, Trex Total-Rx is decreasing at the same time. After about 3000 seconds, I stopped Trex and wait until session table being cleared. But no change in RSS happens. Then, I run Trex again without any change and again I saw the increase of RSS while the Trex Total-Rx is decreasing. This is my ram status when vpp is stop: root@debian-hp:~# free -m total used free shared buffers cached Mem: 129135 3414 125721 12 99 591 -/+ buffers/cache: 2723 126412 Swap: 2518 0 2518 I also attached my logs to this email. This logs are gathered every 20 seconds. In 40M entry size I saw this behavior too, but It happens much faster than 4M entry size. I also have a question about your phrase of "Using this method you can arrive to the number of maximum connections that your memory configuration can support". Is there any formula to config init.conf in an efficient way? Because VPP didn't return any error about misconfiguration. Thanks, Sincerely ________________________________ From: Andrew 👽 Yourtchenko <ayour...@gmail.com> Sent: Sunday, August 19, 2018 8:28 AM To: Rubina Bianchi Cc: vpp-dev@lists.fd.io Subject: Re: [vpp-dev] VPP Memory usage Dear Rubina, The ACL plugin does all the necessary allocations at startup for all data structures except the connection bihash. You would need to check the current number of the connections as your test progresses. I believe we had a communication a while ago regarding the gradual growth of background memory usage within the bihash data structure as you churn through random addresses. Since then there were some changes aimed to address this. Please verify what does the current total session count look like in “show acl-plugin sessions” as your test progresses - based on what you described I think it continuously increases. If the bihash memory requirement for active connections goes above of what is available from the OS, then there is no feedback to the user code (acl plugin) other than a full crash. The only safeguard I could come up against this situation is the maximum connection count, which is checked before attempting to insert an entry into the bihash. Your current value is 40 million which is quite a lot, while the hash table heap size is 17 gigabytes. This might not be enough to hold all the 40 million entries as the churn progresses and you need to create more buckets. I suggest you keep all the other parameters as they are and start with the value of maximum connections of 1 million and rerun the test, and monitor the memory usage within the ACL plugin heap (“show acl-plugin memory”) - it should stabilize over time at some value and there should be no crash. The exact usage will depend on the distribution of session entries over bucket (note that in the worst case you may have one entry per bucket which may give a lot of overhead). Note that value. If you stop the traffic, as the session count goes down to zero, the memory should get released. Then double the max conn count and recheck the behavior same as above - the usage probably would be about double of the previous one. Using this method you can arrive to the number of maximum connections that your memory configuration can support, and get a gauge of how much memory you would need for the target amount of connections. If in the initial iteration test you observe the memory usage never stabilizing or if you see that the memory is not being released as the connection count goes down to zero, then it would be a bug, which we will need to further troubleshoot - though from your description so far it seems more a case of tuning the parameters. So please apply the method above and let me know how it goes! Thanks! --a On 19 Aug 2018, at 07:26, Rubina Bianchi <r_bian...@outlook.com<mailto:r_bian...@outlook.com>> wrote: Hi dear VPP I configured vpp stable/1807 and added permit+reflect acl on input and output of my network interfaces. I configured vpp with 9 cpu (1 main and 8 worker cpu). My init.conf is: vppctl> set acl-plugin session table max-entries 40000000 set acl-plugin session table hash-table-buckets 1000000 set acl-plugin session table hash-table-memory 17179869184 set acl-plugin session timeout udp idle 20 set acl-plugin session timeout tcp idle 120 set acl-plugin session timeout tcp transient 30 vpp_api_test> acl_add_replace permit acl_add_replace permit+reflect acl_interface_add_del TenGigabitEthernet3/0/0 add output acl 1 acl_interface_add_del TenGigabitEthernet3/0/1 add output acl 1 acl_interface_add_del TenGigabitEthernet3/0/0 add input acl 1 acl_interface_add_del TenGigabitEthernet3/0/1 add input acl 1 exec set interface l2 bridge TenGigabitEthernet3/0/0 1 exec set interface l2 bridge TenGigabitEthernet3/0/1 1 exec set int state TenGigabitEthernet3/0/0 up exec set int state TenGigabitEthernet3/0/1 up My startup.conf is pasted in this link: https://paste.ubuntu.com/p/MhQDyqF6Xd/ I used Trex as traffic generator as following: ./t-rex-64 --cfg cfg/trex_config.yaml -f cap2/sfr.yaml -m 50 -c 3 -d 3600 -p During execution of my test, Total-rx continuously decreased and after a while, it reached to 0. I checked vpp status and it got SIGKILL signal from OS. I monitored vpp memory and it was increasing until it crashed. Does acl_plugin session management have any memory leak problem? Regards, Rubina -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#10213): https://lists.fd.io/g/vpp-dev/message/10213 Mute This Topic: https://lists.fd.io/mt/24729023/675608 Group Owner: vpp-dev+ow...@lists.fd.io<mailto:vpp-dev+ow...@lists.fd.io> Unsubscribe: https://lists.fd.io/g/vpp-dev/unsub [ayour...@gmail.com<mailto:ayour...@gmail.com>] -=-=-=-=-=-=-=-=-=-=-=-
root 14385 733 0.1 191107096 196336 ? RLsl 16:07 3:03 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 0 - del 0 = 0 Sessions active: add 0 - deact 0 = 0 Sessions being purged: deact 0 - del 0 = 0 now: 52431466724256 clocks per second: 2200000000 root 14385 763 0.9 191172632 1233468 ? SLsl 16:07 5:43 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 4362111 - del 362124 = 3999987 Sessions active: add 4362111 - deact 362138 = 3999973 Sessions being purged: deact 362138 - del 362124 = 14 now: 52475483636096 clocks per second: 2200000000 root 14385 775 1.2 191172632 1659564 ? SLsl 16:07 8:24 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 11784740 - del 7784749 = 3999991 Sessions active: add 11784740 - deact 7784785 = 3999955 Sessions being purged: deact 7784785 - del 7784749 = 36 now: 52520077988539 clocks per second: 2200000000 root 14385 782 1.4 191172632 1884492 ? SLsl 16:07 11:05 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 17784174 - del 13784183 = 3999991 Sessions active: add 17784174 - deact 13784213 = 3999961 Sessions being purged: deact 13784213 - del 13784183 = 30 now: 52564034882521 clocks per second: 2200000000 root 14385 786 1.5 191172632 2037348 ? SLsl 16:07 13:46 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 23355179 - del 19355187 = 3999992 Sessions active: add 23355179 - deact 19355234 = 3999945 Sessions being purged: deact 19355234 - del 19355187 = 47 now: 52607991648489 clocks per second: 2200000000 root 14385 789 1.6 191172632 2164332 ? SLsl 16:07 16:27 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 28847273 - del 24847283 = 3999990 Sessions active: add 28847273 - deact 24847326 = 3999947 Sessions being purged: deact 24847326 - del 24847283 = 43 now: 52651948652940 clocks per second: 2200000000 root 14385 791 1.7 191172632 2278908 ? SLsl 16:07 19:08 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 34315487 - del 30315496 = 3999991 Sessions active: add 34315487 - deact 30315528 = 3999959 Sessions being purged: deact 30315528 - del 30315496 = 32 now: 52695905459680 clocks per second: 2200000000 root 14385 793 1.8 191172632 2382132 ? SLsl 16:07 21:49 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 39762614 - del 35762623 = 3999991 Sessions active: add 39762614 - deact 35762667 = 3999947 Sessions being purged: deact 35762667 - del 35762623 = 44 now: 52739862632531 clocks per second: 2200000000 root 14385 794 1.8 191172632 2475324 ? SLsl 16:07 24:30 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 45171145 - del 41171154 = 3999991 Sessions active: add 45171145 - deact 41171199 = 3999946 Sessions being purged: deact 41171199 - del 41171154 = 45 now: 52783819679172 clocks per second: 2200000000 root 14385 795 1.9 191172632 2563236 ? SLsl 16:07 27:11 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 50538967 - del 46538987 = 3999980 Sessions active: add 50538967 - deact 46539005 = 3999962 Sessions being purged: deact 46539005 - del 46538987 = 18 now: 52827776279580 clocks per second: 2200000000 root 14385 796 1.9 191172632 2640852 ? SLsl 16:07 29:52 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 55868173 - del 51868201 = 3999972 Sessions active: add 55868173 - deact 51868241 = 3999932 Sessions being purged: deact 51868241 - del 51868201 = 40 now: 52871733078425 clocks per second: 2200000000 root 14385 797 2.0 191172632 2712396 ? SLsl 16:07 32:33 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 61150126 - del 57150135 = 3999991 Sessions active: add 61150126 - deact 57150157 = 3999969 Sessions being purged: deact 57150157 - del 57150135 = 22 now: 52915689964142 clocks per second: 2200000000 root 14385 797 2.1 191172632 2778924 ? SLsl 16:07 35:14 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 66419042 - del 62419051 = 3999991 Sessions active: add 66419042 - deact 62419102 = 3999940 Sessions being purged: deact 62419102 - del 62419051 = 51 now: 52959647469118 clocks per second: 2200000000 root 14385 795 2.1 191172632 2839116 ? SLsl 16:07 37:55 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 71671837 - del 67671854 = 3999983 Sessions active: add 71671837 - deact 67671891 = 3999946 Sessions being purged: deact 67671891 - del 67671854 = 37 now: 53003604724847 clocks per second: 2200000000 root 14385 796 2.1 191172632 2895876 ? SLsl 16:07 40:36 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 76900999 - del 72901007 = 3999992 Sessions active: add 76900999 - deact 72901073 = 3999926 Sessions being purged: deact 72901073 - del 72901007 = 66 now: 53047561901344 clocks per second: 2200000000 root 14385 796 2.2 191172632 2948676 ? SLsl 16:07 43:17 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 82113306 - del 78113313 = 3999993 Sessions active: add 82113306 - deact 78113366 = 3999940 Sessions being purged: deact 78113366 - del 78113313 = 53 now: 53091527880164 clocks per second: 2200000000 root 14385 797 2.2 191172632 2997252 ? SLsl 16:07 45:58 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 87460039 - del 83460065 = 3999974 Sessions active: add 87460039 - deact 83460092 = 3999947 Sessions being purged: deact 83460092 - del 83460065 = 27 now: 53137070804341 clocks per second: 2200000000 root 14385 797 2.3 191172632 3044244 ? SLsl 16:07 48:39 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 92602836 - del 88602845 = 3999991 Sessions active: add 92602836 - deact 88602887 = 3999949 Sessions being purged: deact 88602887 - del 88602845 = 42 now: 53181027864703 clocks per second: 2200000000 root 14385 798 2.3 191172632 3084900 ? SLsl 16:07 51:21 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 97722944 - del 93722953 = 3999991 Sessions active: add 97722944 - deact 93723010 = 3999934 Sessions being purged: deact 93723010 - del 93722953 = 57 now: 53224984692227 clocks per second: 2200000000 root 14385 798 2.3 191172632 3123444 ? SLsl 16:07 54:02 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 102827923 - del 98827932 = 3999991 Sessions active: add 102827923 - deact 98827965 = 3999958 Sessions being purged: deact 98827965 - del 98827932 = 33 now: 53268942327839 clocks per second: 2200000000 root 14385 798 2.3 191172632 3159084 ? SLsl 16:07 56:43 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 107935630 - del 103935644 = 3999986 Sessions active: add 107935630 - deact 103935677 = 3999953 Sessions being purged: deact 103935677 - del 103935644 = 33 now: 53312899942557 clocks per second: 2200000000 root 14385 799 2.4 191172632 3193140 ? SLsl 16:07 59:24 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 113044965 - del 109044973 = 3999992 Sessions active: add 113044965 - deact 109045037 = 3999928 Sessions being purged: deact 109045037 - del 109044973 = 64 now: 53356857261278 clocks per second: 2200000000 root 14385 799 2.4 191172632 3224292 ? SLsl 16:07 62:05 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 118134551 - del 114134560 = 3999991 Sessions active: add 118134551 - deact 114134591 = 3999960 Sessions being purged: deact 114134591 - del 114134560 = 31 now: 53400814583286 clocks per second: 2200000000 root 14385 799 2.4 191172632 3254124 ? SLsl 16:07 64:47 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 123214385 - del 119214403 = 3999982 Sessions active: add 123214385 - deact 119214431 = 3999954 Sessions being purged: deact 119214431 - del 119214403 = 28 now: 53444771906904 clocks per second: 2200000000 root 14385 800 2.4 191172632 3283164 ? SLsl 16:07 67:28 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 128223203 - del 124223217 = 3999986 Sessions active: add 128223203 - deact 124223260 = 3999943 Sessions being purged: deact 124223260 - del 124223217 = 43 now: 53488728733123 clocks per second: 2200000000 root 14385 800 2.5 191172632 3311148 ? SLsl 16:07 70:09 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 133188944 - del 129188953 = 3999991 Sessions active: add 133188944 - deact 129189016 = 3999928 Sessions being purged: deact 129189016 - del 129188953 = 63 now: 53532685715920 clocks per second: 2200000000 root 14385 800 2.5 191172632 3337812 ? SLsl 16:07 72:50 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 138125206 - del 134125215 = 3999991 Sessions active: add 138125206 - deact 134125261 = 3999945 Sessions being purged: deact 134125261 - del 134125215 = 46 now: 53576642634922 clocks per second: 2200000000 root 14385 800 2.5 191172632 3364212 ? SLsl 16:07 75:32 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 143054898 - del 139054916 = 3999982 Sessions active: add 143054898 - deact 139054947 = 3999951 Sessions being purged: deact 139054947 - del 139054916 = 31 now: 53620599883985 clocks per second: 2200000000 root 14385 800 2.5 191172632 3388236 ? SLsl 16:07 78:13 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 147979553 - del 143979562 = 3999991 Sessions active: add 147979553 - deact 143979617 = 3999936 Sessions being purged: deact 143979617 - del 143979562 = 55 now: 53664557222720 clocks per second: 2200000000 root 14385 801 2.5 191172632 3412524 ? SLsl 16:07 80:54 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 152884904 - del 148884915 = 3999989 Sessions active: add 152884904 - deact 148884954 = 3999950 Sessions being purged: deact 148884954 - del 148884915 = 39 now: 53708513955584 clocks per second: 2200000000 root 14385 801 2.5 191172632 3437340 ? SLsl 16:07 83:35 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 157779175 - del 153779184 = 3999991 Sessions active: add 157779175 - deact 153779233 = 3999942 Sessions being purged: deact 153779233 - del 153779184 = 49 now: 53752470474230 clocks per second: 2200000000 root 14385 801 2.6 191172632 3460572 ? SLsl 16:07 86:16 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 162620762 - del 158620771 = 3999991 Sessions active: add 162620762 - deact 158620834 = 3999928 Sessions being purged: deact 158620834 - del 158620771 = 63 now: 53796428262246 clocks per second: 2200000000 root 14385 801 2.6 191172632 3484068 ? SLsl 16:07 88:58 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 167418622 - del 163418639 = 3999983 Sessions active: add 167418622 - deact 163418656 = 3999966 Sessions being purged: deact 163418656 - del 163418639 = 17 now: 53840385768303 clocks per second: 2200000000 root 14385 801 2.6 191172632 3505716 ? SLsl 16:07 91:39 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 172202776 - del 168202789 = 3999987 Sessions active: add 172202776 - deact 168202853 = 3999923 Sessions being purged: deact 168202853 - del 168202789 = 64 now: 53884343500303 clocks per second: 2200000000 root 14385 801 2.6 191172632 3527628 ? SLsl 16:07 94:20 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 176987983 - del 172987992 = 3999991 Sessions active: add 176987983 - deact 172988037 = 3999946 Sessions being purged: deact 172988037 - del 172987992 = 45 now: 53928301069368 clocks per second: 2200000000 root 14385 801 2.6 191172632 3550596 ? SLsl 16:07 97:02 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 181769148 - del 177769158 = 3999990 Sessions active: add 181769148 - deact 177769206 = 3999942 Sessions being purged: deact 177769206 - del 177769158 = 48 now: 53972258500798 clocks per second: 2200000000 root 14385 802 2.7 191172632 3570396 ? SLsl 16:07 99:43 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 186540808 - del 182540821 = 3999987 Sessions active: add 186540808 - deact 182540874 = 3999934 Sessions being purged: deact 182540874 - del 182540821 = 53 now: 54016215644927 clocks per second: 2200000000 root 14385 802 2.7 191172632 3592572 ? SLsl 16:07 102:24 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 191277393 - del 187277410 = 3999983 Sessions active: add 191277393 - deact 187277448 = 3999945 Sessions being purged: deact 187277448 - del 187277410 = 38 now: 54060172096550 clocks per second: 2200000000 root 14385 802 2.7 191172632 3611844 ? SLsl 16:07 105:05 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 195974998 - del 191975009 = 3999989 Sessions active: add 195974998 - deact 191975070 = 3999928 Sessions being purged: deact 191975070 - del 191975009 = 61 now: 54104130148964 clocks per second: 2200000000 root 14385 802 2.7 191172632 3631644 ? SLsl 16:07 107:47 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 200629013 - del 196629022 = 3999991 Sessions active: add 200629013 - deact 196629040 = 3999973 Sessions being purged: deact 196629040 - del 196629022 = 18 now: 54148086806444 clocks per second: 2200000000 root 14385 802 2.7 191172632 3651180 ? SLsl 16:07 110:28 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 205261998 - del 201262019 = 3999979 Sessions active: add 205261998 - deact 201262063 = 3999935 Sessions being purged: deact 201262063 - del 201262019 = 44 now: 54192044391223 clocks per second: 2200000000 root 14385 802 2.7 191172632 3670716 ? SLsl 16:07 113:09 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 209878092 - del 205878118 = 3999974 Sessions active: add 209878092 - deact 205878165 = 3999927 Sessions being purged: deact 205878165 - del 205878118 = 47 now: 54236001908004 clocks per second: 2200000000 root 14385 802 2.7 191172632 3689460 ? SLsl 16:07 115:50 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 214495420 - del 210495438 = 3999982 Sessions active: add 214495420 - deact 210495504 = 3999916 Sessions being purged: deact 210495504 - del 210495438 = 66 now: 54279959027398 clocks per second: 2200000000 root 14385 802 2.8 191172632 3708996 ? SLsl 16:07 118:31 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 219112966 - del 215112988 = 3999978 Sessions active: add 219112966 - deact 215113020 = 3999946 Sessions being purged: deact 215113020 - del 215112988 = 32 now: 54323923870405 clocks per second: 2200000000 root 14385 802 2.8 191172632 3727740 ? SLsl 16:07 121:13 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 223700557 - del 219700580 = 3999977 Sessions active: add 223700557 - deact 219700606 = 3999951 Sessions being purged: deact 219700606 - del 219700580 = 26 now: 54367881829640 clocks per second: 2200000000 root 14385 802 2.8 191172632 3746484 ? SLsl 16:07 123:54 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 228268305 - del 224268314 = 3999991 Sessions active: add 228268305 - deact 224268368 = 3999937 Sessions being purged: deact 224268368 - del 224268314 = 54 now: 54411862365175 clocks per second: 2200000000 root 14385 802 2.8 191172632 3763644 ? SLsl 16:07 126:35 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 232955292 - del 228955301 = 3999991 Sessions active: add 232955292 - deact 228955356 = 3999936 Sessions being purged: deact 228955356 - del 228955301 = 55 now: 54457559922763 clocks per second: 2200000000 root 14385 802 2.8 191172632 3780804 ? SLsl 16:07 129:16 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 237454558 - del 233454567 = 3999991 Sessions active: add 237454558 - deact 233454602 = 3999956 Sessions being purged: deact 233454602 - del 233454567 = 35 now: 54501518040257 clocks per second: 2200000000 root 14385 802 2.8 191172632 3797700 ? SLsl 16:07 131:58 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 241961133 - del 237961142 = 3999991 Sessions active: add 241961133 - deact 237961217 = 3999916 Sessions being purged: deact 237961217 - del 237961142 = 75 now: 54545475144896 clocks per second: 2200000000 root 14385 802 2.8 191172632 3814332 ? SLsl 16:07 134:39 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 246455349 - del 242455379 = 3999970 Sessions active: add 246455349 - deact 242455418 = 3999931 Sessions being purged: deact 242455418 - del 242455379 = 39 now: 54589433576782 clocks per second: 2200000000 root 14385 802 2.8 191172632 3831228 ? SLsl 16:07 137:20 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 250953855 - del 246953875 = 3999980 Sessions active: add 250953855 - deact 246953938 = 3999917 Sessions being purged: deact 246953938 - del 246953875 = 63 now: 54633391711728 clocks per second: 2200000000 root 14385 802 2.9 191172632 3847860 ? SLsl 16:07 140:02 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 255453798 - del 251453807 = 3999991 Sessions active: add 255453798 - deact 251453859 = 3999939 Sessions being purged: deact 251453859 - del 251453807 = 52 now: 54677348997920 clocks per second: 2200000000 root 14385 802 2.9 191172632 3864756 ? SLsl 16:07 142:43 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 259920126 - del 255920139 = 3999987 Sessions active: add 259920126 - deact 255920189 = 3999937 Sessions being purged: deact 255920189 - del 255920139 = 50 now: 54721306384216 clocks per second: 2200000000 root 14385 802 2.9 191172632 3881388 ? SLsl 16:07 145:24 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 264345504 - del 260345517 = 3999987 Sessions active: add 264345504 - deact 260345599 = 3999905 Sessions being purged: deact 260345599 - del 260345517 = 82 now: 54765263649917 clocks per second: 2200000000 root 14385 802 2.9 191172632 3897228 ? SLsl 16:07 148:05 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 268760559 - del 264760568 = 3999991 Sessions active: add 268760559 - deact 264760620 = 3999939 Sessions being purged: deact 264760620 - del 264760568 = 52 now: 54809221717467 clocks per second: 2200000000 root 14385 802 2.9 191172632 3913332 ? SLsl 16:07 150:47 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 273161155 - del 269161164 = 3999991 Sessions active: add 273161155 - deact 269161201 = 3999954 Sessions being purged: deact 269161201 - del 269161164 = 37 now: 54853179940907 clocks per second: 2200000000 root 14385 802 2.9 191172632 3928116 ? SLsl 16:07 153:28 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 277571229 - del 273571245 = 3999984 Sessions active: add 277571229 - deact 273571291 = 3999938 Sessions being purged: deact 273571291 - del 273571245 = 46 now: 54897137925156 clocks per second: 2200000000 root 14385 802 2.9 191172632 3943692 ? SLsl 16:07 156:09 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 281978521 - del 277978533 = 3999988 Sessions active: add 281978521 - deact 277978592 = 3999929 Sessions being purged: deact 277978592 - del 277978533 = 59 now: 54941095609479 clocks per second: 2200000000 root 14385 802 2.9 191172632 3959532 ? SLsl 16:07 158:51 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 286341534 - del 282341545 = 3999989 Sessions active: add 286341534 - deact 282341595 = 3999939 Sessions being purged: deact 282341595 - del 282341545 = 50 now: 54985054099574 clocks per second: 2200000000 root 14385 803 3.0 191172632 3975108 ? SLsl 16:07 161:32 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 290673230 - del 286673249 = 3999981 Sessions active: add 290673230 - deact 286673309 = 3999921 Sessions being purged: deact 286673309 - del 286673249 = 60 now: 55029011868868 clocks per second: 2200000000 root 14385 803 3.0 191172632 3990156 ? SLsl 16:07 164:13 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 294996817 - del 290996826 = 3999991 Sessions active: add 294996817 - deact 290996891 = 3999926 Sessions being purged: deact 290996891 - del 290996826 = 65 now: 55072970672513 clocks per second: 2200000000 root 14385 803 3.0 191172632 4003620 ? SLsl 16:07 166:55 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 299261946 - del 295261955 = 3999991 Sessions active: add 299261946 - deact 295262023 = 3999923 Sessions being purged: deact 295262023 - del 295261955 = 68 now: 55116928651928 clocks per second: 2200000000 root 14385 803 3.0 191172632 4017612 ? SLsl 16:07 169:36 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 303525073 - del 299525086 = 3999987 Sessions active: add 303525073 - deact 299525195 = 3999878 Sessions being purged: deact 299525195 - del 299525086 = 109 now: 55160886524242 clocks per second: 2200000000 root 14385 803 3.0 191172632 4031340 ? SLsl 16:07 172:17 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 307780469 - del 303780493 = 3999976 Sessions active: add 307780469 - deact 303780559 = 3999910 Sessions being purged: deact 303780559 - del 303780493 = 66 now: 55204844664505 clocks per second: 2200000000 root 14385 803 3.0 191172632 4044276 ? SLsl 16:07 174:59 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 312062448 - del 308062504 = 3999944 Sessions active: add 312062448 - deact 308062572 = 3999876 Sessions being purged: deact 308062572 - del 308062504 = 68 now: 55248803649198 clocks per second: 2200000000 root 14385 803 3.0 191172632 4057740 ? SLsl 16:07 177:40 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 316317893 - del 312317902 = 3999991 Sessions active: add 316317893 - deact 312317968 = 3999925 Sessions being purged: deact 312317968 - del 312317902 = 66 now: 55292761792187 clocks per second: 2200000000 root 14385 803 3.0 191172632 4072260 ? SLsl 16:07 180:21 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 320547116 - del 316547130 = 3999986 Sessions active: add 320547116 - deact 316547172 = 3999944 Sessions being purged: deact 316547172 - del 316547130 = 42 now: 55336720230239 clocks per second: 2200000000 root 14385 803 3.0 191172632 4085724 ? SLsl 16:07 183:03 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 324738700 - del 320738712 = 3999988 Sessions active: add 324738700 - deact 320738779 = 3999921 Sessions being purged: deact 320738779 - del 320738712 = 67 now: 55380677991911 clocks per second: 2200000000 root 14385 803 3.1 191172632 4099452 ? SLsl 16:07 185:44 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 328906214 - del 324906228 = 3999986 Sessions active: add 328906214 - deact 324906257 = 3999957 Sessions being purged: deact 324906257 - del 324906228 = 29 now: 55424636729431 clocks per second: 2200000000 root 14385 803 3.1 191172632 4112388 ? SLsl 16:07 188:25 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 333058694 - del 329058703 = 3999991 Sessions active: add 333058694 - deact 329058765 = 3999929 Sessions being purged: deact 329058765 - del 329058703 = 62 now: 55468595593212 clocks per second: 2200000000 root 14385 803 3.1 191172632 4124532 ? SLsl 16:07 191:07 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 337195843 - del 333195858 = 3999985 Sessions active: add 337195843 - deact 333195890 = 3999953 Sessions being purged: deact 333195890 - del 333195858 = 32 now: 55512553562378 clocks per second: 2200000000 root 14385 803 3.1 191172632 4136676 ? SLsl 16:07 193:48 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 341322756 - del 337322767 = 3999989 Sessions active: add 341322756 - deact 337322795 = 3999961 Sessions being purged: deact 337322795 - del 337322767 = 28 now: 55556511528424 clocks per second: 2200000000 root 14385 803 3.1 191172632 4148292 ? SLsl 16:07 196:29 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 345428362 - del 341428371 = 3999991 Sessions active: add 345428362 - deact 341428401 = 3999961 Sessions being purged: deact 341428401 - del 341428371 = 30 now: 55600469519308 clocks per second: 2200000000 root 14385 803 3.1 191172632 4160172 ? SLsl 16:07 199:11 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 349514329 - del 345514338 = 3999991 Sessions active: add 349514329 - deact 345514422 = 3999907 Sessions being purged: deact 345514422 - del 345514338 = 84 now: 55644427398098 clocks per second: 2200000000 root 14385 803 3.1 191172632 4172316 ? SLsl 16:07 201:52 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 353578157 - del 349578201 = 3999956 Sessions active: add 353578157 - deact 349578242 = 3999915 Sessions being purged: deact 349578242 - del 349578201 = 41 now: 55688386382320 clocks per second: 2200000000 root 14385 803 3.1 191172632 4184196 ? SLsl 16:07 204:33 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 357623593 - del 353623617 = 3999976 Sessions active: add 357623593 - deact 353623667 = 3999926 Sessions being purged: deact 353623667 - del 353623617 = 50 now: 55732343821400 clocks per second: 2200000000 root 14385 803 3.1 191172632 4195812 ? SLsl 16:07 207:15 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 361817980 - del 357817991 = 3999989 Sessions active: add 361817980 - deact 357818058 = 3999922 Sessions being purged: deact 357818058 - del 357817991 = 67 now: 55778120418460 clocks per second: 2200000000 root 14385 803 3.1 191172632 4206372 ? SLsl 16:07 209:56 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 365854791 - del 361854806 = 3999985 Sessions active: add 365854791 - deact 361854875 = 3999916 Sessions being purged: deact 361854875 - del 361854806 = 69 now: 55822077933770 clocks per second: 2200000000 root 14385 803 3.1 191172632 4218252 ? SLsl 16:07 212:37 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 369871678 - del 365871687 = 3999991 Sessions active: add 369871678 - deact 365871721 = 3999957 Sessions being purged: deact 365871721 - del 365871687 = 34 now: 55866037566825 clocks per second: 2200000000 root 14385 803 3.1 191172632 4229604 ? SLsl 16:07 215:19 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 373883542 - del 369883565 = 3999977 Sessions active: add 373883542 - deact 369883655 = 3999887 Sessions being purged: deact 369883655 - del 369883565 = 90 now: 55909996764827 clocks per second: 2200000000 root 14385 803 3.2 191172632 4240428 ? SLsl 16:07 218:00 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 377873778 - del 373873799 = 3999979 Sessions active: add 377873778 - deact 373873864 = 3999914 Sessions being purged: deact 373873864 - del 373873799 = 65 now: 55953955411631 clocks per second: 2200000000 root 14385 803 3.2 191172632 4250988 ? SLsl 16:07 220:41 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 381850351 - del 377850378 = 3999973 Sessions active: add 381850351 - deact 377850444 = 3999907 Sessions being purged: deact 377850444 - del 377850378 = 66 now: 55997914062540 clocks per second: 2200000000 root 14385 803 3.2 191172632 4262076 ? SLsl 16:07 223:23 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 385799521 - del 381799530 = 3999991 Sessions active: add 385799521 - deact 381799620 = 3999901 Sessions being purged: deact 381799620 - del 381799530 = 90 now: 56041873290198 clocks per second: 2200000000 root 14385 803 3.2 191172632 4274220 ? SLsl 16:07 226:04 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 389770406 - del 385770415 = 3999991 Sessions active: add 389770406 - deact 385770469 = 3999937 Sessions being purged: deact 385770469 - del 385770415 = 54 now: 56085831995264 clocks per second: 2200000000 root 14385 803 3.2 191172632 4283988 ? SLsl 16:07 228:45 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 393728553 - del 389728563 = 3999990 Sessions active: add 393728553 - deact 389728610 = 3999943 Sessions being purged: deact 389728610 - del 389728563 = 47 now: 56129790595529 clocks per second: 2200000000 root 14385 803 3.2 191172632 4294284 ? SLsl 16:07 231:26 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 397680436 - del 393680445 = 3999991 Sessions active: add 397680436 - deact 393680521 = 3999915 Sessions being purged: deact 393680521 - del 393680445 = 76 now: 56173749441157 clocks per second: 2200000000 root 14385 803 3.2 191172632 4304844 ? SLsl 16:07 234:08 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 401638226 - del 397638247 = 3999979 Sessions active: add 401638226 - deact 397638319 = 3999907 Sessions being purged: deact 397638319 - del 397638247 = 72 now: 56217708143106 clocks per second: 2200000000 root 14385 803 3.2 191172632 4315932 ? SLsl 16:07 236:49 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 405571357 - del 401571366 = 3999991 Sessions active: add 405571357 - deact 401571416 = 3999941 Sessions being purged: deact 401571416 - del 401571366 = 50 now: 56261666649418 clocks per second: 2200000000 root 14385 803 3.2 191172632 4326228 ? SLsl 16:07 239:31 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 409476992 - del 405477014 = 3999978 Sessions active: add 409476992 - deact 405477062 = 3999930 Sessions being purged: deact 405477062 - del 405477014 = 48 now: 56305625960584 clocks per second: 2200000000 root 14385 803 3.2 191172632 4337052 ? SLsl 16:07 242:12 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 413364825 - del 409364841 = 3999984 Sessions active: add 413364825 - deact 409364873 = 3999952 Sessions being purged: deact 409364873 - del 409364841 = 32 now: 56349584827071 clocks per second: 2200000000 root 14385 803 3.2 191172632 4346556 ? SLsl 16:07 244:53 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 417251713 - del 413251722 = 3999991 Sessions active: add 417251713 - deact 413251789 = 3999924 Sessions being purged: deact 413251789 - del 413251722 = 67 now: 56393543410277 clocks per second: 2200000000 root 14385 803 3.2 191172632 4356060 ? SLsl 16:07 247:35 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 421131722 - del 417131751 = 3999971 Sessions active: add 421131722 - deact 417131803 = 3999919 Sessions being purged: deact 417131803 - del 417131751 = 52 now: 56437507594648 clocks per second: 2200000000 root 14385 803 3.3 191172632 4365828 ? SLsl 16:07 250:16 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 425002473 - del 421002482 = 3999991 Sessions active: add 425002473 - deact 421002596 = 3999877 Sessions being purged: deact 421002596 - del 421002482 = 114 now: 56481465408683 clocks per second: 2200000000 root 14385 803 3.3 191172632 4375596 ? SLsl 16:07 252:57 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 428859201 - del 424859220 = 3999981 Sessions active: add 428859201 - deact 424859278 = 3999923 Sessions being purged: deact 424859278 - del 424859220 = 58 now: 56525429308581 clocks per second: 2200000000 root 14385 803 3.3 191172632 4385364 ? SLsl 16:07 255:39 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 432707856 - del 428707872 = 3999984 Sessions active: add 432707856 - deact 428707901 = 3999955 Sessions being purged: deact 428707901 - del 428707872 = 29 now: 56569388313517 clocks per second: 2200000000 root 14385 803 3.3 191172632 4394340 ? SLsl 16:07 258:20 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 436542145 - del 432542154 = 3999991 Sessions active: add 436542145 - deact 432542202 = 3999943 Sessions being purged: deact 432542202 - del 432542154 = 48 now: 56613351705734 clocks per second: 2200000000 root 14385 803 3.3 191172632 4403580 ? SLsl 16:07 261:01 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 440356690 - del 436356699 = 3999991 Sessions active: add 440356690 - deact 436356794 = 3999896 Sessions being purged: deact 436356794 - del 436356699 = 95 now: 56657310271232 clocks per second: 2200000000 root 14385 804 3.3 191172632 4412556 ? SLsl 16:07 263:43 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 444167194 - del 440167208 = 3999986 Sessions active: add 444167194 - deact 440167292 = 3999902 Sessions being purged: deact 440167292 - del 440167208 = 84 now: 56701302582327 clocks per second: 2200000000 root 14385 804 3.3 191172632 4421268 ? SLsl 16:07 266:24 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 447956229 - del 443956238 = 3999991 Sessions active: add 447956229 - deact 443956321 = 3999908 Sessions being purged: deact 443956321 - del 443956238 = 83 now: 56745262833226 clocks per second: 2200000000 root 14385 804 3.3 191172632 4430772 ? SLsl 16:07 269:05 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 451736143 - del 447736173 = 3999970 Sessions active: add 451736143 - deact 447736191 = 3999952 Sessions being purged: deact 447736191 - del 447736173 = 18 now: 56789222038589 clocks per second: 2200000000 root 14385 804 3.3 191172632 4439220 ? SLsl 16:07 271:47 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 455512914 - del 451512923 = 3999991 Sessions active: add 455512914 - deact 451513027 = 3999887 Sessions being purged: deact 451513027 - del 451512923 = 104 now: 56833204297704 clocks per second: 2200000000 root 14385 804 3.3 191172632 4448460 ? SLsl 16:07 274:28 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 459279408 - del 455279433 = 3999975 Sessions active: add 459279408 - deact 455279540 = 3999868 Sessions being purged: deact 455279540 - del 455279433 = 107 now: 56877163087452 clocks per second: 2200000000 root 14385 804 3.3 191172632 4456380 ? SLsl 16:07 277:09 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 463044187 - del 459044212 = 3999975 Sessions active: add 463044187 - deact 459044279 = 3999908 Sessions being purged: deact 459044279 - del 459044212 = 67 now: 56921122401761 clocks per second: 2200000000 root 14385 804 3.3 191172632 4464300 ? SLsl 16:07 279:51 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 466777132 - del 462777150 = 3999982 Sessions active: add 466777132 - deact 462777266 = 3999866 Sessions being purged: deact 462777266 - del 462777150 = 116 now: 56965082183816 clocks per second: 2200000000 root 14385 804 3.3 191172632 4471956 ? SLsl 16:07 282:32 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 470500303 - del 466500329 = 3999974 Sessions active: add 470500303 - deact 466500407 = 3999896 Sessions being purged: deact 466500407 - del 466500329 = 78 now: 57009041552927 clocks per second: 2200000000 root 14385 804 3.3 191172632 4480140 ? SLsl 16:07 285:13 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 474234292 - del 470234301 = 3999991 Sessions active: add 474234292 - deact 470234466 = 3999826 Sessions being purged: deact 470234466 - del 470234301 = 165 now: 57053002115073 clocks per second: 2200000000 root 14385 804 3.3 191172632 4487796 ? SLsl 16:07 287:55 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 477960844 - del 473960853 = 3999991 Sessions active: add 477960844 - deact 473960924 = 3999920 Sessions being purged: deact 473960924 - del 473960853 = 71 now: 57096962088163 clocks per second: 2200000000 root 14385 804 3.3 191172632 4495716 ? SLsl 16:07 290:36 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 481691574 - del 477691583 = 3999991 Sessions active: add 481691574 - deact 477691655 = 3999919 Sessions being purged: deact 477691655 - del 477691583 = 72 now: 57140920891862 clocks per second: 2200000000 root 14385 804 3.4 191172632 4502844 ? SLsl 16:07 293:17 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 485393596 - del 481393635 = 3999961 Sessions active: add 485393596 - deact 481393701 = 3999895 Sessions being purged: deact 481393701 - del 481393635 = 66 now: 57184880708186 clocks per second: 2200000000 root 14385 804 3.4 191172632 4510500 ? SLsl 16:07 295:59 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 489080661 - del 485080676 = 3999985 Sessions active: add 489080661 - deact 485080736 = 3999925 Sessions being purged: deact 485080736 - del 485080676 = 60 now: 57228877327286 clocks per second: 2200000000 root 14385 804 3.4 191172632 4517892 ? SLsl 16:07 298:40 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 492747692 - del 488747709 = 3999983 Sessions active: add 492747692 - deact 488747792 = 3999900 Sessions being purged: deact 488747792 - del 488747709 = 83 now: 57272836504140 clocks per second: 2200000000 root 14385 804 3.4 191172632 4525020 ? SLsl 16:07 301:21 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 496406668 - del 492406689 = 3999979 Sessions active: add 496406668 - deact 492406798 = 3999870 Sessions being purged: deact 492406798 - del 492406689 = 109 now: 57316795564041 clocks per second: 2200000000 root 14385 804 3.4 191172632 4532412 ? SLsl 16:07 304:03 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 500061748 - del 496061781 = 3999967 Sessions active: add 500061748 - deact 496061845 = 3999903 Sessions being purged: deact 496061845 - del 496061781 = 64 now: 57360756230134 clocks per second: 2200000000 root 14385 804 3.4 191172632 4539276 ? SLsl 16:07 306:44 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 503711153 - del 499711184 = 3999969 Sessions active: add 503711153 - deact 499711225 = 3999928 Sessions being purged: deact 499711225 - del 499711184 = 41 now: 57404714613140 clocks per second: 2200000000 root 14385 804 3.4 191172632 4547724 ? SLsl 16:07 309:25 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 507352354 - del 503352363 = 3999991 Sessions active: add 507352354 - deact 503352461 = 3999893 Sessions being purged: deact 503352461 - del 503352363 = 98 now: 57448674168604 clocks per second: 2200000000 root 14385 804 3.4 191172632 4554852 ? SLsl 16:07 312:07 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 510996912 - del 506996953 = 3999959 Sessions active: add 510996912 - deact 506997019 = 3999893 Sessions being purged: deact 506997019 - del 506996953 = 66 now: 57492632982111 clocks per second: 2200000000 root 14385 804 3.4 191172632 4561452 ? SLsl 16:07 314:48 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 514624817 - del 510624841 = 3999976 Sessions active: add 514624817 - deact 510624872 = 3999945 Sessions being purged: deact 510624872 - del 510624841 = 31 now: 57536592672360 clocks per second: 2200000000 root 14385 804 3.4 191172632 4569108 ? SLsl 16:07 317:29 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 518232686 - del 514232727 = 3999959 Sessions active: add 518232686 - deact 514232801 = 3999885 Sessions being purged: deact 514232801 - del 514232727 = 74 now: 57580552709454 clocks per second: 2200000000 root 14385 804 3.4 191172632 4575180 ? SLsl 16:07 320:11 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 521824830 - del 517824847 = 3999983 Sessions active: add 521824830 - deact 517824909 = 3999921 Sessions being purged: deact 517824909 - del 517824847 = 62 now: 57624513054382 clocks per second: 2200000000 root 14385 804 3.4 191172632 4582836 ? SLsl 16:07 322:52 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 525412234 - del 521412243 = 3999991 Sessions active: add 525412234 - deact 521412309 = 3999925 Sessions being purged: deact 521412309 - del 521412243 = 66 now: 57668473266888 clocks per second: 2200000000 root 14385 804 3.4 191172632 4589172 ? SLsl 16:07 325:33 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 528989683 - del 524989734 = 3999949 Sessions active: add 528989683 - deact 524989782 = 3999901 Sessions being purged: deact 524989782 - del 524989734 = 48 now: 57712434185554 clocks per second: 2200000000 root 14385 804 3.4 191172632 4596036 ? SLsl 16:07 328:15 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 532573067 - del 528573094 = 3999973 Sessions active: add 532573067 - deact 528573159 = 3999908 Sessions being purged: deact 528573159 - del 528573094 = 65 now: 57756394165433 clocks per second: 2200000000 root 14385 804 3.4 191172632 4602372 ? SLsl 16:07 330:56 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 536150512 - del 532150535 = 3999977 Sessions active: add 536150512 - deact 532150622 = 3999890 Sessions being purged: deact 532150622 - del 532150535 = 87 now: 57800354251908 clocks per second: 2200000000 root 14385 804 3.4 191172632 4608972 ? SLsl 16:07 333:37 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 539715364 - del 535715373 = 3999991 Sessions active: add 539715364 - deact 535715449 = 3999915 Sessions being purged: deact 535715449 - del 535715373 = 76 now: 57844313693085 clocks per second: 2200000000 root 14385 804 3.4 191172632 4615572 ? SLsl 16:07 336:19 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 543265065 - del 539265074 = 3999991 Sessions active: add 543265065 - deact 539265129 = 3999936 Sessions being purged: deact 539265129 - del 539265074 = 55 now: 57888274439676 clocks per second: 2200000000 root 14385 804 3.4 191172632 4621644 ? SLsl 16:07 339:00 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 546796955 - del 542796964 = 3999991 Sessions active: add 546796955 - deact 542797070 = 3999885 Sessions being purged: deact 542797070 - del 542796964 = 106 now: 57932239977666 clocks per second: 2200000000 root 14385 804 3.4 191172632 4627716 ? SLsl 16:07 341:41 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 550340729 - del 546340757 = 3999972 Sessions active: add 550340729 - deact 546340829 = 3999900 Sessions being purged: deact 546340829 - del 546340757 = 72 now: 57976235071666 clocks per second: 2200000000 root 14385 804 3.5 191172632 4634580 ? SLsl 16:07 344:23 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 553876101 - del 549876132 = 3999969 Sessions active: add 553876101 - deact 549876177 = 3999924 Sessions being purged: deact 549876177 - del 549876132 = 45 now: 58020232045217 clocks per second: 2200000000 root 14385 804 3.5 191172632 4640388 ? RLsl 16:07 347:04 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 557412860 - del 553412869 = 3999991 Sessions active: add 557412860 - deact 553412924 = 3999936 Sessions being purged: deact 553412924 - del 553412869 = 55 now: 58064225984802 clocks per second: 2200000000 root 14385 804 3.5 191172632 4644876 ? RLsl 16:07 349:46 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 560945123 - del 556945132 = 3999991 Sessions active: add 560945123 - deact 556945205 = 3999918 Sessions being purged: deact 556945205 - del 556945132 = 73 now: 58108227340954 clocks per second: 2200000000 root 14385 804 3.5 191172632 4650684 ? RLsl 16:07 352:27 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 564458740 - del 560458761 = 3999979 Sessions active: add 564458740 - deact 560458861 = 3999879 Sessions being purged: deact 560458861 - del 560458761 = 100 now: 58152238606780 clocks per second: 2200000000 root 14385 804 3.5 191172632 4656756 ? RLsl 16:07 355:08 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 567962936 - del 563962974 = 3999962 Sessions active: add 567962936 - deact 563963043 = 3999893 Sessions being purged: deact 563963043 - del 563962974 = 69 now: 58196240931856 clocks per second: 2200000000 root 14385 804 3.5 191172632 4662564 ? RLsl 16:07 357:50 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 571444969 - del 567444978 = 3999991 Sessions active: add 571444969 - deact 567445057 = 3999912 Sessions being purged: deact 567445057 - del 567444978 = 79 now: 58240252494079 clocks per second: 2200000000 root 14385 804 3.5 191172632 4667844 ? RLsl 16:07 360:31 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 574943100 - del 570943109 = 3999991 Sessions active: add 574943100 - deact 570943151 = 3999949 Sessions being purged: deact 570943151 - del 570943109 = 42 now: 58284252858964 clocks per second: 2200000000 root 14385 804 3.5 191172632 4674180 ? RLsl 16:07 363:12 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 578439189 - del 574439201 = 3999988 Sessions active: add 578439189 - deact 574439285 = 3999904 Sessions being purged: deact 574439285 - del 574439201 = 84 now: 58328254210314 clocks per second: 2200000000 root 14385 804 3.5 191172632 4680780 ? RLsl 16:07 365:54 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 581935369 - del 577935378 = 3999991 Sessions active: add 581935369 - deact 577935448 = 3999921 Sessions being purged: deact 577935448 - del 577935378 = 70 now: 58372256362232 clocks per second: 2200000000 root 14385 804 3.5 191172632 4686324 ? RLsl 16:07 368:35 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 585406540 - del 581406558 = 3999982 Sessions active: add 585406540 - deact 581406622 = 3999918 Sessions being purged: deact 581406622 - del 581406558 = 64 now: 58416258088594 clocks per second: 2200000000 root 14385 804 3.5 191172632 4693980 ? RLsl 16:07 371:17 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 588860959 - del 584860998 = 3999961 Sessions active: add 588860959 - deact 584861043 = 3999916 Sessions being purged: deact 584861043 - del 584860998 = 45 now: 58460269258305 clocks per second: 2200000000 root 14385 804 3.5 191172632 4700580 ? RLsl 16:07 373:58 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 592323289 - del 588323298 = 3999991 Sessions active: add 592323289 - deact 588323427 = 3999862 Sessions being purged: deact 588323427 - del 588323298 = 129 now: 58504269932033 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? RLsl 16:07 376:39 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 591071537 = 3019319 Sessions active: add 594090856 - deact 591071539 = 3019317 Sessions being purged: deact 591071539 - del 591071537 = 2 now: 58548271743268 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? RLsl 16:07 379:21 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 593781129 = 309727 Sessions active: add 594090856 - deact 593781129 = 309727 Sessions being purged: deact 593781129 - del 593781129 = 0 now: 58592269730218 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 382:02 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 58637528016355 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 384:43 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 58681483343815 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 387:24 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 58726759392592 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 390:05 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 58770714500964 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 392:46 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 58814702147498 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 395:27 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 58858657093661 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 398:07 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 58902646734976 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 400:48 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 58946601449557 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 403:29 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 58990565229986 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 406:10 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 59034520819548 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 408:51 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 59078484946062 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 411:32 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 59122441074900 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 414:13 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 59166404837078 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 416:53 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 59210359545326 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 419:34 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 594090856 - del 594090856 = 0 Sessions active: add 594090856 - deact 594090856 = 0 Sessions being purged: deact 594090856 - del 594090856 = 0 now: 59254322801231 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 422:15 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 601950925 - del 597950941 = 3999984 Sessions active: add 601950925 - deact 597950997 = 3999928 Sessions being purged: deact 597950997 - del 597950941 = 56 now: 59298314452740 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 424:56 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 608484646 - del 604484655 = 3999991 Sessions active: add 608484646 - deact 604484698 = 3999948 Sessions being purged: deact 604484698 - del 604484655 = 43 now: 59342271981197 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 427:37 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 614211670 - del 610211684 = 3999986 Sessions active: add 614211670 - deact 610211698 = 3999972 Sessions being purged: deact 610211698 - del 610211684 = 14 now: 59386229169451 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 430:18 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 619760429 - del 615760438 = 3999991 Sessions active: add 619760429 - deact 615760476 = 3999953 Sessions being purged: deact 615760476 - del 615760438 = 38 now: 59430219473684 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 432:59 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 625291022 - del 621291037 = 3999985 Sessions active: add 625291022 - deact 621291066 = 3999956 Sessions being purged: deact 621291066 - del 621291037 = 29 now: 59474177310464 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 435:40 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 630791943 - del 626791952 = 3999991 Sessions active: add 630791943 - deact 626791967 = 3999976 Sessions being purged: deact 626791967 - del 626791952 = 15 now: 59518139291387 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 438:21 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 636263006 - del 632263015 = 3999991 Sessions active: add 636263006 - deact 632263048 = 3999958 Sessions being purged: deact 632263048 - del 632263015 = 33 now: 59562096235840 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 441:02 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 641702016 - del 637702030 = 3999986 Sessions active: add 641702016 - deact 637702059 = 3999957 Sessions being purged: deact 637702059 - del 637702030 = 29 now: 59606061139680 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 443:43 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 647123792 - del 643123801 = 3999991 Sessions active: add 647123792 - deact 643123864 = 3999928 Sessions being purged: deact 643123864 - del 643123801 = 63 now: 59650018411686 clocks per second: 2200000000 root 14385 804 3.5 191172632 4702956 ? SLsl 16:07 446:25 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 652524804 - del 648524813 = 3999991 Sessions active: add 652524804 - deact 648524849 = 3999955 Sessions being purged: deact 648524849 - del 648524813 = 36 now: 59693982376582 clocks per second: 2200000000 root 14385 804 3.5 191172632 4706124 ? SLsl 16:07 449:06 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 657890270 - del 653890278 = 3999992 Sessions active: add 657890270 - deact 653890319 = 3999951 Sessions being purged: deact 653890319 - del 653890278 = 41 now: 59737938750868 clocks per second: 2200000000 root 14385 804 3.5 191172632 4708236 ? SLsl 16:07 451:47 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 663249152 - del 659249168 = 3999984 Sessions active: add 663249152 - deact 659249194 = 3999958 Sessions being purged: deact 659249194 - del 659249168 = 26 now: 59781895790833 clocks per second: 2200000000 root 14385 804 3.5 191172632 4709556 ? SLsl 16:07 454:28 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 668603671 - del 664603681 = 3999990 Sessions active: add 668603671 - deact 664603710 = 3999961 Sessions being purged: deact 664603710 - del 664603681 = 29 now: 59825852573156 clocks per second: 2200000000 root 14385 804 3.5 191172632 4710612 ? SLsl 16:07 457:09 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 673949078 - del 669949087 = 3999991 Sessions active: add 673949078 - deact 669949149 = 3999929 Sessions being purged: deact 669949149 - del 669949087 = 62 now: 59869809593437 clocks per second: 2200000000 root 14385 804 3.5 191172632 4711140 ? SLsl 16:07 459:50 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 679284934 - del 675284942 = 3999992 Sessions active: add 679284934 - deact 675284971 = 3999963 Sessions being purged: deact 675284971 - del 675284942 = 29 now: 59913766367228 clocks per second: 2200000000 root 14385 804 3.5 191172632 4712196 ? SLsl 16:07 462:31 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 684583983 - del 680584017 = 3999966 Sessions active: add 684583983 - deact 680584057 = 3999926 Sessions being purged: deact 680584057 - del 680584017 = 40 now: 59957723640892 clocks per second: 2200000000 root 14385 804 3.5 191172632 4713516 ? SLsl 16:07 465:13 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 689869055 - del 685869069 = 3999986 Sessions active: add 689869055 - deact 685869113 = 3999942 Sessions being purged: deact 685869113 - del 685869069 = 44 now: 60001680395147 clocks per second: 2200000000 root 14385 804 3.5 191172632 4716684 ? SLsl 16:07 467:54 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 695151564 - del 691151586 = 3999978 Sessions active: add 695151564 - deact 691151635 = 3999929 Sessions being purged: deact 691151635 - del 691151586 = 49 now: 60045637556300 clocks per second: 2200000000 root 14385 804 3.5 191172632 4717212 ? SLsl 16:07 470:35 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 700410574 - del 696410583 = 3999991 Sessions active: add 700410574 - deact 696410611 = 3999963 Sessions being purged: deact 696410611 - del 696410583 = 28 now: 60089594708843 clocks per second: 2200000000 root 14385 804 3.5 191172632 4717740 ? SLsl 16:07 473:16 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 705639864 - del 701639887 = 3999977 Sessions active: add 705639864 - deact 701639946 = 3999918 Sessions being purged: deact 701639946 - del 701639887 = 59 now: 60133552187799 clocks per second: 2200000000 root 14385 804 3.5 191172632 4718796 ? SLsl 16:07 475:57 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 710854193 - del 706854202 = 3999991 Sessions active: add 710854193 - deact 706854250 = 3999943 Sessions being purged: deact 706854250 - del 706854202 = 48 now: 60177509692577 clocks per second: 2200000000 root 14385 804 3.5 191172632 4719852 ? SLsl 16:07 478:39 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 716059029 - del 712059038 = 3999991 Sessions active: add 716059029 - deact 712059100 = 3999929 Sessions being purged: deact 712059100 - del 712059038 = 62 now: 60221467025221 clocks per second: 2200000000 root 14385 804 3.5 191172632 4719852 ? SLsl 16:07 481:20 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 721238683 - del 717238694 = 3999989 Sessions active: add 721238683 - deact 717238718 = 3999965 Sessions being purged: deact 717238718 - del 717238694 = 24 now: 60265424396823 clocks per second: 2200000000 root 14385 804 3.5 191172632 4720908 ? SLsl 16:07 484:01 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 726411967 - del 722411976 = 3999991 Sessions active: add 726411967 - deact 722411995 = 3999972 Sessions being purged: deact 722411995 - del 722411976 = 19 now: 60309380628254 clocks per second: 2200000000 root 14385 804 3.5 191172632 4721436 ? SLsl 16:07 486:42 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 731576143 - del 727576152 = 3999991 Sessions active: add 731576143 - deact 727576195 = 3999948 Sessions being purged: deact 727576195 - del 727576152 = 43 now: 60353337479569 clocks per second: 2200000000 root 14385 804 3.5 191172632 4722228 ? SLsl 16:07 489:23 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 736746523 - del 732746532 = 3999991 Sessions active: add 736746523 - deact 732746567 = 3999956 Sessions being purged: deact 732746567 - del 732746532 = 35 now: 60397294675326 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723020 ? SLsl 16:07 492:04 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 741896058 - del 737896072 = 3999986 Sessions active: add 741896058 - deact 737896139 = 3999919 Sessions being purged: deact 737896139 - del 737896072 = 67 now: 60441251880143 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723284 ? SLsl 16:07 494:46 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 747034860 - del 743034869 = 3999991 Sessions active: add 747034860 - deact 743034903 = 3999957 Sessions being purged: deact 743034903 - del 743034869 = 34 now: 60485208996291 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723284 ? SLsl 16:07 497:27 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 752169600 - del 748169609 = 3999991 Sessions active: add 752169600 - deact 748169654 = 3999946 Sessions being purged: deact 748169654 - del 748169609 = 45 now: 60529166097221 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723284 ? SLsl 16:07 500:08 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 757294698 - del 753294707 = 3999991 Sessions active: add 757294698 - deact 753294735 = 3999963 Sessions being purged: deact 753294735 - del 753294707 = 28 now: 60573123879583 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723284 ? SLsl 16:07 502:49 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 762401314 - del 758401320 = 3999994 Sessions active: add 762401314 - deact 758401382 = 3999932 Sessions being purged: deact 758401382 - del 758401320 = 62 now: 60617080967275 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723548 ? SLsl 16:07 505:30 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 767501448 - del 763501457 = 3999991 Sessions active: add 767501448 - deact 763501512 = 3999936 Sessions being purged: deact 763501512 - del 763501457 = 55 now: 60661038164396 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723812 ? SLsl 16:07 508:12 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 772581878 - del 768581904 = 3999974 Sessions active: add 772581878 - deact 768581936 = 3999942 Sessions being purged: deact 768581936 - del 768581904 = 32 now: 60704995460645 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723812 ? SLsl 16:07 510:53 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 777639716 - del 773639725 = 3999991 Sessions active: add 777639716 - deact 773639795 = 3999921 Sessions being purged: deact 773639795 - del 773639725 = 70 now: 60748952406953 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723812 ? SLsl 16:07 513:34 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 782677903 - del 778677912 = 3999991 Sessions active: add 782677903 - deact 778677975 = 3999928 Sessions being purged: deact 778677975 - del 778677912 = 63 now: 60792909445646 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723812 ? SLsl 16:07 516:15 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 787703247 - del 783703256 = 3999991 Sessions active: add 787703247 - deact 783703312 = 3999935 Sessions being purged: deact 783703312 - del 783703256 = 56 now: 60836866667909 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723812 ? SLsl 16:07 518:56 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 792723183 - del 788723191 = 3999992 Sessions active: add 792723183 - deact 788723244 = 3999939 Sessions being purged: deact 788723244 - del 788723191 = 53 now: 60880823623746 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723812 ? SLsl 16:07 521:38 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 797726942 - del 793726951 = 3999991 Sessions active: add 797726942 - deact 793727013 = 3999929 Sessions being purged: deact 793727013 - del 793726951 = 62 now: 60924779846047 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723812 ? SLsl 16:07 524:19 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 802724649 - del 798724658 = 3999991 Sessions active: add 802724649 - deact 798724705 = 3999944 Sessions being purged: deact 798724705 - del 798724658 = 47 now: 60968736681066 clocks per second: 2200000000 root 14385 804 3.5 191172632 4723812 ? SLsl 16:07 527:00 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 807705422 - del 803705438 = 3999984 Sessions active: add 807705422 - deact 803705476 = 3999946 Sessions being purged: deact 803705476 - del 803705438 = 38 now: 61012694064794 clocks per second: 2200000000 root 14385 804 3.5 191172632 4724340 ? SLsl 16:07 529:41 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 812663334 - del 808663343 = 3999991 Sessions active: add 812663334 - deact 808663380 = 3999954 Sessions being purged: deact 808663380 - del 808663343 = 37 now: 61056650737557 clocks per second: 2200000000 root 14385 804 3.5 191172632 4725396 ? SLsl 16:07 532:22 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 817572811 - del 813572830 = 3999981 Sessions active: add 817572811 - deact 813572865 = 3999946 Sessions being purged: deact 813572865 - del 813572830 = 35 now: 61100608813414 clocks per second: 2200000000 root 14385 804 3.5 191172632 4726716 ? SLsl 16:07 535:04 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 822462156 - del 818462165 = 3999991 Sessions active: add 822462156 - deact 818462224 = 3999932 Sessions being purged: deact 818462224 - del 818462165 = 59 now: 61144565765027 clocks per second: 2200000000 root 14385 804 3.5 191172632 4727772 ? SLsl 16:07 537:45 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 827316276 - del 823316291 = 3999985 Sessions active: add 827316276 - deact 823316354 = 3999922 Sessions being purged: deact 823316354 - del 823316291 = 63 now: 61188523661346 clocks per second: 2200000000 root 14385 804 3.5 191172632 4728036 ? SLsl 16:07 540:26 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 832158630 - del 828158645 = 3999985 Sessions active: add 832158630 - deact 828158692 = 3999938 Sessions being purged: deact 828158692 - del 828158645 = 47 now: 61232480463456 clocks per second: 2200000000 root 14385 804 3.5 191172632 4728300 ? SLsl 16:07 543:07 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 836965500 - del 832965523 = 3999977 Sessions active: add 836965500 - deact 832965592 = 3999908 Sessions being purged: deact 832965592 - del 832965523 = 69 now: 61276437590755 clocks per second: 2200000000 root 14385 804 3.5 191172632 4728300 ? SLsl 16:07 545:49 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 841770627 - del 837770636 = 3999991 Sessions active: add 841770627 - deact 837770703 = 3999924 Sessions being purged: deact 837770703 - del 837770636 = 67 now: 61320394414875 clocks per second: 2200000000 root 14385 804 3.5 191172632 4728300 ? SLsl 16:07 548:30 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 846571532 - del 842571541 = 3999991 Sessions active: add 846571532 - deact 842571609 = 3999923 Sessions being purged: deact 842571609 - del 842571541 = 68 now: 61364352444934 clocks per second: 2200000000 root 14385 804 3.5 191172632 4728300 ? SLsl 16:07 551:11 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 851374574 - del 847374583 = 3999991 Sessions active: add 851374574 - deact 847374638 = 3999936 Sessions being purged: deact 847374638 - del 847374583 = 55 now: 61408309837280 clocks per second: 2200000000 root 14385 804 3.5 191172632 4728300 ? SLsl 16:07 553:52 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 856181710 - del 852181723 = 3999987 Sessions active: add 856181710 - deact 852181753 = 3999957 Sessions being purged: deact 852181753 - del 852181723 = 30 now: 61452267330894 clocks per second: 2200000000 root 14385 804 3.5 191172632 4728300 ? SLsl 16:07 556:33 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 860975796 - del 856975820 = 3999976 Sessions active: add 860975796 - deact 856975849 = 3999947 Sessions being purged: deact 856975849 - del 856975820 = 29 now: 61496224942250 clocks per second: 2200000000 root 14385 804 3.5 191172632 4728828 ? SLsl 16:07 559:15 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 865749457 - del 861749478 = 3999979 Sessions active: add 865749457 - deact 861749529 = 3999928 Sessions being purged: deact 861749529 - del 861749478 = 51 now: 61540182403506 clocks per second: 2200000000 root 14385 804 3.5 191172632 4728828 ? SLsl 16:07 561:56 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 870511441 - del 866511450 = 3999991 Sessions active: add 870511441 - deact 866511492 = 3999949 Sessions being purged: deact 866511492 - del 866511450 = 42 now: 61584139523064 clocks per second: 2200000000 root 14385 804 3.5 191172632 4728828 ? SLsl 16:07 564:37 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 875272699 - del 871272710 = 3999989 Sessions active: add 875272699 - deact 871272775 = 3999924 Sessions being purged: deact 871272775 - del 871272710 = 65 now: 61628096547167 clocks per second: 2200000000 root 14385 804 3.5 191172632 4728828 ? SLsl 16:07 567:18 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 880028726 - del 876028735 = 3999991 Sessions active: add 880028726 - deact 876028781 = 3999945 Sessions being purged: deact 876028781 - del 876028735 = 46 now: 61672053761472 clocks per second: 2200000000 root 14385 804 3.5 191172632 4729092 ? SLsl 16:07 570:00 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 884785109 - del 880785122 = 3999987 Sessions active: add 884785109 - deact 880785172 = 3999937 Sessions being purged: deact 880785172 - del 880785122 = 50 now: 61716010874352 clocks per second: 2200000000 root 14385 804 3.5 191172632 4729620 ? SLsl 16:07 572:41 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 889703647 - del 885703676 = 3999971 Sessions active: add 889703647 - deact 885703707 = 3999940 Sessions being purged: deact 885703707 - del 885703676 = 31 now: 61761833938169 clocks per second: 2200000000 root 14385 804 3.5 191172632 4730148 ? SLsl 16:07 575:22 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 894385157 - del 890385170 = 3999987 Sessions active: add 894385157 - deact 890385212 = 3999945 Sessions being purged: deact 890385212 - del 890385170 = 42 now: 61805791060087 clocks per second: 2200000000 root 14385 804 3.5 191172632 4730148 ? SLsl 16:07 578:03 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 899065937 - del 895065946 = 3999991 Sessions active: add 899065937 - deact 895065991 = 3999946 Sessions being purged: deact 895065991 - del 895065946 = 45 now: 61849749049720 clocks per second: 2200000000 root 14385 804 3.5 191172632 4730412 ? SLsl 16:07 580:45 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 903730695 - del 899730705 = 3999990 Sessions active: add 903730695 - deact 899730749 = 3999946 Sessions being purged: deact 899730749 - del 899730705 = 44 now: 61893706710158 clocks per second: 2200000000 root 14385 804 3.5 191172632 4730412 ? SLsl 16:07 583:26 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 908388416 - del 904388435 = 3999981 Sessions active: add 908388416 - deact 904388468 = 3999948 Sessions being purged: deact 904388468 - del 904388435 = 33 now: 61937664116671 clocks per second: 2200000000 root 14385 804 3.5 191172632 4730412 ? SLsl 16:07 586:07 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 911899793 - del 908425047 = 3474746 Sessions active: add 911899793 - deact 908425050 = 3474743 Sessions being purged: deact 908425050 - del 908425047 = 3 now: 61981621229444 clocks per second: 2200000000 root 14385 804 3.5 191172632 4730412 ? SLsl 16:07 588:48 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 911899793 - del 910916541 = 983252 Sessions active: add 911899793 - deact 910916541 = 983252 Sessions being purged: deact 910916541 - del 910916541 = 0 now: 62025577976831 clocks per second: 2200000000 root 14385 804 3.5 191172632 4730412 ? SLsl 16:07 591:30 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 911899793 - del 911899793 = 0 Sessions active: add 911899793 - deact 911899793 = 0 Sessions being purged: deact 911899793 - del 911899793 = 0 now: 62069533405657 clocks per second: 2200000000 root 14385 804 3.5 191172632 4730412 ? SLsl 16:07 594:11 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 911899793 - del 911899793 = 0 Sessions active: add 911899793 - deact 911899793 = 0 Sessions being purged: deact 911899793 - del 911899793 = 0 now: 62113488851568 clocks per second: 2200000000 root 14385 804 3.5 191172632 4730412 ? SLsl 16:07 596:52 /usr/bin/vpp -c /etc/vpp/startup.conf Sessions total: add 911899793 - del 911899793 = 0 Sessions active: add 911899793 - deact 911899793 = 0 Sessions being purged: deact 911899793 - del 911899793 = 0 now: 62157444072982 clocks per second: 2200000000
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#10221): https://lists.fd.io/g/vpp-dev/message/10221 Mute This Topic: https://lists.fd.io/mt/24729023/21656 Group Owner: vpp-dev+ow...@lists.fd.io Unsubscribe: https://lists.fd.io/g/vpp-dev/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-