├── LICENSE ├── README.org ├── ansible ├── ansible.cfg ├── hosts ├── roles │ ├── common │ │ ├── files │ │ │ ├── clean_ips.py │ │ │ ├── criteria.json │ │ │ └── gather_data.py │ │ └── tasks │ │ │ └── main.yml │ ├── compiler │ │ └── tasks │ │ │ └── main.yml │ ├── dd │ │ └── tasks │ │ │ └── main.yml │ ├── downloads │ │ ├── files │ │ │ └── downloads.sh │ │ └── tasks │ │ │ └── main.yml │ ├── fio │ │ └── tasks │ │ │ └── main.yml │ ├── hardware │ │ └── tasks │ │ │ └── main.yml │ ├── lynis │ │ ├── files │ │ │ └── clean_ips.py │ │ └── tasks │ │ │ └── main.yml │ ├── ports │ │ ├── files │ │ │ └── clean_ips.py │ │ └── tasks │ │ │ └── main.yml │ ├── speedtest │ │ ├── files │ │ │ └── clean_ips.py │ │ └── tasks │ │ │ └── main.yml │ ├── sysbench │ │ ├── tasks │ │ │ └── main.yml │ │ └── vars │ │ │ └── main.yml │ ├── transcode │ │ └── tasks │ │ │ └── main.yml │ ├── unixbench │ │ └── tasks │ │ │ └── main.yml │ └── web │ │ ├── files │ │ └── clean_ips.py │ │ └── tasks │ │ └── main.yml └── site.yml ├── img ├── compile_mariadb.png ├── dd_cpu.png ├── dd_io.png ├── downloads_100v4.png ├── downloads_100v6.png ├── downloads_10gv4.png ├── fio_io.png ├── fio_iops.png ├── lynis.png ├── speedtest_eur_down.png ├── speedtest_eur_up.png ├── speedtest_near.png ├── sysbench_cpu.png ├── sysbench_fileio_iops.png ├── sysbench_fileio_mb.png ├── sysbench_oltp.png ├── sysbench_ram_iops.png ├── sysbench_ram_mb.png ├── transcode.png ├── unixbench.png ├── unixbench_detailed.png ├── web_ghost_wrk.png ├── web_ghost_wrk_100.png ├── web_ghost_wrk_150.png ├── web_ghost_wrk_200.png ├── web_wp_ab_10_requests.png ├── web_wp_ab_10_rps.png ├── web_wp_ab_10_times.png ├── web_wp_ab_25_requests.png ├── web_wp_ab_25_rps.png ├── web_wp_ab_25_times.png ├── web_wp_ab_50_requests.png ├── web_wp_ab_50_rps.png ├── web_wp_ab_50_times.png ├── web_wp_wrk_100.png ├── web_wp_wrk_150.png └── web_wp_wrk_200.png └── logs ├── do-5bucks-ubuntu ├── dd_cpu.log ├── dd_io.log ├── downloads.log ├── fio_randread.log ├── fio_randwrite.log ├── hard_dmidecode.log ├── hard_hwinfo.log ├── hard_inxi.log ├── hard_lsblk.log ├── hard_lscpu.log ├── hard_lshw.log ├── hard_virt_tech.log ├── lynis.log ├── netstat.log ├── nmap.log ├── nmap_pro.log ├── nmap_pro_v6.log ├── nmap_v6.log ├── speedtest_bar.log ├── speedtest_ber.log ├── speedtest_lon.log ├── speedtest_mad.log ├── speedtest_near.log ├── speedtest_par.log ├── speedtest_rom.log ├── sysbench_cpu.log ├── sysbench_oltp.log ├── sysbench_ram_randrd.log ├── sysbench_ram_randrw.log ├── sysbench_randrd.log ├── sysbench_randrw.log ├── unixbench.log ├── web_ghost_wrk_100.log ├── web_ghost_wrk_150.log ├── web_ghost_wrk_200.log ├── web_wp_ab_10.log ├── web_wp_ab_25.log ├── web_wp_ab_50.log ├── web_wp_wrk_100.log ├── web_wp_wrk_150.log └── web_wp_wrk_200.log ├── linode-linode1024-ubuntu ├── compiler.log ├── dd_cpu.log ├── dd_io.log ├── downloads.log ├── fio_randread.log ├── fio_randwrite.log ├── hard_dmidecode.log ├── hard_hwinfo.log ├── hard_inxi.log ├── hard_lsblk.log ├── hard_lscpu.log ├── hard_lshw.log ├── hard_virt_tech.log ├── lynis.log ├── netstat.log ├── nmap.log ├── nmap_pro.log ├── nmap_pro_v6.log ├── nmap_v6.log ├── speedtest_bar.log ├── speedtest_ber.log ├── speedtest_lon.log ├── speedtest_mad.log ├── speedtest_near.log ├── speedtest_par.log ├── speedtest_rom.log ├── sysbench_cpu.log ├── sysbench_oltp.log ├── sysbench_ram_randrd.log ├── sysbench_ram_randrw.log ├── sysbench_randrd.log ├── sysbench_randrw.log ├── transcode.log ├── unixbench.log ├── web_ghost_wrk_100.log ├── web_ghost_wrk_150.log ├── web_ghost_wrk_200.log ├── web_wp_ab_10.log ├── web_wp_ab_25.log ├── web_wp_ab_50.log ├── web_wp_wrk_100.log ├── web_wp_wrk_150.log └── web_wp_wrk_200.log ├── ovh-vpsssd1-ubuntu ├── compiler.log ├── dd_cpu.log ├── dd_io.log ├── downloads.log ├── fio_randread.log ├── fio_randwrite.log ├── hard_dmidecode.log ├── hard_hwinfo.log ├── hard_inxi.log ├── hard_lsblk.log ├── hard_lscpu.log ├── hard_lshw.log ├── hard_virt_tech.log ├── lynis.log ├── netstat.log ├── nmap.log ├── nmap_pro.log ├── nmap_pro_v6.log ├── nmap_v6.log ├── speedtest_bar.log ├── speedtest_ber.log ├── speedtest_lon.log ├── speedtest_mad.log ├── speedtest_near.log ├── speedtest_par.log ├── speedtest_rom.log ├── sysbench_cpu.log ├── sysbench_oltp.log ├── sysbench_ram_randrd.log ├── sysbench_ram_randrw.log ├── sysbench_randrd.log ├── sysbench_randrw.log ├── transcode.log ├── unixbench.log ├── web_ghost_wrk_100.log ├── web_ghost_wrk_150.log ├── web_ghost_wrk_200.log ├── web_wp_ab_10.log ├── web_wp_ab_25.log ├── web_wp_ab_50.log ├── web_wp_wrk_100.log ├── web_wp_wrk_150.log └── web_wp_wrk_200.log ├── scaleway-vc1s-ubuntu ├── compiler.log ├── dd_cpu.log ├── dd_io.log ├── downloads.log ├── fio_randread.log ├── fio_randwrite.log ├── hard_dmidecode.log ├── hard_hwinfo.log ├── hard_inxi.log ├── hard_lsblk.log ├── hard_lscpu.log ├── hard_lshw.log ├── hard_virt_tech.log ├── lynis.log ├── netstat.log ├── nmap.log ├── nmap_pro.log ├── nmap_pro_v6.log ├── nmap_v6.log ├── speedtest_bar.log ├── speedtest_ber.log ├── speedtest_lon.log ├── speedtest_mad.log ├── speedtest_near.log ├── speedtest_par.log ├── speedtest_rom.log ├── sysbench_cpu.log ├── sysbench_oltp.log ├── sysbench_ram_randrd.log ├── sysbench_ram_randrw.log ├── sysbench_randrd.log ├── sysbench_randrw.log ├── transcode.log ├── unixbench.log ├── web_ghost_wrk_100.log ├── web_ghost_wrk_150.log ├── web_ghost_wrk_200.log ├── web_wp_ab_10.log ├── web_wp_ab_25.log ├── web_wp_ab_50.log ├── web_wp_wrk_100.log ├── web_wp_wrk_150.log └── web_wp_wrk_200.log ├── tables.org ├── vultr-20gbssd-ubuntu ├── dd_cpu.log ├── dd_io.log ├── fio_randread.log ├── fio_randwrite.log ├── hard_dmidecode.log ├── hard_hwinfo.log ├── hard_inxi.log ├── hard_lsblk.log ├── hard_lscpu.log ├── hard_lshw.log ├── hard_virt_tech.log ├── lynis.log ├── sysbench_cpu.log ├── sysbench_oltp.log ├── sysbench_randrd.log ├── sysbench_randrw.log └── unixbench.log └── vultr-25gbssd-ubuntu ├── compiler.log ├── dd_cpu.log ├── dd_io.log ├── downloads.log ├── fio_randread.log ├── fio_randwrite.log ├── hard_dmidecode.log ├── hard_hwinfo.log ├── hard_inxi.log ├── hard_lsblk.log ├── hard_lscpu.log ├── hard_lshw.log ├── hard_virt_tech.log ├── lynis.log ├── netstat.log ├── nmap.log ├── nmap_pro.log ├── nmap_pro_v6.log ├── nmap_v6.log ├── speedtest_bar.log ├── speedtest_ber.log ├── speedtest_lon.log ├── speedtest_mad.log ├── speedtest_near.log ├── speedtest_par.log ├── speedtest_rom.log ├── sysbench_cpu.log ├── sysbench_oltp.log ├── sysbench_ram_randrd.log ├── sysbench_ram_randrw.log ├── sysbench_randrd.log ├── sysbench_randrw.log ├── transcode.log ├── unixbench.log ├── web_ghost_wrk_100.log ├── web_ghost_wrk_150.log ├── web_ghost_wrk_200.log ├── web_wp_ab_10.log ├── web_wp_ab_25.log ├── web_wp_ab_50.log ├── web_wp_wrk_100.log ├── web_wp_wrk_150.log └── web_wp_wrk_200.log /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 joe di castro 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /ansible/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | inventory = hosts -------------------------------------------------------------------------------- /ansible/hosts: -------------------------------------------------------------------------------- 1 | [ovh] 2 | ovh-vpsssd1-ubuntu ansible_host=X.X.X.X ansible_python_interpreter=/usr/bin/python3 3 | 4 | [linode] 5 | linode-linode1024-ubuntu ansible_host=X.X.X.X ansible_python_interpreter=/usr/bin/python3 6 | 7 | [digitalocean] 8 | do-5bucks-ubuntu ansible_host=X.X.X.X ansible_python_interpreter=/usr/bin/python3 9 | 10 | [scaleway] 11 | scaleway-vc1s-ubuntu ansible_host=X.X.X.X ansible_python_interpreter=/usr/bin/python3 12 | 13 | [vultr] 14 | vultr-20gbssd-ubuntu ansible_host=X.X.X.X ansible_python_interpreter=/usr/bin/python3 15 | vultr-25gbssd-ubuntu ansible_host=X.X.X.X ansible_python_interpreter=/usr/bin/python3 16 | 17 | 18 | # vars by provider 19 | [ovh:vars] 20 | ansible_user=root 21 | 22 | [linode:vars] 23 | ansible_user=root 24 | 25 | [digitalocean:vars] 26 | ansible_user=root 27 | 28 | [scaleway:vars] 29 | ansible_user=root 30 | 31 | [vultr:vars] 32 | ansible_user=root 33 | -------------------------------------------------------------------------------- /ansible/roles/common/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - name: gather data from logs 4 | script: gather_data.py -p ../logs -j {{ role_path }}/files/criteria.json 5 | delegate_to: localhost 6 | become: no 7 | tags: 8 | - gather 9 | -------------------------------------------------------------------------------- /ansible/roles/compiler/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - name: download mariadb 4 | get_url: 5 | url: https://downloads.mariadb.org/f/mariadb-10.1.22/source/mariadb-10.1.22.tar.gz?serve 6 | dest: /tmp/mariadb.tar.gz 7 | 8 | - name: uncompress mariadb 9 | unarchive: 10 | src: /tmp/mariadb.tar.gz 11 | dest: /tmp 12 | copy: no 13 | 14 | - name: set source repo 15 | apt_repository: 16 | repo: "deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates universe" 17 | state: present 18 | 19 | - name: install packages need to build mariadb 20 | apt: 21 | name: "{{item}}" 22 | state: build-dep 23 | update_cache: yes 24 | install_recommends: no 25 | with_items: 26 | - mariadb-server 27 | 28 | - name: configure the mariadb build 29 | shell: cmake . -DBUILD_CONFIG=mysql_release 30 | args: 31 | chdir: /tmp/mariadb-10.1.22 32 | 33 | - name: compile mariadb 34 | shell: (time -p make) > /tmp/compiler.log 2>&1 35 | args: 36 | executable: /bin/bash 37 | chdir: /tmp/mariadb-10.1.22 38 | 39 | - name: retrieve log 40 | fetch: 41 | src: /tmp/compiler.log 42 | dest: ../logs/{{inventory_hostname}}/compiler.log 43 | flat: yes 44 | 45 | - name: remove mariadb files 46 | file: 47 | path: /tmp/test 48 | state: absent 49 | with_items: 50 | - /tmp/mariadb-10.1.22 51 | - /tmp/mariadb.tar.gz 52 | 53 | - name: remove installed packages 54 | apt: 55 | name: "{{item}}" 56 | autoremove: yes 57 | purge: yes 58 | state: absent 59 | with_items: 60 | - autotools-dev 61 | - binutils 62 | - bison 63 | - build-essential 64 | - chrpath 65 | - cmake 66 | - cmake-data 67 | - cpp 68 | - cpp-5 69 | - debhelper 70 | - dh-apparmor 71 | - dh-strip-nondeterminism 72 | - dpkg-dev 73 | - g++ 74 | - g++-5 75 | - gcc 76 | - gcc-5 77 | - gdb 78 | - gettext 79 | - icu-devtools 80 | - intltool-debian 81 | - libaio-dev 82 | - libaio1 83 | - libarchive-zip-perl 84 | - libarchive13 85 | - libasan2 86 | - libatomic1 87 | - libbabeltrace-ctf1 88 | - libbabeltrace1 89 | - libbison-dev 90 | - libboost-dev 91 | - libboost1.58-dev 92 | - libc-dev-bin 93 | - libc6-dev 94 | - libcc1-0 95 | - libcilkrts5 96 | - libcroco3 97 | - libcurl3 98 | - libdpkg-perl 99 | - libfile-stripnondeterminism-perl 100 | - libgcc-5-dev 101 | - libgomp1 102 | - libicu-dev 103 | - libisl15 104 | - libitm1 105 | - libjemalloc-dev 106 | - libjemalloc1 107 | - libjsoncpp1 108 | - libjudy-dev 109 | - libjudydebian1 110 | - liblsan0 111 | - libltdl-dev 112 | - libltdl7 113 | - libmpc3 114 | - libmpx0 115 | - libncurses5-dev 116 | - libodbc1 117 | - libpam0g-dev 118 | - libpcre16-3 119 | - libpcre3-dev 120 | - libpcre32-3 121 | - libpcrecpp0v5 122 | - libquadmath0 123 | - libreadline-gplv2-dev 124 | - libstdc++-5-dev 125 | - libtimedate-perl 126 | - libtinfo-dev 127 | - libtsan0 128 | - libubsan0 129 | - libunistring0 130 | - libxml2-dev 131 | - linux-libc-dev 132 | - m4 133 | - make 134 | - odbcinst 135 | - odbcinst1debian2 136 | - po-debconf 137 | - unixodbc 138 | - unixodbc-dev 139 | - zlib1g-dev 140 | -------------------------------------------------------------------------------- /ansible/roles/dd/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - name: run dd CPU test 4 | shell: dd if=/dev/zero bs=1M count=1024 2>> dd_cpu.log | md5sum 5 | args: 6 | chdir: /tmp 7 | with_sequence: count=5 8 | 9 | - name: retrieve log 10 | fetch: 11 | src: /tmp/dd_cpu.log 12 | dest: ../logs/{{inventory_hostname}}/dd_cpu.log 13 | flat: yes 14 | 15 | - name: run dd IO test 16 | shell: dd if=/dev/zero of=test bs=64k count=16k conv=fdatasync 2>> dd_io.log 17 | args: 18 | chdir: /tmp 19 | with_sequence: count=5 20 | 21 | - name: retrieve log 22 | fetch: 23 | src: /tmp/dd_io.log 24 | dest: ../logs/{{inventory_hostname}}/dd_io.log 25 | flat: yes 26 | 27 | - name: remove auxiliary file 28 | file: 29 | path: /tmp/test 30 | state: absent 31 | 32 | -------------------------------------------------------------------------------- /ansible/roles/downloads/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - name: test downloads 4 | script: downloads.sh 5 | 6 | - name: concatenate logs 7 | shell: cat downloads_1.log downloads_2.log downloads_3.log > downloads.log 8 | args: 9 | chdir: /tmp 10 | 11 | - name: retrieve log 12 | fetch: 13 | src: /tmp/downloads.log 14 | dest: ../logs/{{inventory_hostname}}/downloads.log 15 | flat: yes 16 | 17 | -------------------------------------------------------------------------------- /ansible/roles/fio/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - name: install fio 4 | apt: 5 | name: fio 6 | state: latest 7 | update_cache: yes 8 | install_recommends: no 9 | 10 | - name: run fio randread 11 | shell: fio --name=randread --ioengine=libaio --iodepth=16 --rw=randread --bs=4k --direct=1 --size=512M --numjobs=8 --runtime=240 --group_reporting >> /tmp/fio_randread.log 12 | args: 13 | chdir: /tmp 14 | with_sequence: count=5 15 | 16 | - name: retrieve log 17 | fetch: 18 | src: /tmp/fio_randread.log 19 | dest: ../logs/{{inventory_hostname}}/fio_randread.log 20 | flat: yes 21 | 22 | - name: remove auxiliary files 23 | file: 24 | path: "{{item}}" 25 | state: absent 26 | with_items: 27 | - /tmp/randread.0.0 28 | - /tmp/randread.1.0 29 | - /tmp/randread.2.0 30 | - /tmp/randread.3.0 31 | - /tmp/randread.4.0 32 | - /tmp/randread.5.0 33 | - /tmp/randread.6.0 34 | - /tmp/randread.7.0 35 | 36 | - name: run fio randwrite 37 | shell: fio --name=randwrite --ioengine=libaio --iodepth=16 --rw=randwrite --bs=4k --direct=1 --size=512M --numjobs=8 --runtime=240 --group_reporting >> /tmp/fio_randwrite.log 38 | args: 39 | chdir: /tmp 40 | with_sequence: count=5 41 | 42 | - name: retrieve log 43 | fetch: 44 | src: /tmp/fio_randwrite.log 45 | dest: ../logs/{{inventory_hostname}}/fio_randwrite.log 46 | flat: yes 47 | 48 | - name: remove auxiliary files 49 | file: 50 | path: "{{item}}" 51 | state: absent 52 | with_items: 53 | - /tmp/randwrite.0.0 54 | - /tmp/randwrite.1.0 55 | - /tmp/randwrite.2.0 56 | - /tmp/randwrite.3.0 57 | - /tmp/randwrite.4.0 58 | - /tmp/randwrite.5.0 59 | - /tmp/randwrite.6.0 60 | - /tmp/randwrite.7.0 61 | 62 | - name: remove fio 63 | apt: 64 | name: fio 65 | autoremove: yes 66 | purge: yes 67 | state: absent 68 | 69 | -------------------------------------------------------------------------------- /ansible/roles/hardware/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - name: install dmidecode & lshw & inxi & hwinfo 4 | apt: 5 | name: "{{item}}" 6 | state: latest 7 | update_cache: yes 8 | install_recommends: no 9 | with_items: 10 | - dmidecode 11 | - lshw 12 | - inxi 13 | - hwinfo 14 | 15 | - name: run dmidecode 16 | shell: dmidecode > hard_dmidecode.log 17 | args: 18 | chdir: /tmp 19 | 20 | - name: retrieve dmidecode log 21 | fetch: 22 | src: /tmp/hard_dmidecode.log 23 | dest: ../logs/{{inventory_hostname}}/hard_dmidecode.log 24 | flat: yes 25 | 26 | - name: detect virtualization technology 27 | shell: systemd-detect-virt > hard_virt_tech.log 28 | args: 29 | chdir: /tmp 30 | 31 | - name: retrieve vir-tech log 32 | fetch: 33 | src: /tmp/hard_virt_tech.log 34 | dest: ../logs/{{inventory_hostname}}/hard_virt_tech.log 35 | flat: yes 36 | 37 | - name: run lscpu 38 | shell: lscpu > hard_lscpu.log 39 | args: 40 | chdir: /tmp 41 | 42 | - name: retrieve lscpu log 43 | fetch: 44 | src: /tmp/hard_lscpu.log 45 | dest: ../logs/{{inventory_hostname}}/hard_lscpu.log 46 | flat: yes 47 | 48 | - name: run lsblk 49 | shell: lsblk -p > hard_lsblk.log 50 | args: 51 | chdir: /tmp 52 | 53 | - name: retrieve lsblk log 54 | fetch: 55 | src: /tmp/hard_lsblk.log 56 | dest: ../logs/{{inventory_hostname}}/hard_lsblk.log 57 | flat: yes 58 | 59 | - name: run lshw 60 | shell: lshw > hard_lshw.log 61 | args: 62 | chdir: /tmp 63 | 64 | - name: retrieve lshw log 65 | fetch: 66 | src: /tmp/hard_lshw.log 67 | dest: ../logs/{{inventory_hostname}}/hard_lshw.log 68 | flat: yes 69 | 70 | - name: run inxi 71 | shell: inxi -Fxxx -c0 > hard_inxi.log 72 | args: 73 | chdir: /tmp 74 | 75 | - name: retrieve inxi log 76 | fetch: 77 | src: /tmp/hard_inxi.log 78 | dest: ../logs/{{inventory_hostname}}/hard_inxi.log 79 | flat: yes 80 | 81 | - name: run hwinfo 82 | shell: hwinfo > hard_hwinfo.log 83 | args: 84 | chdir: /tmp 85 | 86 | - name: retrieve hwinfo log 87 | fetch: 88 | src: /tmp/hard_hwinfo.log 89 | dest: ../logs/{{inventory_hostname}}/hard_hwinfo.log 90 | flat: yes 91 | 92 | - name: remove dmidecode & lswh & inxi & hwinfo 93 | apt: 94 | name: "{{item}}" 95 | autoremove: yes 96 | purge: yes 97 | state: absent 98 | with_items: 99 | - dmidecode 100 | - lshw 101 | - inxi 102 | - hwinfo 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /ansible/roles/lynis/files/clean_ips.py: -------------------------------------------------------------------------------- 1 | ../../common/files/clean_ips.py -------------------------------------------------------------------------------- /ansible/roles/lynis/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # We only want to execute Lynis with a fresh provisioned machine, once you 4 | # install some packages the results could change if you rerun the playbook. 5 | - name: check if Lynis has been already executed 6 | stat: 7 | path: /var/log/lynis.log 8 | register: lynis_log 9 | 10 | - name: download the Lynis tool 11 | get_url: 12 | url: https://github.com/CISOfy/lynis/archive/master.tar.gz 13 | dest: /tmp/lynis.tar.gz 14 | when: lynis_log.stat.exists == False 15 | 16 | - name: uncompress Lynis 17 | unarchive: 18 | src: /tmp/lynis.tar.gz 19 | dest: /tmp 20 | copy: no 21 | when: lynis_log.stat.exists == False 22 | 23 | - name: run Lynis 24 | command: ./lynis audit system 25 | args: 26 | chdir: /tmp/lynis-master 27 | when: lynis_log.stat.exists == False 28 | 29 | - name: remove Lynis 30 | file: 31 | path: "{{item}}" 32 | state: absent 33 | with_items: 34 | - /tmp/lynis-master 35 | - /tmp/lynis.tar.gz 36 | when: lynis_log.stat.exists == False 37 | 38 | - name: retrieve Lynis log 39 | fetch: 40 | src: /var/log/lynis.log 41 | dest: ../logs/{{inventory_hostname}}/lynis.log 42 | flat: yes 43 | 44 | # running it in local allows you to retrieve the original unchanged file from 45 | # the server if you need it. 46 | - name: clean IPs from log 47 | script: clean_ips.py lynis.log -p ../logs 48 | delegate_to: localhost 49 | become: no 50 | -------------------------------------------------------------------------------- /ansible/roles/ports/files/clean_ips.py: -------------------------------------------------------------------------------- 1 | ../../common/files/clean_ips.py -------------------------------------------------------------------------------- /ansible/roles/ports/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # Some of this information is also available in the Lynis tool report 3 | 4 | - name: install nmap 5 | apt: 6 | name: nmap 7 | state: latest 8 | update_cache: yes 9 | install_recommends: no 10 | 11 | - name: run netstat 12 | shell: netstat -plunt > netstat.log 13 | args: 14 | chdir: /tmp 15 | 16 | - name: run nmap scan IPv4 17 | shell: nmap -vvv -sT -sU -sV localhost -oN nmap.log --top-ports 5000 18 | args: 19 | chdir: /tmp 20 | 21 | - name: run nmap scan IPv6 22 | shell: nmap -vvv -6 -sT -sU -sV localhost -oN nmap_v6.log --top-ports 5000 23 | args: 24 | chdir: /tmp 25 | 26 | - name: run nmap scan protocols IPv4 27 | shell: nmap -vvv -sO localhost -oN nmap_pro.log 28 | args: 29 | chdir: /tmp 30 | 31 | - name: run nmap scan protocols IPv6 32 | shell: nmap -vvv -6 -sO localhost -oN nmap_pro_v6.log 33 | args: 34 | chdir: /tmp 35 | 36 | - name: retrieve logs 37 | fetch: 38 | src: /tmp/{{item}}.log 39 | dest: ../logs/{{inventory_hostname}}/{{item}}.log 40 | flat: yes 41 | with_items: 42 | - netstat 43 | - nmap 44 | - nmap_v6 45 | - nmap_pro 46 | - nmap_pro_v6 47 | 48 | # running it in local allows you to retrieve the original unchanged file from 49 | # the server if you need it. 50 | - name: clean IPs from log 51 | script: clean_ips.py netstat.log -p ../logs 52 | delegate_to: localhost 53 | become: no 54 | 55 | - name: remove nmap 56 | apt: 57 | name: nmap 58 | autoremove: yes 59 | purge: yes 60 | state: absent 61 | -------------------------------------------------------------------------------- /ansible/roles/speedtest/files/clean_ips.py: -------------------------------------------------------------------------------- 1 | ../../common/files/clean_ips.py -------------------------------------------------------------------------------- /ansible/roles/speedtest/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - name: download speedtest-cli 4 | get_url: 5 | url: https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py 6 | dest: /tmp/speedtest-cli 7 | 8 | - name: set execution permission 9 | file: 10 | path: /tmp/speedtest-cli 11 | mode: "u=rwx,g=rwx,o=rx" 12 | 13 | - name: run speedtest-cli 14 | shell: ./speedtest-cli >> speedtest_near.log 15 | args: 16 | chdir: /tmp 17 | with_sequence: count=3 18 | 19 | - name: run speedtest-cli for Madrid 20 | shell: ./speedtest-cli --server 1680 >> speedtest_mad.log 21 | args: 22 | chdir: /tmp 23 | with_sequence: count=3 24 | 25 | - name: run speedtest-cli for Barcelona 26 | shell: ./speedtest-cli --server 1695 >> speedtest_bar.log 27 | args: 28 | chdir: /tmp 29 | with_sequence: count=3 30 | 31 | - name: run speedtest-cli for Paris 32 | shell: ./speedtest-cli --server 5559 >> speedtest_par.log 33 | args: 34 | chdir: /tmp 35 | with_sequence: count=3 36 | 37 | - name: run speedtest-cli for London 38 | shell: ./speedtest-cli --server 2789 >> speedtest_lon.log 39 | args: 40 | chdir: /tmp 41 | with_sequence: count=3 42 | 43 | - name: run speedtest-cli for Berlin 44 | shell: ./speedtest-cli --server 10259 >> speedtest_ber.log 45 | args: 46 | chdir: /tmp 47 | with_sequence: count=3 48 | 49 | - name: run speedtest-cli for Rome 50 | shell: ./speedtest-cli --server 3243 >> speedtest_rom.log 51 | args: 52 | chdir: /tmp 53 | with_sequence: count=3 54 | 55 | - name: retrieve logs 56 | fetch: 57 | src: /tmp/{{item}}.log 58 | dest: ../logs/{{inventory_hostname}}/{{item}}.log 59 | flat: yes 60 | with_items: 61 | - speedtest_near 62 | - speedtest_mad 63 | - speedtest_bar 64 | - speedtest_par 65 | - speedtest_lon 66 | - speedtest_ber 67 | - speedtest_rom 68 | 69 | - name: remove speedtest-cli 70 | file: 71 | path: "{{item}}" 72 | state: absent 73 | with_items: 74 | - /tmp/speedtest-cli 75 | 76 | # running it in local allows you to retrieve the original unchanged file from 77 | # the server if you need it. 78 | - name: clean IPs from log 79 | script: clean_ips.py {{item}} -p ../logs 80 | delegate_to: localhost 81 | become: no 82 | with_items: 83 | - speedtest_near 84 | - speedtest_mad 85 | - speedtest_bar 86 | - speedtest_par 87 | - speedtest_lon 88 | - speedtest_ber 89 | - speedtest_rom 90 | 91 | -------------------------------------------------------------------------------- /ansible/roles/sysbench/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | mysql_root_pass: password 4 | -------------------------------------------------------------------------------- /ansible/roles/transcode/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - name: check if video has been already downloaded 3 | stat: 4 | path: /tmp/video4k.mp4 5 | register: video_down 6 | 7 | - name: download the video 8 | get_url: 9 | url: http://distribution.bbb3d.renderfarming.net/video/mp4/bbb_sunflower_2160p_30fps_normal.mp4 10 | dest: /tmp/video4k.mp4 11 | when: video_down.stat.exists == False 12 | 13 | - name: install ffmpeg 14 | apt: 15 | name: ffmpeg 16 | state: latest 17 | update_cache: yes 18 | install_recommends: no 19 | 20 | - name: transcode video 21 | shell: (ffmpeg -i video4k.mp4 -vf scale=1920:1080 -c:v h264 -b:v 5000k -minrate 5000k -maxrate 5000k -c:a aac -strict -2 -y -b:a 128k /tmp/video_1080p.mp4) > /tmp/transcode.log 2>&1 22 | args: 23 | chdir: /tmp/ 24 | executable: /bin/bash 25 | 26 | - name: retrieve log 27 | fetch: 28 | src: /tmp/transcode.log 29 | dest: ../logs/{{inventory_hostname}}/transcode.log 30 | flat: yes 31 | 32 | - name: remove ffmpeg 33 | apt: 34 | name: ffmpeg 35 | autoremove: yes 36 | purge: yes 37 | state: absent 38 | 39 | - name: remove videos 40 | file: 41 | path: "{{item}}" 42 | state: absent 43 | with_items: 44 | - /tmp/video4k.mp4 45 | - /tmp/video_1080p.mp4 46 | 47 | 48 | -------------------------------------------------------------------------------- /ansible/roles/unixbench/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - name: install packages needed by UnixBench 4 | apt: 5 | name: "{{item}}" 6 | state: latest 7 | update_cache: yes 8 | install_recommends: no 9 | with_items: 10 | - gcc-5 11 | - build-essential 12 | 13 | - name: download UnixBench 14 | get_url: 15 | url: https://github.com/kdlucas/byte-unixbench/archive/master.tar.gz 16 | dest: /tmp/unixbench.tar.gz 17 | 18 | - name: untar the file 19 | unarchive: 20 | src: /tmp/unixbench.tar.gz 21 | dest: /tmp 22 | copy: no 23 | 24 | - name: run UnixBench 25 | shell: ./Run >> /tmp/unixbench.log 26 | args: 27 | chdir: /tmp/byte-unixbench-master/UnixBench 28 | 29 | - name: remove UnixBench 30 | file: 31 | path: "{{item}}" 32 | state: absent 33 | with_items: 34 | - /tmp/byte-unixbench-master 35 | - /tmp/unixbench.tar.gz 36 | 37 | - name: retrieve log 38 | fetch: 39 | src: /tmp/unixbench.log 40 | dest: ../logs/{{inventory_hostname}}/unixbench.log 41 | flat: yes 42 | 43 | - name: remove installed packages 44 | apt: 45 | name: "{{item}}" 46 | autoremove: yes 47 | purge: yes 48 | state: absent 49 | with_items: 50 | - gcc-5 51 | - build-essential 52 | 53 | -------------------------------------------------------------------------------- /ansible/roles/web/files/clean_ips.py: -------------------------------------------------------------------------------- 1 | ../../common/files/clean_ips.py -------------------------------------------------------------------------------- /ansible/site.yml: -------------------------------------------------------------------------------- 1 | - hosts: all 2 | become: yes 3 | become_method: sudo 4 | 5 | # pre_tasks: 6 | # - name: Install python for Ansible on Ubuntu 7 | # raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal) 8 | # when: ansible_distribution == "Ubuntu" 9 | # changed_when: False 10 | 11 | roles: 12 | - { role: lynis, tags: ['security', 'lynis', 'info']} 13 | - { role: ports, tags: ['security', 'ports', 'network', 'info']} 14 | - { role: hardware, tags: ['hardware', 'info']} 15 | - { role: unixbench, tags: ['unixbench', 'benchmark']} 16 | - { role: sysbench, tags: ['sysbench', 'benchmark']} 17 | - { role: dd, tags: ['dd', 'disk', 'benchmark']} 18 | - { role: fio, tags: ['fio', 'disk', 'benchmark']} 19 | - { role: speedtest, tags: ['speedtest', 'network', 'benchmark']} 20 | - { role: downloads, tags: ['downloads', 'network', 'benchmark']} #caution! ~93Gbits 21 | - { role: compiler, tags: ['compiler', 'benchmark']} 22 | - { role: transcode, tags: ['transcode', 'multimedia', 'benchmark']} 23 | - { role: web, tags: ['web', 'benchmark']} 24 | - { role: common, tags: ['common']} 25 | -------------------------------------------------------------------------------- /img/compile_mariadb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/compile_mariadb.png -------------------------------------------------------------------------------- /img/dd_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/dd_cpu.png -------------------------------------------------------------------------------- /img/dd_io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/dd_io.png -------------------------------------------------------------------------------- /img/downloads_100v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/downloads_100v4.png -------------------------------------------------------------------------------- /img/downloads_100v6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/downloads_100v6.png -------------------------------------------------------------------------------- /img/downloads_10gv4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/downloads_10gv4.png -------------------------------------------------------------------------------- /img/fio_io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/fio_io.png -------------------------------------------------------------------------------- /img/fio_iops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/fio_iops.png -------------------------------------------------------------------------------- /img/lynis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/lynis.png -------------------------------------------------------------------------------- /img/speedtest_eur_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/speedtest_eur_down.png -------------------------------------------------------------------------------- /img/speedtest_eur_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/speedtest_eur_up.png -------------------------------------------------------------------------------- /img/speedtest_near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/speedtest_near.png -------------------------------------------------------------------------------- /img/sysbench_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/sysbench_cpu.png -------------------------------------------------------------------------------- /img/sysbench_fileio_iops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/sysbench_fileio_iops.png -------------------------------------------------------------------------------- /img/sysbench_fileio_mb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/sysbench_fileio_mb.png -------------------------------------------------------------------------------- /img/sysbench_oltp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/sysbench_oltp.png -------------------------------------------------------------------------------- /img/sysbench_ram_iops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/sysbench_ram_iops.png -------------------------------------------------------------------------------- /img/sysbench_ram_mb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/sysbench_ram_mb.png -------------------------------------------------------------------------------- /img/transcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/transcode.png -------------------------------------------------------------------------------- /img/unixbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/unixbench.png -------------------------------------------------------------------------------- /img/unixbench_detailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/unixbench_detailed.png -------------------------------------------------------------------------------- /img/web_ghost_wrk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_ghost_wrk.png -------------------------------------------------------------------------------- /img/web_ghost_wrk_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_ghost_wrk_100.png -------------------------------------------------------------------------------- /img/web_ghost_wrk_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_ghost_wrk_150.png -------------------------------------------------------------------------------- /img/web_ghost_wrk_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_ghost_wrk_200.png -------------------------------------------------------------------------------- /img/web_wp_ab_10_requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_wp_ab_10_requests.png -------------------------------------------------------------------------------- /img/web_wp_ab_10_rps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_wp_ab_10_rps.png -------------------------------------------------------------------------------- /img/web_wp_ab_10_times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_wp_ab_10_times.png -------------------------------------------------------------------------------- /img/web_wp_ab_25_requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_wp_ab_25_requests.png -------------------------------------------------------------------------------- /img/web_wp_ab_25_rps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_wp_ab_25_rps.png -------------------------------------------------------------------------------- /img/web_wp_ab_25_times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_wp_ab_25_times.png -------------------------------------------------------------------------------- /img/web_wp_ab_50_requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_wp_ab_50_requests.png -------------------------------------------------------------------------------- /img/web_wp_ab_50_rps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_wp_ab_50_rps.png -------------------------------------------------------------------------------- /img/web_wp_ab_50_times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_wp_ab_50_times.png -------------------------------------------------------------------------------- /img/web_wp_wrk_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_wp_wrk_100.png -------------------------------------------------------------------------------- /img/web_wp_wrk_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_wp_wrk_150.png -------------------------------------------------------------------------------- /img/web_wp_wrk_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joedicastro/vps-comparison/2b7f7c1d9ae8722dba83d6597fdf84d0533526ff/img/web_wp_wrk_200.png -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/dd_cpu.log: -------------------------------------------------------------------------------- 1 | 1024+0 records in 2 | 1024+0 records out 3 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 3.26176 s, 329 MB/s 4 | 1024+0 records in 5 | 1024+0 records out 6 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 3.29149 s, 326 MB/s 7 | 1024+0 records in 8 | 1024+0 records out 9 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 3.29492 s, 326 MB/s 10 | 1024+0 records in 11 | 1024+0 records out 12 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 3.2968 s, 326 MB/s 13 | 1024+0 records in 14 | 1024+0 records out 15 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 3.31525 s, 324 MB/s 16 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/dd_io.log: -------------------------------------------------------------------------------- 1 | 16384+0 records in 2 | 16384+0 records out 3 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 1.70473 s, 630 MB/s 4 | 16384+0 records in 5 | 16384+0 records out 6 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 1.4057 s, 764 MB/s 7 | 16384+0 records in 8 | 16384+0 records out 9 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 1.56102 s, 688 MB/s 10 | 16384+0 records in 11 | 16384+0 records out 12 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 1.55368 s, 691 MB/s 13 | 16384+0 records in 14 | 16384+0 records out 15 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 1.45143 s, 740 MB/s 16 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/downloads.log: -------------------------------------------------------------------------------- 1 | Download a 100Mb file: 2 | ====================== 3 | 4 | IPv4 speedtests 5 | 6 | CacheFly CDN (IPv4): 111MB/s 7 | DigitalOcean (GB) (IPv4): 140MB/s 8 | LeaseWeb (NL) (IPv4): 78.2MB/s 9 | Linode (GB) (IPv4): 122MB/s 10 | Online.net (FR) (IPv4): 57.5MB/s 11 | OVH (FR) (IPv4): 12 | Softlayer (FR) (IPv4): 44.9MB/s 13 | Vultr (GB) (IPv4): 101MB/s 14 | 15 | IPv6 speedtests 16 | 17 | CacheFly CDN (IPv6): 18 | DigitalOcean (GB) (IPv6): 143MB/s 19 | LeaseWeb (NL) (IPv6): 13.2MB/s 20 | Linode (GB) (IPv6): 123MB/s 21 | Online.net (FR) (IPv6): 22 | OVH (FR) (IPv6): 23 | Softlayer (FR) (IPv6): 88.9MB/s 24 | Vultr (GB) (IPv6): 25 | 26 | Download a 10Gb file: 27 | ====================== 28 | 29 | IPv4 speedtests 30 | 31 | CDN77.com (NL) (IPv4): 68.7MB/s 32 | Online.net 10G (FR) (IPv4): 60.2MB/s 33 | OVH 10G (FR) (IPv4): 34 | 35 | IPv6 speedtests 36 | 37 | CDN77.com (NL) (IPv6): 38 | Online.net 10G (FR) (IPv6): 39 | OVH 10G (FR) (IPv6): 40 | 41 | Download a 100Mb file: 42 | ====================== 43 | 44 | IPv4 speedtests 45 | 46 | CacheFly CDN (IPv4): 127MB/s 47 | DigitalOcean (GB) (IPv4): 137MB/s 48 | LeaseWeb (NL) (IPv4): 92.4MB/s 49 | Linode (GB) (IPv4): 124MB/s 50 | Online.net (FR) (IPv4): 85.8MB/s 51 | OVH (FR) (IPv4): 52 | Softlayer (FR) (IPv4): 96.7MB/s 53 | Vultr (GB) (IPv4): 135MB/s 54 | 55 | IPv6 speedtests 56 | 57 | CacheFly CDN (IPv6): 58 | DigitalOcean (GB) (IPv6): 150MB/s 59 | LeaseWeb (NL) (IPv6): 14.2MB/s 60 | Linode (GB) (IPv6): 126MB/s 61 | Online.net (FR) (IPv6): 62 | OVH (FR) (IPv6): 63 | Softlayer (FR) (IPv6): 93.8MB/s 64 | Vultr (GB) (IPv6): 65 | 66 | Download a 10Gb file: 67 | ====================== 68 | 69 | IPv4 speedtests 70 | 71 | CDN77.com (NL) (IPv4): 63.3MB/s 72 | Online.net 10G (FR) (IPv4): 65.2MB/s 73 | OVH 10G (FR) (IPv4): 39.7MB/s 74 | 75 | IPv6 speedtests 76 | 77 | CDN77.com (NL) (IPv6): 78 | Online.net 10G (FR) (IPv6): 79 | OVH 10G (FR) (IPv6): 80 | 81 | Download a 100Mb file: 82 | ====================== 83 | 84 | IPv4 speedtests 85 | 86 | CacheFly CDN (IPv4): 131MB/s 87 | DigitalOcean (GB) (IPv4): 134MB/s 88 | LeaseWeb (NL) (IPv4): 93.0MB/s 89 | Linode (GB) (IPv4): 130MB/s 90 | Online.net (FR) (IPv4): 55.3MB/s 91 | OVH (FR) (IPv4): 53.9MB/s 92 | Softlayer (FR) (IPv4): 90.2MB/s 93 | Vultr (GB) (IPv4): 129MB/s 94 | 95 | IPv6 speedtests 96 | 97 | CacheFly CDN (IPv6): 98 | DigitalOcean (GB) (IPv6): 144MB/s 99 | LeaseWeb (NL) (IPv6): 13.4MB/s 100 | Linode (GB) (IPv6): 130MB/s 101 | Online.net (FR) (IPv6): 102 | OVH (FR) (IPv6): 103 | Softlayer (FR) (IPv6): 92.0MB/s 104 | Vultr (GB) (IPv6): 105 | 106 | Download a 10Gb file: 107 | ====================== 108 | 109 | IPv4 speedtests 110 | 111 | CDN77.com (NL) (IPv4): 65.7MB/s 112 | Online.net 10G (FR) (IPv4): 67.6MB/s 113 | OVH 10G (FR) (IPv4): 42.6MB/s 114 | 115 | IPv6 speedtests 116 | 117 | CDN77.com (NL) (IPv6): 118 | Online.net 10G (FR) (IPv6): 119 | OVH 10G (FR) (IPv6): 120 | 121 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/hard_dmidecode.log: -------------------------------------------------------------------------------- 1 | # dmidecode 3.0 2 | Getting SMBIOS data from sysfs. 3 | SMBIOS 2.4 present. 4 | 10 structures occupying 321 bytes. 5 | Table at 0x000F1640. 6 | 7 | Handle 0x0000, DMI type 0, 24 bytes 8 | BIOS Information 9 | Vendor: DigitalOcean 10 | Version: 20161103 11 | Release Date: 11/03/2016 12 | Address: 0xE8000 13 | Runtime Size: 96 kB 14 | ROM Size: 64 kB 15 | Characteristics: 16 | BIOS characteristics not supported 17 | Targeted content distribution is supported 18 | BIOS Revision: 1.0 19 | 20 | Handle 0x0100, DMI type 1, 27 bytes 21 | System Information 22 | Manufacturer: DigitalOcean 23 | Product Name: Droplet 24 | Version: 20161103 25 | Serial Number: 44589595 26 | UUID: 594528F5-9FBD-4F0C-8355-66F00DCEA679 27 | Wake-up Type: Power Switch 28 | SKU Number: Not Specified 29 | Family: DigitalOcean_Droplet 30 | 31 | Handle 0x0300, DMI type 3, 20 bytes 32 | Chassis Information 33 | Manufacturer: Bochs 34 | Type: Other 35 | Lock: Not Present 36 | Version: Not Specified 37 | Serial Number: Not Specified 38 | Asset Tag: Not Specified 39 | Boot-up State: Safe 40 | Power Supply State: Safe 41 | Thermal State: Safe 42 | Security Status: Unknown 43 | OEM Information: 0x00000000 44 | Height: Unspecified 45 | Number Of Power Cords: Unspecified 46 | 47 | Handle 0x0401, DMI type 4, 32 bytes 48 | Processor Information 49 | Socket Designation: CPU 1 50 | Type: Central Processor 51 | Family: Other 52 | Manufacturer: Bochs 53 | ID: F2 06 03 00 FF FB 8B 0F 54 | Version: Not Specified 55 | Voltage: Unknown 56 | External Clock: Unknown 57 | Max Speed: 2000 MHz 58 | Current Speed: 2000 MHz 59 | Status: Populated, Enabled 60 | Upgrade: Other 61 | L1 Cache Handle: Not Provided 62 | L2 Cache Handle: Not Provided 63 | L3 Cache Handle: Not Provided 64 | 65 | Handle 0x1000, DMI type 16, 15 bytes 66 | Physical Memory Array 67 | Location: Other 68 | Use: System Memory 69 | Error Correction Type: Multi-bit ECC 70 | Maximum Capacity: 512 MB 71 | Error Information Handle: Not Provided 72 | Number Of Devices: 1 73 | 74 | Handle 0x1100, DMI type 17, 21 bytes 75 | Memory Device 76 | Array Handle: 0x1000 77 | Error Information Handle: 0x0000 78 | Total Width: 64 bits 79 | Data Width: 64 bits 80 | Size: 512 MB 81 | Form Factor: DIMM 82 | Set: None 83 | Locator: DIMM 0 84 | Bank Locator: Not Specified 85 | Type: RAM 86 | Type Detail: None 87 | 88 | Handle 0x1300, DMI type 19, 15 bytes 89 | Memory Array Mapped Address 90 | Starting Address: 0x00000000000 91 | Ending Address: 0x0001FFFFFFF 92 | Range Size: 512 MB 93 | Physical Array Handle: 0x1000 94 | Partition Width: 1 95 | 96 | Handle 0x1400, DMI type 20, 19 bytes 97 | Memory Device Mapped Address 98 | Starting Address: 0x00000000000 99 | Ending Address: 0x0001FFFFFFF 100 | Range Size: 512 MB 101 | Physical Device Handle: 0x1100 102 | Memory Array Mapped Address Handle: 0x1300 103 | Partition Row Position: 1 104 | 105 | Handle 0x2000, DMI type 32, 11 bytes 106 | System Boot Information 107 | Status: No errors detected 108 | 109 | Handle 0x7F00, DMI type 127, 4 bytes 110 | End Of Table 111 | 112 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/hard_inxi.log: -------------------------------------------------------------------------------- 1 | System: Host: do-5bucks-ubuntu Kernel: 4.4.0-66-generic x86_64 (64 bit gcc: 5.4.0) Console: tty 2 | Distro: Ubuntu 16.04 xenial 3 | Machine: System: DigitalOcean product: Droplet v: 20161103 Chassis: Bochs type: 1 4 | Mobo: N/A model: N/A Bios: DigitalOcean v: 20161103 date: 11/03/2016 5 | CPU: Single core Intel Xeon E5-2650L v3 (-MCP-) cache: 30720 KB 6 | flags: (lm nx sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx) bmips: 3599 speed: 1799 MHz (max) 7 | Graphics: Card: Red Hat QXL paravirtual graphic card bus-ID: 00:02.0 chip-ID: 1b36:0100 8 | Display Server: N/A driver: N/A tty size: N/A Advanced Data: N/A for root out of X 9 | Network: Card-1: Red Hat Virtio network device 10 | driver: virtio-pci port: c0c0 bus-ID: 00:03.0 chip-ID: 1af4:1000 11 | IF: eth0 state: up speed: -1 duplex: unknown mac: 12 | Card-2: Red Hat Virtio network device 13 | driver: virtio-pci port: c0e0 bus-ID: 00:04.0 chip-ID: 1af4:1000 14 | IF: ens4 state: down mac: 15 | Drives: HDD Total Size: 21.5GB (4.8% used) ID-1: /dev/vda model: N/A size: 21.5GB serial: N/A 16 | Partition: ID-1: / size: 20G used: 987M (5%) fs: ext4 dev: /dev/vda1 17 | RAID: System: supported: linear multipath raid0 raid1 raid6 raid5 raid4 raid10 18 | No RAID devices: /proc/mdstat, md_mod kernel module present 19 | Unused Devices: none 20 | Sensors: None detected - is lm-sensors installed and configured? 21 | Info: Processes: 119 Uptime: 8:01 Memory: 98.4/488.4MB Init: systemd v: 229 runlevel: 5 Gcc sys: N/A 22 | Client: Unknown python3.5 client inxi: 2.2.35 23 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/hard_lsblk.log: -------------------------------------------------------------------------------- 1 | NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT 2 | /dev/vda 253:0 0 20G 0 disk 3 | └─/dev/vda1 253:1 0 20G 0 part / 4 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/hard_lscpu.log: -------------------------------------------------------------------------------- 1 | Architecture: x86_64 2 | CPU op-mode(s): 32-bit, 64-bit 3 | Byte Order: Little Endian 4 | CPU(s): 1 5 | On-line CPU(s) list: 0 6 | Thread(s) per core: 1 7 | Core(s) per socket: 1 8 | Socket(s): 1 9 | NUMA node(s): 1 10 | Vendor ID: GenuineIntel 11 | CPU family: 6 12 | Model: 63 13 | Model name: Intel(R) Xeon(R) CPU E5-2650L v3 @ 1.80GHz 14 | Stepping: 2 15 | CPU MHz: 1799.998 16 | BogoMIPS: 3599.99 17 | Virtualization: VT-x 18 | Hypervisor vendor: KVM 19 | Virtualization type: full 20 | L1d cache: 32K 21 | L1i cache: 32K 22 | L2 cache: 256K 23 | L3 cache: 30720K 24 | NUMA node0 CPU(s): 0 25 | Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon rep_good nopl eagerfpu pni pclmulqdq vmx ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm vnmi ept fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid xsaveopt arat 26 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/hard_virt_tech.log: -------------------------------------------------------------------------------- 1 | kvm 2 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/netstat.log: -------------------------------------------------------------------------------- 1 | Active Internet connections (only servers) 2 | Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name 3 | tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1428/sshd 4 | tcp6 0 0 :::22 :::* LISTEN 1428/sshd 5 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/nmap.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 14:07:02 2017 as: nmap -vvv -sT -sU -sV -oN nmap.log --top-ports 5000 localhost 2 | Nmap scan report for localhost (127.0.0.1) 3 | Host is up, received localhost-response (0.00010s latency). 4 | Scanned at 2017-04-22 14:07:03 UTC for 2s 5 | Not shown: 9252 closed ports 6 | Reason: 5000 port-unreaches and 4252 conn-refused 7 | PORT STATE SERVICE REASON VERSION 8 | 22/tcp open ssh syn-ack OpenSSH 7.2p2 Ubuntu 4ubuntu2.1 (Ubuntu Linux; protocol 2.0) 9 | Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel 10 | 11 | Read data files from: /usr/bin/../share/nmap 12 | Service detection performed. Please report any incorrect results at https://nmap.org/submit/ . 13 | # Nmap done at Sat Apr 22 14:07:05 2017 -- 1 IP address (1 host up) scanned in 3.03 seconds 14 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/nmap_pro.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 14:15:56 2017 as: nmap -vvv -sO -oN nmap_pro.log localhost 2 | Nmap scan report for localhost (127.0.0.1) 3 | Host is up, received localhost-response (0.0000060s latency). 4 | Scanned at 2017-04-22 14:15:56 UTC for 2s 5 | Not shown: 249 closed protocols 6 | Reason: 249 proto-unreaches 7 | PROTOCOL STATE SERVICE REASON 8 | 1 open icmp proto-unreach ttl 64 9 | 2 open|filtered igmp no-response 10 | 6 open tcp proto-response ttl 64 11 | 17 open udp port-unreach ttl 64 12 | 103 open|filtered pim no-response 13 | 136 open|filtered udplite no-response 14 | 255 open|filtered unknown no-response 15 | 16 | Read data files from: /usr/bin/../share/nmap 17 | # Nmap done at Sat Apr 22 14:15:58 2017 -- 1 IP address (1 host up) scanned in 1.52 seconds 18 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/nmap_pro_v6.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 14:16:04 2017 as: nmap -vvv -sO -6 -oN nmap_pro_v6.log localhost 2 | Warning: Hostname localhost resolves, but not to any IPv6 address. Try scanning without -6 3 | Failed to resolve "localhost". 4 | WARNING: No targets were specified, so 0 hosts scanned. 5 | # Nmap done at Sat Apr 22 14:16:04 2017 -- 0 IP addresses (0 hosts up) scanned in 0.00 seconds 6 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/nmap_v6.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 14:15:54 2017 as: nmap -vvv -6 -sT -sU -sV -oN nmap_v6.log --top-ports 5000 localhost 2 | Warning: Hostname localhost resolves, but not to any IPv6 address. Try scanning without -6 3 | Failed to resolve "localhost". 4 | Read data files from: /usr/bin/../share/nmap 5 | WARNING: No targets were specified, so 0 hosts scanned. 6 | # Nmap done at Sat Apr 22 14:15:55 2017 -- 0 IP addresses (0 hosts up) scanned in 0.62 seconds 7 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/speedtest_bar.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from DigitalOcean (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Adamo (Barcelona) [1138.83 km]: 75.18 ms 6 | Testing download speed................................................................................ 7 | Download: 395.52 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 152.33 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from DigitalOcean (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Adamo (Barcelona) [1138.83 km]: 44.04 ms 15 | Testing download speed................................................................................ 16 | Download: 524.67 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 142.74 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from DigitalOcean (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Adamo (Barcelona) [1138.83 km]: 46.726 ms 24 | Testing download speed................................................................................ 25 | Download: 547.44 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 149.17 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/speedtest_ber.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from DigitalOcean (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Interoute VDC (Berlin) [927.86 km]: 40.876 ms 6 | Testing download speed................................................................................ 7 | Download: 576.72 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 110.24 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from DigitalOcean (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Interoute VDC (Berlin) [927.86 km]: 21.472 ms 15 | Testing download speed................................................................................ 16 | Download: 424.58 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 252.09 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from DigitalOcean (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Interoute VDC (Berlin) [927.86 km]: 21.361 ms 24 | Testing download speed................................................................................ 25 | Download: 574.11 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 256.18 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/speedtest_lon.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from DigitalOcean (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Vodafone UK (London) [1.15 km]: 34.616 ms 6 | Testing download speed................................................................................ 7 | Download: 1307.73 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 282.24 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from DigitalOcean (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Vodafone UK (London) [1.15 km]: 5.853 ms 15 | Testing download speed................................................................................ 16 | Download: 1167.20 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 306.41 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from DigitalOcean (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Vodafone UK (London) [1.15 km]: 4.312 ms 24 | Testing download speed................................................................................ 25 | Download: 1306.89 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 258.49 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/speedtest_mad.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from DigitalOcean (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Adamo (Madrid) [1265.63 km]: 102.388 ms 6 | Testing download speed................................................................................ 7 | Download: 284.77 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 171.83 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from DigitalOcean (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Adamo (Madrid) [1265.63 km]: 29.297 ms 15 | Testing download speed................................................................................ 16 | Download: 395.61 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 171.39 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from DigitalOcean (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Adamo (Madrid) [1265.63 km]: 27.449 ms 24 | Testing download speed................................................................................ 25 | Download: 448.18 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 174.09 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/speedtest_near.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from DigitalOcean (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Coreix Ltd (London) [1.15 km]: 6.549 ms 6 | Testing download speed................................................................................ 7 | Download: 724.16 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 446.77 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from DigitalOcean (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Coreix Ltd (London) [1.15 km]: 4.305 ms 15 | Testing download speed................................................................................ 16 | Download: 633.09 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 411.14 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from DigitalOcean (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Coreix Ltd (London) [1.15 km]: 2.854 ms 24 | Testing download speed................................................................................ 25 | Download: 872.56 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 535.30 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/speedtest_par.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from DigitalOcean (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Orange (Paris) [340.66 km]: 16.681 ms 6 | Testing download speed................................................................................ 7 | Download: 676.29 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 343.03 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from DigitalOcean (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Orange (Paris) [340.66 km]: 12.137 ms 15 | Testing download speed................................................................................ 16 | Download: 794.23 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 334.42 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from DigitalOcean (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Orange (Paris) [340.66 km]: 11.255 ms 24 | Testing download speed................................................................................ 25 | Download: 691.58 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 335.76 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/speedtest_rom.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from DigitalOcean (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Telecom Italia S.p.A. (Rome) [1432.72 km]: 67.959 ms 6 | Testing download speed................................................................................ 7 | Download: 368.77 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 39.57 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from DigitalOcean (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Telecom Italia S.p.A. (Rome) [1432.72 km]: 36.166 ms 15 | Testing download speed................................................................................ 16 | Download: 727.00 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 40.84 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from DigitalOcean (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Telecom Italia S.p.A. (Rome) [1432.72 km]: 32.972 ms 24 | Testing download speed................................................................................ 25 | Download: 486.91 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 52.64 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/web_ghost_wrk_100.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 100 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 189.10ms 253.09ms 2.00s 92.28% 5 | Req/Sec 40.93 28.33 160.00 54.72% 6 | 21247 requests in 3.00m, 8.11MB read 7 | Socket errors: connect 0, read 216, write 0, timeout 925 8 | Non-2xx or 3xx responses: 9065 9 | Requests/sec: 117.97 10 | Transfer/sec: 46.13KB 11 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/web_ghost_wrk_150.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 150 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 170.12ms 230.51ms 2.00s 87.30% 5 | Req/Sec 50.46 30.26 220.00 62.61% 6 | 69010 requests in 3.00m, 39.51MB read 7 | Socket errors: connect 0, read 1220, write 0, timeout 864 8 | Non-2xx or 3xx responses: 63794 9 | Requests/sec: 383.18 10 | Transfer/sec: 224.65KB 11 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/web_ghost_wrk_200.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 200 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 188.53ms 217.16ms 2.00s 87.51% 5 | Req/Sec 54.32 31.23 191.00 62.70% 6 | 83685 requests in 3.00m, 49.02MB read 7 | Socket errors: connect 0, read 792, write 0, timeout 1182 8 | Non-2xx or 3xx responses: 80257 9 | Requests/sec: 464.71 10 | Transfer/sec: 278.74KB 11 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/web_wp_ab_10.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56231 bytes 14 | 15 | Concurrency Level: 10 16 | Time taken for tests: 180.035 seconds 17 | Complete requests: 3921 18 | Failed requests: 0 19 | Total transferred: 222184202 bytes 20 | HTML transferred: 220590246 bytes 21 | Requests per second: 21.78 [#/sec] (mean) 22 | Time per request: 459.156 [ms] (mean) 23 | Time per request: 45.916 [ms] (mean, across all concurrent requests) 24 | Transfer rate: 1205.19 [Kbytes/sec] received 25 | 26 | Connection Times (ms) 27 | min mean[+/-sd] median max 28 | Connect: 36 93 236.6 50 4051 29 | Processing: 168 365 158.6 338 2910 30 | Waiting: 56 154 130.1 132 2645 31 | Total: 206 458 290.6 395 4946 32 | 33 | Percentage of the requests served within a certain time (ms) 34 | 50% 395 35 | 66% 442 36 | 75% 483 37 | 80% 510 38 | 90% 622 39 | 95% 779 40 | 98% 1412 41 | 99% 1663 42 | 100% 4946 (longest request) 43 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/web_wp_ab_25.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56231 bytes 14 | 15 | Concurrency Level: 25 16 | Time taken for tests: 180.010 seconds 17 | Complete requests: 18653 18 | Failed requests: 18542 19 | (Connect: 0, Receive: 0, Length: 18542, Exceptions: 0) 20 | Non-2xx responses: 18531 21 | Total transferred: 17757915 bytes 22 | HTML transferred: 11537154 bytes 23 | Requests per second: 103.62 [#/sec] (mean) 24 | Time per request: 241.261 [ms] (mean) 25 | Time per request: 9.650 [ms] (mean, across all concurrent requests) 26 | Transfer rate: 96.34 [Kbytes/sec] received 27 | 28 | Connection Times (ms) 29 | min mean[+/-sd] median max 30 | Connect: 35 94 154.3 52 3352 31 | Processing: 37 147 1748.2 55 65465 32 | Waiting: 37 132 1288.6 55 45191 33 | Total: 73 241 1759.0 114 65659 34 | 35 | Percentage of the requests served within a certain time (ms) 36 | 50% 114 37 | 66% 178 38 | 75% 221 39 | 80% 245 40 | 90% 301 41 | 95% 348 42 | 98% 1115 43 | 99% 1231 44 | 100% 65659 (longest request) 45 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/web_wp_ab_50.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56231 bytes 14 | 15 | Concurrency Level: 50 16 | Time taken for tests: 180.003 seconds 17 | Complete requests: 30283 18 | Failed requests: 30201 19 | (Connect: 0, Receive: 0, Length: 30201, Exceptions: 0) 20 | Non-2xx responses: 30186 21 | Total transferred: 23084301 bytes 22 | HTML transferred: 12992981 bytes 23 | Requests per second: 168.24 [#/sec] (mean) 24 | Time per request: 297.201 [ms] (mean) 25 | Time per request: 5.944 [ms] (mean, across all concurrent requests) 26 | Transfer rate: 125.24 [Kbytes/sec] received 27 | 28 | Connection Times (ms) 29 | min mean[+/-sd] median max 30 | Connect: 35 139 207.6 48 3348 31 | Processing: 37 158 979.4 56 52032 32 | Waiting: 37 147 585.5 55 31585 33 | Total: 73 297 1016.6 110 52992 34 | 35 | Percentage of the requests served within a certain time (ms) 36 | 50% 110 37 | 66% 258 38 | 75% 364 39 | 80% 441 40 | 90% 625 41 | 95% 713 42 | 98% 1596 43 | 99% 1696 44 | 100% 52992 (longest request) 45 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/web_wp_wrk_100.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 100 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 487.51ms 210.81ms 1.93s 82.67% 5 | Req/Sec 11.77 12.04 120.00 92.28% 6 | Latency Distribution 7 | 50% 553.00ms 8 | 75% 559.08ms 9 | 90% 563.74ms 10 | 99% 1.26s 11 | 14872 requests in 3.00m, 13.56MB read 12 | Socket errors: connect 0, read 0, write 0, timeout 1106 13 | Non-2xx or 3xx responses: 14773 14 | Requests/sec: 82.58 15 | Transfer/sec: 77.11KB 16 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/web_wp_wrk_150.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 150 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 128.09ms 123.36ms 1.99s 92.43% 5 | Req/Sec 42.79 23.41 151.00 71.52% 6 | Latency Distribution 7 | 50% 97.59ms 8 | 75% 142.49ms 9 | 90% 197.31ms 10 | 99% 615.22ms 11 | 32561 requests in 3.00m, 23.35MB read 12 | Socket errors: connect 0, read 11, write 0, timeout 752 13 | Non-2xx or 3xx responses: 32464 14 | Requests/sec: 180.80 15 | Transfer/sec: 132.78KB 16 | -------------------------------------------------------------------------------- /logs/do-5bucks-ubuntu/web_wp_wrk_200.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 200 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 201.16ms 157.88ms 1.95s 90.81% 5 | Req/Sec 39.49 35.47 151.00 59.38% 6 | Latency Distribution 7 | 50% 159.15ms 8 | 75% 215.37ms 9 | 90% 345.95ms 10 | 99% 886.05ms 11 | 8817 requests in 3.00m, 9.14MB read 12 | Socket errors: connect 0, read 14, write 0, timeout 1040 13 | Non-2xx or 3xx responses: 8740 14 | Requests/sec: 48.97 15 | Transfer/sec: 52.01KB 16 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/dd_cpu.log: -------------------------------------------------------------------------------- 1 | 1024+0 records in 2 | 1024+0 records out 3 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.98804 s, 359 MB/s 4 | 1024+0 records in 5 | 1024+0 records out 6 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.93784 s, 365 MB/s 7 | 1024+0 records in 8 | 1024+0 records out 9 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.89521 s, 371 MB/s 10 | 1024+0 records in 11 | 1024+0 records out 12 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.8669 s, 375 MB/s 13 | 1024+0 records in 14 | 1024+0 records out 15 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.98629 s, 360 MB/s 16 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/dd_io.log: -------------------------------------------------------------------------------- 1 | 16384+0 records in 2 | 16384+0 records out 3 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.74184 s, 392 MB/s 4 | 16384+0 records in 5 | 16384+0 records out 6 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.14135 s, 501 MB/s 7 | 16384+0 records in 8 | 16384+0 records out 9 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.34223 s, 458 MB/s 10 | 16384+0 records in 11 | 16384+0 records out 12 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.13919 s, 502 MB/s 13 | 16384+0 records in 14 | 16384+0 records out 15 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.21695 s, 484 MB/s 16 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/downloads.log: -------------------------------------------------------------------------------- 1 | Download a 100Mb file: 2 | ====================== 3 | 4 | IPv4 speedtests 5 | 6 | CacheFly CDN (IPv4): 108MB/s 7 | DigitalOcean (GB) (IPv4): 92.7MB/s 8 | LeaseWeb (NL) (IPv4): 72.2MB/s 9 | Linode (GB) (IPv4): 111MB/s 10 | Online.net (FR) (IPv4): 5.07MB/s 11 | OVH (FR) (IPv4): 12 | Softlayer (FR) (IPv4): 34.2MB/s 13 | Vultr (GB) (IPv4): 41.9MB/s 14 | 15 | IPv6 speedtests 16 | 17 | CacheFly CDN (IPv6): 18 | DigitalOcean (GB) (IPv6): 103MB/s 19 | LeaseWeb (NL) (IPv6): 92.1MB/s 20 | Linode (GB) (IPv6): 119MB/s 21 | Online.net (FR) (IPv6): 22 | OVH (FR) (IPv6): 23 | Softlayer (FR) (IPv6): 63.0MB/s 24 | Vultr (GB) (IPv6): 25 | 26 | Download a 10Gb file: 27 | ====================== 28 | 29 | IPv4 speedtests 30 | 31 | CDN77.com (NL) (IPv4): 18.8MB/s 32 | Online.net 10G (FR) (IPv4): 26.0MB/s 33 | OVH 10G (FR) (IPv4): 34 | 35 | IPv6 speedtests 36 | 37 | CDN77.com (NL) (IPv6): 38 | Online.net 10G (FR) (IPv6): 39 | OVH 10G (FR) (IPv6): 40 | 41 | Download a 100Mb file: 42 | ====================== 43 | 44 | IPv4 speedtests 45 | 46 | CacheFly CDN (IPv4): 69.3MB/s 47 | DigitalOcean (GB) (IPv4): 92.4MB/s 48 | LeaseWeb (NL) (IPv4): 114MB/s 49 | Linode (GB) (IPv4): 103MB/s 50 | Online.net (FR) (IPv4): 16.0MB/s 51 | OVH (FR) (IPv4): 38.8MB/s 52 | Softlayer (FR) (IPv4): 34.1MB/s 53 | Vultr (GB) (IPv4): 30.5MB/s 54 | 55 | IPv6 speedtests 56 | 57 | CacheFly CDN (IPv6): 58 | DigitalOcean (GB) (IPv6): 77.0MB/s 59 | LeaseWeb (NL) (IPv6): 102MB/s 60 | Linode (GB) (IPv6): 103MB/s 61 | Online.net (FR) (IPv6): 62 | OVH (FR) (IPv6): 63 | Softlayer (FR) (IPv6): 40.9MB/s 64 | Vultr (GB) (IPv6): 65 | 66 | Download a 10Gb file: 67 | ====================== 68 | 69 | IPv4 speedtests 70 | 71 | CDN77.com (NL) (IPv4): 127MB/s 72 | Online.net 10G (FR) (IPv4): 15.1MB/s 73 | OVH 10G (FR) (IPv4): 55.6MB/s 74 | 75 | IPv6 speedtests 76 | 77 | CDN77.com (NL) (IPv6): 78 | Online.net 10G (FR) (IPv6): 79 | OVH 10G (FR) (IPv6): 80 | 81 | Download a 100Mb file: 82 | ====================== 83 | 84 | IPv4 speedtests 85 | 86 | CacheFly CDN (IPv4): 75.8MB/s 87 | DigitalOcean (GB) (IPv4): 87.2MB/s 88 | LeaseWeb (NL) (IPv4): 114MB/s 89 | Linode (GB) (IPv4): 118MB/s 90 | Online.net (FR) (IPv4): 30.2MB/s 91 | OVH (FR) (IPv4): 47.4MB/s 92 | Softlayer (FR) (IPv4): 33.9MB/s 93 | Vultr (GB) (IPv4): 26.2MB/s 94 | 95 | IPv6 speedtests 96 | 97 | CacheFly CDN (IPv6): 98 | DigitalOcean (GB) (IPv6): 89.1MB/s 99 | LeaseWeb (NL) (IPv6): 102MB/s 100 | Linode (GB) (IPv6): 107MB/s 101 | Online.net (FR) (IPv6): 102 | OVH (FR) (IPv6): 103 | Softlayer (FR) (IPv6): 22.8MB/s 104 | Vultr (GB) (IPv6): 105 | 106 | Download a 10Gb file: 107 | ====================== 108 | 109 | IPv4 speedtests 110 | 111 | CDN77.com (NL) (IPv4): 129MB/s 112 | Online.net 10G (FR) (IPv4): 23.3MB/s 113 | OVH 10G (FR) (IPv4): 52.8MB/s 114 | 115 | IPv6 speedtests 116 | 117 | CDN77.com (NL) (IPv6): 118 | Online.net 10G (FR) (IPv6): 119 | OVH 10G (FR) (IPv6): 120 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/hard_dmidecode.log: -------------------------------------------------------------------------------- 1 | # dmidecode 3.0 2 | Getting SMBIOS data from sysfs. 3 | SMBIOS 2.8 present. 4 | 9 structures occupying 411 bytes. 5 | Table at 0x000F6A30. 6 | 7 | Handle 0x0000, DMI type 0, 24 bytes 8 | BIOS Information 9 | Vendor: SeaBIOS 10 | Version: rel-1.9.1-0-gb3ef39f-prebuilt.qemu-project.org 11 | Release Date: 04/01/2014 12 | Address: 0xE8000 13 | Runtime Size: 96 kB 14 | ROM Size: 64 kB 15 | Characteristics: 16 | BIOS characteristics not supported 17 | Targeted content distribution is supported 18 | BIOS Revision: 0.0 19 | 20 | Handle 0x0100, DMI type 1, 27 bytes 21 | System Information 22 | Manufacturer: QEMU 23 | Product Name: Standard PC (i440FX + PIIX, 1996) 24 | Version: pc-i440fx-2.6 25 | Serial Number: Not Specified 26 | UUID: Not Settable 27 | Wake-up Type: Power Switch 28 | SKU Number: Not Specified 29 | Family: Not Specified 30 | 31 | Handle 0x0300, DMI type 3, 21 bytes 32 | Chassis Information 33 | Manufacturer: QEMU 34 | Type: Other 35 | Lock: Not Present 36 | Version: pc-i440fx-2.6 37 | Serial Number: Not Specified 38 | Asset Tag: Not Specified 39 | Boot-up State: Safe 40 | Power Supply State: Safe 41 | Thermal State: Safe 42 | Security Status: Unknown 43 | OEM Information: 0x00000000 44 | Height: Unspecified 45 | Number Of Power Cords: Unspecified 46 | Contained Elements: 0 47 | 48 | Handle 0x0400, DMI type 4, 42 bytes 49 | Processor Information 50 | Socket Designation: CPU 0 51 | Type: Central Processor 52 | Family: Other 53 | Manufacturer: QEMU 54 | ID: F2 06 03 00 FF FB 8B 0F 55 | Version: pc-i440fx-2.6 56 | Voltage: Unknown 57 | External Clock: Unknown 58 | Max Speed: 2000 MHz 59 | Current Speed: 2000 MHz 60 | Status: Populated, Enabled 61 | Upgrade: Other 62 | L1 Cache Handle: Not Provided 63 | L2 Cache Handle: Not Provided 64 | L3 Cache Handle: Not Provided 65 | Serial Number: Not Specified 66 | Asset Tag: Not Specified 67 | Part Number: Not Specified 68 | Core Count: 1 69 | Core Enabled: 1 70 | Thread Count: 1 71 | Characteristics: None 72 | 73 | Handle 0x1000, DMI type 16, 23 bytes 74 | Physical Memory Array 75 | Location: Other 76 | Use: System Memory 77 | Error Correction Type: Multi-bit ECC 78 | Maximum Capacity: 1 GB 79 | Error Information Handle: Not Provided 80 | Number Of Devices: 1 81 | 82 | Handle 0x1100, DMI type 17, 40 bytes 83 | Memory Device 84 | Array Handle: 0x1000 85 | Error Information Handle: Not Provided 86 | Total Width: Unknown 87 | Data Width: Unknown 88 | Size: 1024 MB 89 | Form Factor: DIMM 90 | Set: None 91 | Locator: DIMM 0 92 | Bank Locator: Not Specified 93 | Type: RAM 94 | Type Detail: Other 95 | Speed: Unknown 96 | Manufacturer: QEMU 97 | Serial Number: Not Specified 98 | Asset Tag: Not Specified 99 | Part Number: Not Specified 100 | Rank: Unknown 101 | Configured Clock Speed: Unknown 102 | Minimum Voltage: Unknown 103 | Maximum Voltage: Unknown 104 | Configured Voltage: Unknown 105 | 106 | Handle 0x1300, DMI type 19, 31 bytes 107 | Memory Array Mapped Address 108 | Starting Address: 0x00000000000 109 | Ending Address: 0x0003FFFFFFF 110 | Range Size: 1 GB 111 | Physical Array Handle: 0x1000 112 | Partition Width: 1 113 | 114 | Handle 0x2000, DMI type 32, 11 bytes 115 | System Boot Information 116 | Status: No errors detected 117 | 118 | Handle 0x7F00, DMI type 127, 4 bytes 119 | End Of Table 120 | 121 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/hard_inxi.log: -------------------------------------------------------------------------------- 1 | System: Host: localhost Kernel: 4.9.7-x86_64-linode80 x86_64 (64 bit gcc: 4.7.2) Console: tty 2 | Distro: Ubuntu 16.04 xenial 3 | Machine: System: QEMU product: Standard PC (i440FX + PIIX 1996) v: pc-i440fx-2.6 4 | Mobo: N/A model: N/A 5 | Bios: Sea v: rel-1.9.1-0-gb3ef39f-prebuilt.qemu-project.org date: 04/01/2014 6 | Chassis: type: 1 v: pc-i440fx-2.6 7 | CPU: Single core Intel Xeon E5-2680 v3 (-MCP-) cache: 4096 KB 8 | flags: (lm nx sse sse2 sse3 sse4_1 sse4_2 ssse3) bmips: 5001 speed: 2499 MHz (max) 9 | Graphics: Card: Device 1234:1111 bus-ID: 00:02.0 chip-ID: 1234:1111 10 | Display Server: N/A driver: N/A tty size: N/A Advanced Data: N/A for root out of X 11 | Network: Card: Red Hat Virtio network device 12 | driver: virtio-pci port: c040 bus-ID: 00:04.0 chip-ID: 1af4:1000 13 | IF: eth0 state: up speed: -1 duplex: unknown mac: 14 | Drives: HDD Total Size: 21.5GB (1.2% used) 15 | ID-1: /dev/sda model: QEMU_HARDDISK size: 21.2GB serial: drive-scsi-disk-0 16 | ID-2: /dev/sdb model: QEMU_HARDDISK size: 0.3GB serial: drive-scsi-disk-1 17 | Partition: ID-1: / size: 20G used: 772M (5%) fs: ext4 dev: /dev/root 18 | ID-2: swap-1 size: 0.27GB used: 0.00GB (0%) fs: swap dev: /dev/sdb 19 | RAID: System: supported: linear raid0 raid1 raid10 raid6 raid5 raid4 multipath 20 | No RAID devices: /proc/mdstat, md_mod kernel module present 21 | Unused Devices: none 22 | Sensors: None detected - is lm-sensors installed and configured? 23 | Info: Processes: 128 Uptime: 1 day Memory: 134.6/989.0MB 24 | Init: systemd v: 229 runlevel: 5 Gcc sys: N/A Client: Unknown python3.5 client inxi: 2.2.35 25 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/hard_lsblk.log: -------------------------------------------------------------------------------- 1 | NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT 2 | /dev/sdb 8:16 0 256M 0 disk [SWAP] 3 | /dev/sda 8:0 0 19.8G 0 disk / 4 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/hard_lscpu.log: -------------------------------------------------------------------------------- 1 | Architecture: x86_64 2 | CPU op-mode(s): 32-bit, 64-bit 3 | Byte Order: Little Endian 4 | CPU(s): 1 5 | On-line CPU(s) list: 0 6 | Thread(s) per core: 1 7 | Core(s) per socket: 1 8 | Socket(s): 1 9 | NUMA node(s): 1 10 | Vendor ID: GenuineIntel 11 | CPU family: 6 12 | Model: 63 13 | Model name: Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz 14 | Stepping: 2 15 | CPU MHz: 2499.990 16 | BogoMIPS: 5001.31 17 | Hypervisor vendor: KVM 18 | Virtualization type: full 19 | L1d cache: 32K 20 | L1i cache: 32K 21 | L2 cache: 4096K 22 | NUMA node0 CPU(s): 0 23 | Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon rep_good nopl eagerfpu pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid xsaveopt arat 24 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/hard_virt_tech.log: -------------------------------------------------------------------------------- 1 | qemu 2 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/netstat.log: -------------------------------------------------------------------------------- 1 | Active Internet connections (only servers) 2 | Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name 3 | tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 3474/sshd 4 | tcp6 0 0 :::22 :::* LISTEN 3474/sshd 5 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/nmap.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 14:07:02 2017 as: nmap -vvv -sT -sU -sV -oN nmap.log --top-ports 5000 localhost 2 | Warning: Hostname localhost resolves to 2 IPs. Using 127.0.0.1. 3 | Nmap scan report for localhost (127.0.0.1) 4 | Host is up, received localhost-response (0.000095s latency). 5 | Other addresses for localhost (not scanned): ::1 6 | Scanned at 2017-04-22 14:07:02 UTC for 3s 7 | Not shown: 9252 closed ports 8 | Reason: 5000 port-unreaches and 4252 conn-refused 9 | PORT STATE SERVICE REASON VERSION 10 | 22/tcp open ssh syn-ack OpenSSH 7.2p2 Ubuntu 4ubuntu2.1 (Ubuntu Linux; protocol 2.0) 11 | Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel 12 | 13 | Read data files from: /usr/bin/../share/nmap 14 | Service detection performed. Please report any incorrect results at https://nmap.org/submit/ . 15 | # Nmap done at Sat Apr 22 14:07:05 2017 -- 1 IP address (1 host up) scanned in 2.94 seconds 16 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/nmap_pro_v6.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 14:16:04 2017 as: nmap -vvv -sO -6 -oN nmap_pro_v6.log localhost 2 | Warning: Hostname localhost resolves to 2 IPs. Using ::1. 3 | Nmap scan report for localhost (::1) 4 | Host is up, received localhost-response (0.000010s latency). 5 | Other addresses for localhost (not scanned): 127.0.0.1 6 | Scanned at 2017-04-22 14:16:04 UTC for 1s 7 | Not shown: 239 closed protocols 8 | Reason: 239 param-problems 9 | PROTOCOL STATE SERVICE REASON 10 | 0 open|filtered hopopt no-response 11 | 4 open|filtered ipv4 no-response 12 | 6 open tcp proto-response ttl 64 13 | 17 open udp port-unreach ttl 64 14 | 41 open|filtered ipv6 no-response 15 | 43 open|filtered ipv6-route no-response 16 | 44 open ipv6-frag param-problem ttl 64 17 | 47 open|filtered gre no-response 18 | 50 open|filtered esp no-response 19 | 51 open|filtered ah no-response 20 | 58 open ipv6-icmp proto-response ttl 64 21 | 59 open|filtered ipv6-nonxt no-response 22 | 60 open|filtered ipv6-opts no-response 23 | 108 open|filtered ipcomp no-response 24 | 132 open sctp proto-response ttl 64 25 | 136 open|filtered udplite no-response 26 | 255 open|filtered unknown no-response 27 | 28 | Read data files from: /usr/bin/../share/nmap 29 | # Nmap done at Sat Apr 22 14:16:05 2017 -- 1 IP address (1 host up) scanned in 1.42 seconds 30 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/nmap_v6.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 14:15:51 2017 as: nmap -vvv -6 -sT -sU -sV -oN nmap_v6.log --top-ports 5000 localhost 2 | Warning: Hostname localhost resolves to 2 IPs. Using ::1. 3 | Nmap scan report for localhost (::1) 4 | Host is up, received localhost-response (0.000092s latency). 5 | Other addresses for localhost (not scanned): 127.0.0.1 6 | Scanned at 2017-04-22 14:15:51 UTC for 2s 7 | Not shown: 9252 closed ports 8 | Reason: 5000 port-unreaches and 4252 conn-refused 9 | PORT STATE SERVICE REASON VERSION 10 | 22/tcp open ssh syn-ack OpenSSH 7.2p2 Ubuntu 4ubuntu2.1 (Ubuntu Linux; protocol 2.0) 11 | Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel 12 | 13 | Read data files from: /usr/bin/../share/nmap 14 | Service detection performed. Please report any incorrect results at https://nmap.org/submit/ . 15 | # Nmap done at Sat Apr 22 14:15:54 2017 -- 1 IP address (1 host up) scanned in 3.02 seconds 16 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/speedtest_bar.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Linode (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Adamo (Barcelona) [1138.83 km]: 458.94 ms 6 | Testing download speed................................................................................ 7 | Download: 331.96 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 167.43 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Linode (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Adamo (Barcelona) [1138.83 km]: 32.414 ms 15 | Testing download speed................................................................................ 16 | Download: 314.91 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 177.80 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Linode (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Adamo (Barcelona) [1138.83 km]: 32.284 ms 24 | Testing download speed................................................................................ 25 | Download: 312.46 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 113.04 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/speedtest_ber.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Linode (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Interoute VDC (Berlin) [927.86 km]: 63.602 ms 6 | Testing download speed................................................................................ 7 | Download: 347.44 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 123.39 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Linode (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Interoute VDC (Berlin) [927.86 km]: 25.911 ms 15 | Testing download speed................................................................................ 16 | Download: 264.86 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 71.77 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Linode (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Interoute VDC (Berlin) [927.86 km]: 29.255 ms 24 | Testing download speed................................................................................ 25 | Download: 317.28 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 102.51 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/speedtest_lon.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Linode (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Vodafone UK (London) [1.15 km]: 4.741 ms 6 | Testing download speed................................................................................ 7 | Download: 1095.66 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 292.10 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Linode (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Vodafone UK (London) [1.15 km]: 4.671 ms 15 | Testing download speed................................................................................ 16 | Download: 1315.63 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 277.30 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Linode (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Vodafone UK (London) [1.15 km]: 3.437 ms 24 | Testing download speed................................................................................ 25 | Download: 1774.58 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 337.65 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/speedtest_mad.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Linode (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Adamo (Madrid) [1265.63 km]: 313.823 ms 6 | Testing download speed................................................................................ 7 | Download: 344.86 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 152.05 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Linode (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Adamo (Madrid) [1265.63 km]: 28.082 ms 15 | Testing download speed................................................................................ 16 | Download: 435.70 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 153.54 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Linode (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Adamo (Madrid) [1265.63 km]: 27.079 ms 24 | Testing download speed................................................................................ 25 | Download: 392.28 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 150.34 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/speedtest_near.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Linode (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Vodafone UK (London) [1.15 km]: 8.371 ms 6 | Testing download speed................................................................................ 7 | Download: 1187.45 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 227.09 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Linode (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Coreix Ltd (London) [1.15 km]: 3.745 ms 15 | Testing download speed................................................................................ 16 | Download: 408.45 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 335.29 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Linode (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by London Web (London) [1.15 km]: 2.99 ms 24 | Testing download speed................................................................................ 25 | Download: 561.19 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 258.65 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/speedtest_par.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Linode (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Orange (Paris) [340.66 km]: 68.81 ms 6 | Testing download speed................................................................................ 7 | Download: 300.77 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 182.24 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Linode (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Orange (Paris) [340.66 km]: 54.103 ms 15 | Testing download speed................................................................................ 16 | Download: 347.48 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 144.18 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Linode (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Orange (Paris) [340.66 km]: 29.448 ms 24 | Testing download speed................................................................................ 25 | Download: 380.95 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 220.38 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/speedtest_rom.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Linode (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Telecom Italia S.p.A. (Rome) [1432.72 km]: 517.797 ms 6 | Testing download speed................................................................................ 7 | Download: 325.17 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 115.27 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Linode (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Telecom Italia S.p.A. (Rome) [1432.72 km]: 37.293 ms 15 | Testing download speed................................................................................ 16 | Download: 314.14 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 124.05 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Linode (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Telecom Italia S.p.A. (Rome) [1432.72 km]: 36.107 ms 24 | Testing download speed................................................................................ 25 | Download: 324.69 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 111.38 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/web_ghost_wrk_100.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 100 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 205.96ms 72.26ms 1.61s 86.08% 5 | Req/Sec 49.24 24.53 120.00 63.04% 6 | 85527 requests in 3.00m, 18.69MB read 7 | Socket errors: connect 0, read 0, write 0, timeout 95 8 | Requests/sec: 474.92 9 | Transfer/sec: 106.29KB 10 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/web_ghost_wrk_150.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 150 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 296.99ms 104.26ms 1.92s 84.82% 5 | Req/Sec 51.71 32.55 141.00 68.31% 6 | 88424 requests in 3.00m, 19.33MB read 7 | Socket errors: connect 0, read 0, write 0, timeout 147 8 | Requests/sec: 490.98 9 | Transfer/sec: 109.88KB 10 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/web_ghost_wrk_200.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 200 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 389.72ms 125.73ms 1.99s 84.30% 5 | Req/Sec 51.34 31.95 280.00 71.73% 6 | 86381 requests in 3.00m, 18.88MB read 7 | Socket errors: connect 0, read 3, write 0, timeout 229 8 | Requests/sec: 479.72 9 | Transfer/sec: 107.36KB 10 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/web_wp_ab_10.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56270 bytes 14 | 15 | Concurrency Level: 10 16 | Time taken for tests: 180.212 seconds 17 | Complete requests: 3496 18 | Failed requests: 0 19 | Total transferred: 198179895 bytes 20 | HTML transferred: 196748804 bytes 21 | Requests per second: 19.40 [#/sec] (mean) 22 | Time per request: 515.481 [ms] (mean) 23 | Time per request: 51.548 [ms] (mean, across all concurrent requests) 24 | Transfer rate: 1073.93 [Kbytes/sec] received 25 | 26 | Connection Times (ms) 27 | min mean[+/-sd] median max 28 | Connect: 34 80 191.4 48 3237 29 | Processing: 163 434 224.3 413 4922 30 | Waiting: 57 212 190.7 193 4495 31 | Total: 204 514 325.5 467 7006 32 | 33 | Percentage of the requests served within a certain time (ms) 34 | 50% 467 35 | 66% 519 36 | 75% 557 37 | 80% 585 38 | 90% 678 39 | 95% 840 40 | 98% 1382 41 | 99% 1666 42 | 100% 7006 (longest request) 43 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/web_wp_ab_25.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56270 bytes 14 | 15 | Concurrency Level: 25 16 | Time taken for tests: 180.115 seconds 17 | Complete requests: 4310 18 | Failed requests: 0 19 | Total transferred: 244418841 bytes 20 | HTML transferred: 242654824 bytes 21 | Requests per second: 23.93 [#/sec] (mean) 22 | Time per request: 1044.750 [ms] (mean) 23 | Time per request: 41.790 [ms] (mean, across all concurrent requests) 24 | Transfer rate: 1325.21 [Kbytes/sec] received 25 | 26 | Connection Times (ms) 27 | min mean[+/-sd] median max 28 | Connect: 35 100 75.6 98 1189 29 | Processing: 193 942 307.2 955 2485 30 | Waiting: 69 492 204.9 508 2221 31 | Total: 254 1043 295.5 1037 2539 32 | 33 | Percentage of the requests served within a certain time (ms) 34 | 50% 1037 35 | 66% 1181 36 | 75% 1252 37 | 80% 1301 38 | 90% 1404 39 | 95% 1492 40 | 98% 1642 41 | 99% 1833 42 | 100% 2539 (longest request) 43 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/web_wp_ab_50.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56270 bytes 14 | 15 | Concurrency Level: 50 16 | Time taken for tests: 180.002 seconds 17 | Complete requests: 3976 18 | Failed requests: 0 19 | Total transferred: 226012967 bytes 20 | HTML transferred: 224379012 bytes 21 | Requests per second: 22.09 [#/sec] (mean) 22 | Time per request: 2263.603 [ms] (mean) 23 | Time per request: 45.272 [ms] (mean, across all concurrent requests) 24 | Transfer rate: 1226.19 [Kbytes/sec] received 25 | 26 | Connection Times (ms) 27 | min mean[+/-sd] median max 28 | Connect: 35 196 118.7 197 1388 29 | Processing: 419 2057 682.7 2215 4146 30 | Waiting: 183 1033 429.4 1062 3340 31 | Total: 628 2253 635.6 2353 4446 32 | 33 | Percentage of the requests served within a certain time (ms) 34 | 50% 2353 35 | 66% 2646 36 | 75% 2771 37 | 80% 2846 38 | 90% 2998 39 | 95% 3122 40 | 98% 3351 41 | 99% 3500 42 | 100% 4446 (longest request) 43 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/web_wp_wrk_100.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 100 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 1.46s 513.73ms 2.00s 80.66% 5 | Req/Sec 4.51 4.31 30.00 67.68% 6 | Latency Distribution 7 | 50% 1.70s 8 | 75% 1.82s 9 | 90% 1.92s 10 | 99% 1.99s 11 | 4411 requests in 3.00m, 240.39MB read 12 | Socket errors: connect 0, read 385, write 0, timeout 3956 13 | Requests/sec: 24.49 14 | Transfer/sec: 1.33MB 15 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/web_wp_wrk_150.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 150 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 960.84ms 573.25ms 2.00s 52.50% 5 | Req/Sec 4.83 4.58 40.00 66.49% 6 | Latency Distribution 7 | 50% 931.29ms 8 | 75% 1.45s 9 | 90% 1.86s 10 | 99% 1.99s 11 | 4554 requests in 3.00m, 247.20MB read 12 | Socket errors: connect 0, read 0, write 0, timeout 4434 13 | Requests/sec: 25.29 14 | Transfer/sec: 1.37MB 15 | -------------------------------------------------------------------------------- /logs/linode-linode1024-ubuntu/web_wp_wrk_200.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 200 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 255.68ms 160.19ms 1.99s 83.30% 5 | Req/Sec 47.25 26.07 131.00 65.01% 6 | Latency Distribution 7 | 50% 209.79ms 8 | 75% 283.88ms 9 | 90% 452.55ms 10 | 99% 835.46ms 11 | 44710 requests in 3.00m, 71.50MB read 12 | Socket errors: connect 0, read 3, write 0, timeout 1071 13 | Non-2xx or 3xx responses: 43837 14 | Requests/sec: 248.25 15 | Transfer/sec: 406.56KB 16 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/dd_cpu.log: -------------------------------------------------------------------------------- 1 | 1024+0 records in 2 | 1024+0 records out 3 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.64704 s, 406 MB/s 4 | 1024+0 records in 5 | 1024+0 records out 6 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.70571 s, 397 MB/s 7 | 1024+0 records in 8 | 1024+0 records out 9 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.67072 s, 402 MB/s 10 | 1024+0 records in 11 | 1024+0 records out 12 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.68501 s, 400 MB/s 13 | 1024+0 records in 14 | 1024+0 records out 15 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.71261 s, 396 MB/s 16 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/dd_io.log: -------------------------------------------------------------------------------- 1 | 16384+0 records in 2 | 16384+0 records out 3 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.38124 s, 451 MB/s 4 | 16384+0 records in 5 | 16384+0 records out 6 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 1.88613 s, 569 MB/s 7 | 16384+0 records in 8 | 16384+0 records out 9 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 1.88043 s, 571 MB/s 10 | 16384+0 records in 11 | 16384+0 records out 12 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 1.85008 s, 580 MB/s 13 | 16384+0 records in 14 | 16384+0 records out 15 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 1.85568 s, 579 MB/s 16 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/downloads.log: -------------------------------------------------------------------------------- 1 | Download a 100Mb file: 2 | ====================== 3 | 4 | IPv4 speedtests 5 | 6 | CacheFly CDN (IPv4): 10.5MB/s 7 | DigitalOcean (GB) (IPv4): 11.9MB/s 8 | LeaseWeb (NL) (IPv4): 11.9MB/s 9 | Linode (GB) (IPv4): 11.9MB/s 10 | Online.net (FR) (IPv4): 11.9MB/s 11 | OVH (FR) (IPv4): 12.0MB/s 12 | Softlayer (FR) (IPv4): 11.8MB/s 13 | Vultr (GB) (IPv4): 11.9MB/s 14 | 15 | 16 | Download a 10Gb file: 17 | ====================== 18 | 19 | IPv4 speedtests 20 | 21 | CDN77.com (NL) (IPv4): 12.0MB/s 22 | Online.net 10G (FR) (IPv4): 11.9MB/s 23 | OVH 10G (FR) (IPv4): 12.0MB/s 24 | 25 | Download a 100Mb file: 26 | ====================== 27 | 28 | IPv4 speedtests 29 | 30 | CacheFly CDN (IPv4): 12.0MB/s 31 | DigitalOcean (GB) (IPv4): 11.9MB/s 32 | LeaseWeb (NL) (IPv4): 11.9MB/s 33 | Linode (GB) (IPv4): 11.9MB/s 34 | Online.net (FR) (IPv4): 11.9MB/s 35 | OVH (FR) (IPv4): 12.0MB/s 36 | Softlayer (FR) (IPv4): 11.8MB/s 37 | Vultr (GB) (IPv4): 11.9MB/s 38 | 39 | 40 | Download a 10Gb file: 41 | ====================== 42 | 43 | IPv4 speedtests 44 | 45 | CDN77.com (NL) (IPv4): 12.0MB/s 46 | Online.net 10G (FR) (IPv4): 11.9MB/s 47 | OVH 10G (FR) (IPv4): 12.0MB/s 48 | 49 | Download a 100Mb file: 50 | ====================== 51 | 52 | IPv4 speedtests 53 | 54 | CacheFly CDN (IPv4): 10.6MB/s 55 | DigitalOcean (GB) (IPv4): 11.9MB/s 56 | LeaseWeb (NL) (IPv4): 11.9MB/s 57 | Linode (GB) (IPv4): 11.9MB/s 58 | Online.net (FR) (IPv4): 11.9MB/s 59 | OVH (FR) (IPv4): 12.0MB/s 60 | Softlayer (FR) (IPv4): 11.8MB/s 61 | Vultr (GB) (IPv4): 11.9MB/s 62 | 63 | 64 | Download a 10Gb file: 65 | ====================== 66 | 67 | IPv4 speedtests 68 | 69 | CDN77.com (NL) (IPv4): 11.9MB/s 70 | Online.net 10G (FR) (IPv4): 12.0MB/s 71 | OVH 10G (FR) (IPv4): 11.9MB/s 72 | 73 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/hard_dmidecode.log: -------------------------------------------------------------------------------- 1 | # dmidecode 3.0 2 | Getting SMBIOS data from sysfs. 3 | SMBIOS 2.8 present. 4 | 9 structures occupying 431 bytes. 5 | Table at 0x000F62D0. 6 | 7 | Handle 0x0000, DMI type 0, 24 bytes 8 | BIOS Information 9 | Vendor: SeaBIOS 10 | Version: Ubuntu-1.8.2-1ubuntu1~cloud0+ovh1 11 | Release Date: 04/01/2014 12 | Address: 0xE8000 13 | Runtime Size: 96 kB 14 | ROM Size: 64 kB 15 | Characteristics: 16 | BIOS characteristics not supported 17 | Targeted content distribution is supported 18 | BIOS Revision: 0.0 19 | 20 | Handle 0x0100, DMI type 1, 27 bytes 21 | System Information 22 | Manufacturer: OpenStack Foundation 23 | Product Name: OpenStack Nova 24 | Version: 2014.2.4 25 | Serial Number: 00000000-0000-0000-0000-0cc47adf1f1c 26 | UUID: 9B9D2AE0-D8C3-4886-83F2-050A5CE9F71F 27 | Wake-up Type: Power Switch 28 | SKU Number: Not Specified 29 | Family: Not Specified 30 | 31 | Handle 0x0300, DMI type 3, 21 bytes 32 | Chassis Information 33 | Manufacturer: QEMU 34 | Type: Other 35 | Lock: Not Present 36 | Version: pc-i440fx-vivid 37 | Serial Number: Not Specified 38 | Asset Tag: Not Specified 39 | Boot-up State: Safe 40 | Power Supply State: Safe 41 | Thermal State: Safe 42 | Security Status: Unknown 43 | OEM Information: 0x00000000 44 | Height: Unspecified 45 | Number Of Power Cords: Unspecified 46 | Contained Elements: 0 47 | 48 | Handle 0x0400, DMI type 4, 42 bytes 49 | Processor Information 50 | Socket Designation: CPU 0 51 | Type: Central Processor 52 | Family: Other 53 | Manufacturer: QEMU 54 | ID: C1 06 03 00 FF FB 8B 0F 55 | Version: pc-i440fx-vivid 56 | Voltage: Unknown 57 | External Clock: Unknown 58 | Max Speed: 2000 MHz 59 | Current Speed: 2000 MHz 60 | Status: Populated, Enabled 61 | Upgrade: Other 62 | L1 Cache Handle: Not Provided 63 | L2 Cache Handle: Not Provided 64 | L3 Cache Handle: Not Provided 65 | Serial Number: Not Specified 66 | Asset Tag: Not Specified 67 | Part Number: Not Specified 68 | Core Count: 1 69 | Core Enabled: 1 70 | Thread Count: 1 71 | Characteristics: None 72 | 73 | Handle 0x1000, DMI type 16, 23 bytes 74 | Physical Memory Array 75 | Location: Other 76 | Use: System Memory 77 | Error Correction Type: Multi-bit ECC 78 | Maximum Capacity: 2000 MB 79 | Error Information Handle: Not Provided 80 | Number Of Devices: 1 81 | 82 | Handle 0x1100, DMI type 17, 40 bytes 83 | Memory Device 84 | Array Handle: 0x1000 85 | Error Information Handle: Not Provided 86 | Total Width: Unknown 87 | Data Width: Unknown 88 | Size: 2000 MB 89 | Form Factor: DIMM 90 | Set: None 91 | Locator: DIMM 0 92 | Bank Locator: Not Specified 93 | Type: RAM 94 | Type Detail: Other 95 | Speed: Unknown 96 | Manufacturer: QEMU 97 | Serial Number: Not Specified 98 | Asset Tag: Not Specified 99 | Part Number: Not Specified 100 | Rank: Unknown 101 | Configured Clock Speed: Unknown 102 | Minimum Voltage: Unknown 103 | Maximum Voltage: Unknown 104 | Configured Voltage: Unknown 105 | 106 | Handle 0x1300, DMI type 19, 31 bytes 107 | Memory Array Mapped Address 108 | Starting Address: 0x00000000000 109 | Ending Address: 0x0007CFFFFFF 110 | Range Size: 2000 MB 111 | Physical Array Handle: 0x1000 112 | Partition Width: 1 113 | 114 | Handle 0x2000, DMI type 32, 11 bytes 115 | System Boot Information 116 | Status: No errors detected 117 | 118 | Handle 0x7F00, DMI type 127, 4 bytes 119 | End Of Table 120 | 121 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/hard_inxi.log: -------------------------------------------------------------------------------- 1 | System: Host: vps359298 Kernel: 4.4.0-62-generic x86_64 (64 bit gcc: 5.4.0) Console: tty 2 | Distro: Ubuntu 16.04 xenial 3 | Machine: System: OpenStack Foundation product: OpenStack Nova v: 2014.2.4 4 | Mobo: N/A model: N/A Bios: Sea v: Ubuntu-1.8.2-1ubuntu1~cloud0+ovh1 date: 04/01/2014 5 | Chassis: QEMU type: 1 v: pc-i440fx-vivid 6 | CPU: Single core Intel Core (Haswell no TSX) (-UP-) cache: 4096 KB 7 | flags: (lm nx sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx) bmips: 4799 speed: 2399 MHz (max) 8 | Graphics: Card: Cirrus Logic GD 5446 bus-ID: 00:02.0 chip-ID: 1013:00b8 9 | Display Server: N/A driver: N/A tty size: N/A Advanced Data: N/A for root out of X 10 | Network: Card: Red Hat Virtio network device 11 | driver: virtio-pci port: c060 bus-ID: 00:03.0 chip-ID: 1af4:1000 12 | IF: ens3 state: up speed: -1 duplex: unknown mac: 13 | Drives: HDD Total Size: 10.7GB (12.1% used) ID-1: /dev/vda model: N/A size: 10.7GB serial: N/A 14 | Partition: ID-1: / size: 9.7G used: 1.3G (13%) fs: ext4 dev: /dev/vda1 15 | RAID: System: supported: linear multipath raid0 raid1 raid6 raid5 raid4 raid10 16 | No RAID devices: /proc/mdstat, md_mod kernel module present 17 | Unused Devices: none 18 | Sensors: None detected - is lm-sensors installed and configured? 19 | Info: Processes: 121 Uptime: 1 day Memory: 185.7/1952.3MB 20 | Init: systemd v: 229 runlevel: 5 Gcc sys: N/A Client: Unknown python3.5 client inxi: 2.2.35 21 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/hard_lsblk.log: -------------------------------------------------------------------------------- 1 | NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT 2 | /dev/vda 253:0 0 10G 0 disk 3 | └─/dev/vda1 253:1 0 10G 0 part / 4 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/hard_lscpu.log: -------------------------------------------------------------------------------- 1 | Architecture: x86_64 2 | CPU op-mode(s): 32-bit, 64-bit 3 | Byte Order: Little Endian 4 | CPU(s): 1 5 | On-line CPU(s) list: 0 6 | Thread(s) per core: 1 7 | Core(s) per socket: 1 8 | Socket(s): 1 9 | NUMA node(s): 1 10 | Vendor ID: GenuineIntel 11 | CPU family: 6 12 | Model: 60 13 | Model name: Intel Core Processor (Haswell, no TSX) 14 | Stepping: 1 15 | CPU MHz: 2399.996 16 | BogoMIPS: 4799.99 17 | Virtualization: VT-x 18 | Hypervisor vendor: KVM 19 | Virtualization type: full 20 | L1d cache: 32K 21 | L1i cache: 32K 22 | L2 cache: 4096K 23 | NUMA node0 CPU(s): 0 24 | Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl eagerfpu pni pclmulqdq vmx ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm tpr_shadow vnmi flexpriority ept vpid fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt 25 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/hard_virt_tech.log: -------------------------------------------------------------------------------- 1 | kvm 2 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/netstat.log: -------------------------------------------------------------------------------- 1 | Active Internet connections (only servers) 2 | Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name 3 | tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 968/sshd 4 | tcp6 0 0 :::22 :::* LISTEN 968/sshd 5 | udp 0 0 0.0.0.0:68 0.0.0.0:* 777/dhclient 6 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/nmap.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 16:07:02 2017 as: nmap -vvv -sT -sU -sV -oN nmap.log --top-ports 5000 localhost 2 | Nmap scan report for localhost (127.0.0.1) 3 | Host is up, received localhost-response (0.000055s latency). 4 | Scanned at 2017-04-22 16:07:02 CEST for 92s 5 | Not shown: 9251 closed ports 6 | Reason: 4999 port-unreaches and 4252 conn-refused 7 | PORT STATE SERVICE REASON VERSION 8 | 22/tcp open ssh syn-ack OpenSSH 7.2p2 Ubuntu 4ubuntu2.1 (Ubuntu Linux; protocol 2.0) 9 | 68/udp open|filtered dhcpc no-response 10 | Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel 11 | 12 | Read data files from: /usr/bin/../share/nmap 13 | Service detection performed. Please report any incorrect results at https://nmap.org/submit/ . 14 | # Nmap done at Sat Apr 22 16:08:34 2017 -- 1 IP address (1 host up) scanned in 92.32 seconds 15 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/nmap_pro.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 16:15:56 2017 as: nmap -vvv -sO -oN nmap_pro.log localhost 2 | Nmap scan report for localhost (127.0.0.1) 3 | Host is up, received localhost-response (0.0000070s latency). 4 | Scanned at 2017-04-22 16:15:56 CEST for 1s 5 | Not shown: 249 closed protocols 6 | Reason: 249 proto-unreaches 7 | PROTOCOL STATE SERVICE REASON 8 | 1 open icmp proto-unreach ttl 64 9 | 2 open|filtered igmp no-response 10 | 6 open tcp proto-response ttl 64 11 | 17 open udp port-unreach ttl 64 12 | 103 open|filtered pim no-response 13 | 136 open|filtered udplite no-response 14 | 255 open|filtered unknown no-response 15 | 16 | Read data files from: /usr/bin/../share/nmap 17 | # Nmap done at Sat Apr 22 16:15:57 2017 -- 1 IP address (1 host up) scanned in 1.52 seconds 18 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/nmap_pro_v6.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 16:16:03 2017 as: nmap -vvv -sO -6 -oN nmap_pro_v6.log localhost 2 | Warning: Hostname localhost resolves, but not to any IPv6 address. Try scanning without -6 3 | Failed to resolve "localhost". 4 | WARNING: No targets were specified, so 0 hosts scanned. 5 | # Nmap done at Sat Apr 22 16:16:03 2017 -- 0 IP addresses (0 hosts up) scanned in 0.00 seconds 6 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/nmap_v6.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 16:15:53 2017 as: nmap -vvv -6 -sT -sU -sV -oN nmap_v6.log --top-ports 5000 localhost 2 | Warning: Hostname localhost resolves, but not to any IPv6 address. Try scanning without -6 3 | Failed to resolve "localhost". 4 | Read data files from: /usr/bin/../share/nmap 5 | WARNING: No targets were specified, so 0 hosts scanned. 6 | # Nmap done at Sat Apr 22 16:15:54 2017 -- 0 IP addresses (0 hosts up) scanned in 0.44 seconds 7 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/speedtest_bar.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from OVH (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Adamo (Barcelona) [337.70 km]: 35.321 ms 6 | Testing download speed................................................................................ 7 | Download: 98.25 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 88.72 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from OVH (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Adamo (Barcelona) [337.70 km]: 30.692 ms 15 | Testing download speed................................................................................ 16 | Download: 98.69 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 83.16 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from OVH (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Adamo (Barcelona) [337.70 km]: 30.334 ms 24 | Testing download speed................................................................................ 25 | Download: 98.71 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 85.13 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/speedtest_ber.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from OVH (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Interoute VDC (Berlin) [1185.76 km]: 29.083 ms 6 | Testing download speed................................................................................ 7 | Download: 84.38 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 84.78 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from OVH (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Interoute VDC (Berlin) [1185.76 km]: 22.45 ms 15 | Testing download speed................................................................................ 16 | Download: 99.33 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 86.92 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from OVH (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Interoute VDC (Berlin) [1185.76 km]: 22.212 ms 24 | Testing download speed................................................................................ 25 | Download: 99.02 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 87.36 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/speedtest_lon.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from OVH (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Vodafone UK (London) [1003.33 km]: 154.447 ms 6 | Testing download speed................................................................................ 7 | Download: 97.82 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 80.89 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from OVH (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Vodafone UK (London) [1003.33 km]: 15.898 ms 15 | Testing download speed................................................................................ 16 | Download: 99.57 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 89.55 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from OVH (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Vodafone UK (London) [1003.33 km]: 14.186 ms 24 | Testing download speed................................................................................ 25 | Download: 99.30 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 88.64 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/speedtest_mad.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from OVH (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Adamo (Madrid) [815.60 km]: 30.168 ms 6 | Testing download speed................................................................................ 7 | Download: 98.21 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 88.15 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from OVH (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Adamo (Madrid) [815.60 km]: 21.932 ms 15 | Testing download speed................................................................................ 16 | Download: 99.34 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 86.97 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from OVH (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Adamo (Madrid) [815.60 km]: 22.974 ms 24 | Testing download speed................................................................................ 25 | Download: 99.27 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 88.69 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/speedtest_near.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from OVH (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by TestDebit.info (Marseille) [1.32 km]: 9.994 ms 6 | Testing download speed................................................................................ 7 | Download: 99.66 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 91.93 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from OVH (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by DFOX (Nice) [159.60 km]: 6.679 ms 15 | Testing download speed................................................................................ 16 | Download: 99.44 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 96.41 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from OVH (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by DFOX (Nice) [159.60 km]: 7.145 ms 24 | Testing download speed................................................................................ 25 | Download: 99.42 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 93.28 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/speedtest_par.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from OVH (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Orange (Paris) [663.77 km]: 6.79 ms 6 | Testing download speed................................................................................ 7 | Download: 92.99 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 92.34 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from OVH (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Orange (Paris) [663.77 km]: 43.54 ms 15 | Testing download speed................................................................................ 16 | Download: 97.56 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 90.00 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from OVH (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Orange (Paris) [663.77 km]: 41.779 ms 24 | Testing download speed................................................................................ 25 | Download: 98.16 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 91.18 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/speedtest_rom.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from OVH (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Telecom Italia S.p.A. (Rome) [602.95 km]: 31.076 ms 6 | Testing download speed................................................................................ 7 | Download: 98.24 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 89.08 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from OVH (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Telecom Italia S.p.A. (Rome) [602.95 km]: 26.062 ms 15 | Testing download speed................................................................................ 16 | Download: 99.28 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 87.37 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from OVH (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Telecom Italia S.p.A. (Rome) [602.95 km]: 26.625 ms 24 | Testing download speed................................................................................ 25 | Download: 99.21 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 85.71 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/web_ghost_wrk_100.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 100 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 140.47ms 55.79ms 1.96s 88.36% 5 | Req/Sec 73.44 27.48 207.00 68.71% 6 | 126831 requests in 3.00m, 27.72MB read 7 | Socket errors: connect 0, read 2, write 0, timeout 96 8 | Requests/sec: 704.26 9 | Transfer/sec: 157.62KB 10 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/web_ghost_wrk_150.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 150 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 207.42ms 85.48ms 1.92s 86.11% 5 | Req/Sec 73.86 37.90 272.00 64.77% 6 | 127445 requests in 3.00m, 27.85MB read 7 | Socket errors: connect 0, read 1, write 0, timeout 157 8 | Requests/sec: 707.71 9 | Transfer/sec: 158.39KB 10 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/web_ghost_wrk_200.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 200 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 267.58ms 98.03ms 1.92s 84.91% 5 | Req/Sec 73.78 40.14 202.00 63.25% 6 | 126968 requests in 3.00m, 27.75MB read 7 | Socket errors: connect 0, read 6, write 0, timeout 236 8 | Requests/sec: 705.09 9 | Transfer/sec: 157.80KB 10 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/web_wp_ab_10.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56231 bytes 14 | 15 | Concurrency Level: 10 16 | Time taken for tests: 180.000 seconds 17 | Complete requests: 4562 18 | Failed requests: 0 19 | Total transferred: 258452661 bytes 20 | HTML transferred: 256599271 bytes 21 | Requests per second: 25.34 [#/sec] (mean) 22 | Time per request: 394.565 [ms] (mean) 23 | Time per request: 39.456 [ms] (mean, across all concurrent requests) 24 | Transfer rate: 1402.19 [Kbytes/sec] received 25 | 26 | Connection Times (ms) 27 | min mean[+/-sd] median max 28 | Connect: 32 67 179.9 40 3185 29 | Processing: 123 327 149.9 309 2768 30 | Waiting: 50 149 129.3 138 2486 31 | Total: 156 394 253.0 354 3865 32 | 33 | Percentage of the requests served within a certain time (ms) 34 | 50% 354 35 | 66% 388 36 | 75% 415 37 | 80% 434 38 | 90% 513 39 | 95% 624 40 | 98% 1223 41 | 99% 1416 42 | 100% 3865 (longest request) 43 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/web_wp_ab_25.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56231 bytes 14 | 15 | Concurrency Level: 25 16 | Time taken for tests: 180.011 seconds 17 | Complete requests: 5412 18 | Failed requests: 0 19 | Total transferred: 307285402 bytes 20 | HTML transferred: 305079198 bytes 21 | Requests per second: 30.06 [#/sec] (mean) 22 | Time per request: 831.539 [ms] (mean) 23 | Time per request: 33.262 [ms] (mean, across all concurrent requests) 24 | Transfer rate: 1667.02 [Kbytes/sec] received 25 | 26 | Connection Times (ms) 27 | min mean[+/-sd] median max 28 | Connect: 32 86 92.1 73 1199 29 | Processing: 159 744 230.9 737 1917 30 | Waiting: 54 373 138.3 389 1808 31 | Total: 216 829 225.6 822 2344 32 | 33 | Percentage of the requests served within a certain time (ms) 34 | 50% 822 35 | 66% 907 36 | 75% 955 37 | 80% 986 38 | 90% 1068 39 | 95% 1157 40 | 98% 1412 41 | 99% 1604 42 | 100% 2344 (longest request) 43 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/web_wp_ab_50.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56231 bytes 14 | 15 | Concurrency Level: 50 16 | Time taken for tests: 180.001 seconds 17 | Complete requests: 5597 18 | Failed requests: 0 19 | Total transferred: 317438304 bytes 20 | HTML transferred: 315159832 bytes 21 | Requests per second: 31.09 [#/sec] (mean) 22 | Time per request: 1608.017 [ms] (mean) 23 | Time per request: 32.160 [ms] (mean, across all concurrent requests) 24 | Transfer rate: 1722.20 [Kbytes/sec] received 25 | 26 | Connection Times (ms) 27 | min mean[+/-sd] median max 28 | Connect: 32 176 153.0 156 3195 29 | Processing: 318 1427 508.3 1364 3289 30 | Waiting: 141 678 308.1 707 2826 31 | Total: 529 1603 452.7 1537 5385 32 | 33 | Percentage of the requests served within a certain time (ms) 34 | 50% 1537 35 | 66% 1811 36 | 75% 1942 37 | 80% 2016 38 | 90% 2173 39 | 95% 2289 40 | 98% 2535 41 | 99% 2790 42 | 100% 5385 (longest request) 43 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/web_wp_wrk_100.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 100 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 1.48s 416.98ms 2.00s 83.12% 5 | Req/Sec 5.26 4.95 60.00 90.67% 6 | Latency Distribution 7 | 50% 1.67s 8 | 75% 1.74s 9 | 90% 1.83s 10 | 99% 1.97s 11 | 5190 requests in 3.00m, 282.69MB read 12 | Socket errors: connect 0, read 578, write 0, timeout 4088 13 | Requests/sec: 28.82 14 | Transfer/sec: 1.57MB 15 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/web_wp_wrk_150.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 150 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 976.76ms 590.05ms 2.00s 53.81% 5 | Req/Sec 6.46 5.70 70.00 90.43% 6 | Latency Distribution 7 | 50% 909.42ms 8 | 75% 1.54s 9 | 90% 1.90s 10 | 99% 1.99s 11 | 6870 requests in 3.00m, 372.32MB read 12 | Socket errors: connect 0, read 0, write 0, timeout 6647 13 | Requests/sec: 38.15 14 | Transfer/sec: 2.07MB 15 | -------------------------------------------------------------------------------- /logs/ovh-vpsssd1-ubuntu/web_wp_wrk_200.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 200 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 197.31ms 144.54ms 2.00s 84.37% 5 | Req/Sec 19.34 12.04 90.00 79.94% 6 | Latency Distribution 7 | 50% 176.57ms 8 | 75% 233.66ms 9 | 90% 314.12ms 10 | 99% 687.45ms 11 | 27967 requests in 3.00m, 294.28MB read 12 | Socket errors: connect 0, read 2, write 0, timeout 5003 13 | Non-2xx or 3xx responses: 22774 14 | Requests/sec: 155.29 15 | Transfer/sec: 1.63MB 16 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/dd_cpu.log: -------------------------------------------------------------------------------- 1 | 1024+0 records in 2 | 1024+0 records out 3 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 4.17314 s, 257 MB/s 4 | 1024+0 records in 5 | 1024+0 records out 6 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 4.19224 s, 256 MB/s 7 | 1024+0 records in 8 | 1024+0 records out 9 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 4.2182 s, 255 MB/s 10 | 1024+0 records in 11 | 1024+0 records out 12 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 4.21844 s, 255 MB/s 13 | 1024+0 records in 14 | 1024+0 records out 15 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 4.19525 s, 256 MB/s 16 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/dd_io.log: -------------------------------------------------------------------------------- 1 | 16384+0 records in 2 | 16384+0 records out 3 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 8.36876 s, 128 MB/s 4 | 16384+0 records in 5 | 16384+0 records out 6 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 6.25685 s, 172 MB/s 7 | 16384+0 records in 8 | 16384+0 records out 9 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 6.29656 s, 171 MB/s 10 | 16384+0 records in 11 | 16384+0 records out 12 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 6.14032 s, 175 MB/s 13 | 16384+0 records in 14 | 16384+0 records out 15 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 6.23603 s, 172 MB/s 16 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/downloads.log: -------------------------------------------------------------------------------- 1 | Download a 100Mb file: 2 | ====================== 3 | 4 | IPv4 speedtests 5 | 6 | CacheFly CDN (IPv4): 90.1MB/s 7 | DigitalOcean (GB) (IPv4): 105MB/s 8 | LeaseWeb (NL) (IPv4): 105MB/s 9 | Linode (GB) (IPv4): 89.2MB/s 10 | Online.net (FR) (IPv4): 91.9MB/s 11 | OVH (FR) (IPv4): 52.3MB/s 12 | Softlayer (FR) (IPv4): 23.6MB/s 13 | Vultr (GB) (IPv4): 55.6MB/s 14 | 15 | IPv6 speedtests 16 | 17 | CacheFly CDN (IPv6): 18 | DigitalOcean (GB) (IPv6): 119MB/s 19 | LeaseWeb (NL) (IPv6): 95.9MB/s 20 | Linode (GB) (IPv6): 120MB/s 21 | Online.net (FR) (IPv6): 22 | OVH (FR) (IPv6): 23 | Softlayer (FR) (IPv6): 25.0MB/s 24 | Vultr (GB) (IPv6): 25 | 26 | Download a 10Gb file: 27 | ====================== 28 | 29 | IPv4 speedtests 30 | 31 | CDN77.com (NL) (IPv4): 123MB/s 32 | Online.net 10G (FR) (IPv4): 115MB/s 33 | OVH 10G (FR) (IPv4): 30.0MB/s 34 | 35 | IPv6 speedtests 36 | 37 | CDN77.com (NL) (IPv6): 38 | Online.net 10G (FR) (IPv6): 39 | OVH 10G (FR) (IPv6): 40 | 41 | Download a 100Mb file: 42 | ====================== 43 | 44 | IPv4 speedtests 45 | 46 | CacheFly CDN (IPv4): 77.8MB/s 47 | DigitalOcean (GB) (IPv4): 61.7MB/s 48 | LeaseWeb (NL) (IPv4): 107MB/s 49 | Linode (GB) (IPv4): 87.6MB/s 50 | Online.net (FR) (IPv4): 119MB/s 51 | OVH (FR) (IPv4): 36.5MB/s 52 | Softlayer (FR) (IPv4): 60.0MB/s 53 | Vultr (GB) (IPv4): 60.6MB/s 54 | 55 | IPv6 speedtests 56 | 57 | CacheFly CDN (IPv6): 58 | DigitalOcean (GB) (IPv6): 114MB/s 59 | LeaseWeb (NL) (IPv6): 116MB/s 60 | Linode (GB) (IPv6): 112MB/s 61 | Online.net (FR) (IPv6): 62 | OVH (FR) (IPv6): 63 | Softlayer (FR) (IPv6): 43.3MB/s 64 | Vultr (GB) (IPv6): 65 | 66 | Download a 10Gb file: 67 | ====================== 68 | 69 | IPv4 speedtests 70 | 71 | CDN77.com (NL) (IPv4): 119MB/s 72 | Online.net 10G (FR) (IPv4): 118MB/s 73 | OVH 10G (FR) (IPv4): 26.5MB/s 74 | 75 | IPv6 speedtests 76 | 77 | CDN77.com (NL) (IPv6): 78 | Online.net 10G (FR) (IPv6): 79 | OVH 10G (FR) (IPv6): 80 | 81 | Download a 100Mb file: 82 | ====================== 83 | 84 | IPv4 speedtests 85 | 86 | CacheFly CDN (IPv4): 79.8MB/s 87 | DigitalOcean (GB) (IPv4): 72.2MB/s 88 | LeaseWeb (NL) (IPv4): 105MB/s 89 | Linode (GB) (IPv4): 54.9MB/s 90 | Online.net (FR) (IPv4): 120MB/s 91 | OVH (FR) (IPv4): 36.6MB/s 92 | Softlayer (FR) (IPv4): 72.7MB/s 93 | Vultr (GB) (IPv4): 64.4MB/s 94 | 95 | IPv6 speedtests 96 | 97 | CacheFly CDN (IPv6): 98 | DigitalOcean (GB) (IPv6): 106MB/s 99 | LeaseWeb (NL) (IPv6): 109MB/s 100 | Linode (GB) (IPv6): 102MB/s 101 | Online.net (FR) (IPv6): 102 | OVH (FR) (IPv6): 103 | Softlayer (FR) (IPv6): 25.4MB/s 104 | Vultr (GB) (IPv6): 105 | 106 | Download a 10Gb file: 107 | ====================== 108 | 109 | IPv4 speedtests 110 | 111 | CDN77.com (NL) (IPv4): 120MB/s 112 | Online.net 10G (FR) (IPv4): 119MB/s 113 | OVH 10G (FR) (IPv4): 57.1MB/s 114 | 115 | IPv6 speedtests 116 | 117 | CDN77.com (NL) (IPv6): 118 | Online.net 10G (FR) (IPv6): 119 | OVH 10G (FR) (IPv6): 120 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/hard_dmidecode.log: -------------------------------------------------------------------------------- 1 | # dmidecode 3.0 2 | Getting SMBIOS data from sysfs. 3 | SMBIOS 2.8 present. 4 | 10 structures occupying 458 bytes. 5 | Table at 0x000F6450. 6 | 7 | Handle 0x0000, DMI type 0, 24 bytes 8 | BIOS Information 9 | Vendor: SeaBIOS 10 | Version: Ubuntu-1.8.2-1ubuntu1 11 | Release Date: 04/01/2014 12 | Address: 0xE8000 13 | Runtime Size: 96 kB 14 | ROM Size: 64 kB 15 | Characteristics: 16 | BIOS characteristics not supported 17 | Targeted content distribution is supported 18 | BIOS Revision: 0.0 19 | 20 | Handle 0x0100, DMI type 1, 27 bytes 21 | System Information 22 | Manufacturer: QEMU 23 | Product Name: Standard PC (i440FX + PIIX, 1996) 24 | Version: pc-i440fx-wily 25 | Serial Number: Not Specified 26 | UUID: Not Settable 27 | Wake-up Type: Power Switch 28 | SKU Number: Not Specified 29 | Family: Not Specified 30 | 31 | Handle 0x0300, DMI type 3, 21 bytes 32 | Chassis Information 33 | Manufacturer: QEMU 34 | Type: Other 35 | Lock: Not Present 36 | Version: pc-i440fx-wily 37 | Serial Number: Not Specified 38 | Asset Tag: Not Specified 39 | Boot-up State: Safe 40 | Power Supply State: Safe 41 | Thermal State: Safe 42 | Security Status: Unknown 43 | OEM Information: 0x00000000 44 | Height: Unspecified 45 | Number Of Power Cords: Unspecified 46 | Contained Elements: 0 47 | 48 | Handle 0x0400, DMI type 4, 42 bytes 49 | Processor Information 50 | Socket Designation: CPU 0 51 | Type: Central Processor 52 | Family: Other 53 | Manufacturer: QEMU 54 | ID: D8 06 04 00 FF FB 8B 0F 55 | Version: pc-i440fx-wily 56 | Voltage: Unknown 57 | External Clock: Unknown 58 | Max Speed: 2000 MHz 59 | Current Speed: 2000 MHz 60 | Status: Populated, Enabled 61 | Upgrade: Other 62 | L1 Cache Handle: Not Provided 63 | L2 Cache Handle: Not Provided 64 | L3 Cache Handle: Not Provided 65 | Serial Number: Not Specified 66 | Asset Tag: Not Specified 67 | Part Number: Not Specified 68 | Core Count: 1 69 | Core Enabled: 1 70 | Thread Count: 1 71 | Characteristics: None 72 | 73 | Handle 0x0401, DMI type 4, 42 bytes 74 | Processor Information 75 | Socket Designation: CPU 1 76 | Type: Central Processor 77 | Family: Other 78 | Manufacturer: QEMU 79 | ID: D8 06 04 00 FF FB 8B 0F 80 | Version: pc-i440fx-wily 81 | Voltage: Unknown 82 | External Clock: Unknown 83 | Max Speed: 2000 MHz 84 | Current Speed: 2000 MHz 85 | Status: Populated, Enabled 86 | Upgrade: Other 87 | L1 Cache Handle: Not Provided 88 | L2 Cache Handle: Not Provided 89 | L3 Cache Handle: Not Provided 90 | Serial Number: Not Specified 91 | Asset Tag: Not Specified 92 | Part Number: Not Specified 93 | Core Count: 1 94 | Core Enabled: 1 95 | Thread Count: 1 96 | Characteristics: None 97 | 98 | Handle 0x1000, DMI type 16, 23 bytes 99 | Physical Memory Array 100 | Location: Other 101 | Use: System Memory 102 | Error Correction Type: Multi-bit ECC 103 | Maximum Capacity: 2 GB 104 | Error Information Handle: Not Provided 105 | Number Of Devices: 1 106 | 107 | Handle 0x1100, DMI type 17, 40 bytes 108 | Memory Device 109 | Array Handle: 0x1000 110 | Error Information Handle: Not Provided 111 | Total Width: Unknown 112 | Data Width: Unknown 113 | Size: 2048 MB 114 | Form Factor: DIMM 115 | Set: None 116 | Locator: DIMM 0 117 | Bank Locator: Not Specified 118 | Type: RAM 119 | Type Detail: Other 120 | Speed: Unknown 121 | Manufacturer: QEMU 122 | Serial Number: Not Specified 123 | Asset Tag: Not Specified 124 | Part Number: Not Specified 125 | Rank: Unknown 126 | Configured Clock Speed: Unknown 127 | Minimum Voltage: Unknown 128 | Maximum Voltage: Unknown 129 | Configured Voltage: Unknown 130 | 131 | Handle 0x1300, DMI type 19, 31 bytes 132 | Memory Array Mapped Address 133 | Starting Address: 0x00000000000 134 | Ending Address: 0x0007FFFFFFF 135 | Range Size: 2 GB 136 | Physical Array Handle: 0x1000 137 | Partition Width: 1 138 | 139 | Handle 0x2000, DMI type 32, 11 bytes 140 | System Boot Information 141 | Status: No errors detected 142 | 143 | Handle 0x7F00, DMI type 127, 4 bytes 144 | End Of Table 145 | 146 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/hard_inxi.log: -------------------------------------------------------------------------------- 1 | System: Host: scw-016449 Kernel: 4.4.38-std-1 x86_64 (64 bit gcc: 5.3.1) Console: tty 2 | Distro: Ubuntu 16.04 xenial 3 | Machine: System: QEMU product: Standard PC (i440FX + PIIX 1996) v: pc-i440fx-wily 4 | Mobo: N/A model: N/A Bios: Sea v: Ubuntu-1.8.2-1ubuntu1 date: 04/01/2014 5 | Chassis: type: 1 v: pc-i440fx-wily 6 | CPU(s): 2 Single core Intel Atom C2750s (-HT-SMP-) cache: 2048 KB 7 | flags: (lm nx sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx) bmips: 9575 8 | clock speeds: max: 2393 MHz 1: 2393 MHz 2: 2393 MHz 9 | Graphics: Card: Failed to Detect Video Card! 10 | Display Server: N/A driver: N/A tty size: N/A Advanced Data: N/A for root out of X 11 | Network: Card: Red Hat Virtio network device 12 | driver: virtio-pci port: c040 bus-ID: 00:02.0 chip-ID: 1af4:1000 13 | IF: eth0 state: up speed: N/A duplex: N/A mac: 14 | Drives: HDD Total Size: 50.0GB (2.3% used) ID-1: /dev/vda model: N/A size: 50.0GB serial: N/A 15 | Partition: ID-1: / size: 46G used: 1.1G (3%) fs: ext4 dev: /dev/vda 16 | RAID: System: supported: linear raid0 raid1 raid10 raid6 raid5 raid4 multipath faulty 17 | No RAID devices: /proc/mdstat, md_mod kernel module present 18 | Unused Devices: none 19 | Sensors: None detected - is lm-sensors installed and configured? 20 | Info: Processes: 78 Uptime: 1 day Memory: 119.2/2003.0MB 21 | Init: systemd v: 229 runlevel: 3 default: multi-user.target Gcc sys: N/A 22 | Client: Unknown python3.5 client inxi: 2.2.35 23 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/hard_lsblk.log: -------------------------------------------------------------------------------- 1 | NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT 2 | /dev/vda 253:0 0 46.6G 0 disk / 3 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/hard_lscpu.log: -------------------------------------------------------------------------------- 1 | Architecture: x86_64 2 | CPU op-mode(s): 32-bit, 64-bit 3 | Byte Order: Little Endian 4 | CPU(s): 2 5 | On-line CPU(s) list: 0,1 6 | Thread(s) per core: 1 7 | Core(s) per socket: 1 8 | Socket(s): 2 9 | Vendor ID: GenuineIntel 10 | CPU family: 6 11 | Model: 77 12 | Model name: Intel(R) Atom(TM) CPU C2750 @ 2.40GHz 13 | Stepping: 8 14 | CPU MHz: 2393.902 15 | BogoMIPS: 4787.80 16 | Virtualization: VT-x 17 | Hypervisor vendor: KVM 18 | Virtualization type: full 19 | Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx rdtscp lm constant_tsc arch_perfmon rep_good nopl pni pclmulqdq vmx ssse3 cx16 sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes rdrand hypervisor lahf_lm 3dnowprefetch arat tpr_shadow vnmi flexpriority ept vpid tsc_adjust smep erms 20 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/hard_virt_tech.log: -------------------------------------------------------------------------------- 1 | qemu 2 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/netstat.log: -------------------------------------------------------------------------------- 1 | Active Internet connections (only servers) 2 | Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name 3 | tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 3367/sshd 4 | tcp6 0 0 :::22 :::* LISTEN 3367/sshd 5 | udp 0 0 0.0.0.0:68 0.0.0.0:* 3314/dhclient 6 | udp 0 0 10.3.86.13:123 0.0.0.0:* 3578/ntpd 7 | udp 0 0 127.0.0.1:123 0.0.0.0:* 3578/ntpd 8 | udp 0 0 0.0.0.0:123 0.0.0.0:* 3578/ntpd 9 | udp6 0 0 fe80::dc19:58ff:fe3:123 :::* 3578/ntpd 10 | udp6 0 0 2001:bc8:4400:2300::123 :::* 3578/ntpd 11 | udp6 0 0 ::1:123 :::* 3578/ntpd 12 | udp6 0 0 :::123 :::* 3578/ntpd 13 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/nmap.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 14:07:03 2017 as: nmap -vvv -sT -sU -sV -oN nmap.log --top-ports 5000 localhost 2 | Warning: Hostname localhost resolves to 2 IPs. Using 127.0.0.1. 3 | Nmap scan report for localhost (127.0.0.1) 4 | Host is up, received localhost-response (0.00022s latency). 5 | Other addresses for localhost (not scanned): ::1 6 | Scanned at 2017-04-22 14:07:04 UTC for 93s 7 | Not shown: 9250 closed ports 8 | Reason: 4998 port-unreaches and 4252 conn-refused 9 | PORT STATE SERVICE REASON VERSION 10 | 22/tcp open ssh syn-ack OpenSSH 7.2p2 Ubuntu 4ubuntu2.1 (Ubuntu Linux; protocol 2.0) 11 | 68/udp open|filtered dhcpc no-response 12 | 123/udp open ntp udp-response ttl 64 NTP v4 (secondary server) 13 | Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel 14 | 15 | Read data files from: /usr/bin/../share/nmap 16 | Service detection performed. Please report any incorrect results at https://nmap.org/submit/ . 17 | # Nmap done at Sat Apr 22 14:08:37 2017 -- 1 IP address (1 host up) scanned in 94.31 seconds 18 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/nmap_pro.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 14:15:56 2017 as: nmap -vvv -sO -oN nmap_pro.log localhost 2 | Warning: Hostname localhost resolves to 2 IPs. Using 127.0.0.1. 3 | Nmap scan report for localhost (127.0.0.1) 4 | Host is up, received localhost-response (0.000019s latency). 5 | Other addresses for localhost (not scanned): ::1 6 | Scanned at 2017-04-22 14:15:56 UTC for 2s 7 | Not shown: 250 closed protocols 8 | Reason: 250 proto-unreaches 9 | PROTOCOL STATE SERVICE REASON 10 | 1 open icmp proto-unreach ttl 64 11 | 2 open|filtered igmp no-response 12 | 6 open tcp proto-response ttl 64 13 | 17 open udp port-unreach ttl 64 14 | 136 open|filtered udplite no-response 15 | 255 open|filtered unknown no-response 16 | 17 | Read data files from: /usr/bin/../share/nmap 18 | # Nmap done at Sat Apr 22 14:15:58 2017 -- 1 IP address (1 host up) scanned in 1.60 seconds 19 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/nmap_v6.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 14:15:46 2017 as: nmap -vvv -6 -sT -sU -sV -oN nmap_v6.log --top-ports 5000 localhost 2 | Warning: Hostname localhost resolves to 2 IPs. Using ::1. 3 | Nmap scan report for localhost (::1) 4 | Host is up, received localhost-response (0.00034s latency). 5 | Other addresses for localhost (not scanned): 127.0.0.1 6 | Scanned at 2017-04-22 14:15:47 UTC for 3s 7 | Not shown: 9251 closed ports 8 | Reason: 4999 port-unreaches and 4252 conn-refused 9 | PORT STATE SERVICE REASON VERSION 10 | 22/tcp open ssh syn-ack OpenSSH 7.2p2 Ubuntu 4ubuntu2.1 (Ubuntu Linux; protocol 2.0) 11 | 123/udp open ntp udp-response ttl 64 NTP v4 (secondary server) 12 | Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel 13 | 14 | Read data files from: /usr/bin/../share/nmap 15 | Service detection performed. Please report any incorrect results at https://nmap.org/submit/ . 16 | # Nmap done at Sat Apr 22 14:15:50 2017 -- 1 IP address (1 host up) scanned in 4.47 seconds 17 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/speedtest_bar.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Scaleway (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Adamo (Barcelona) [831.01 km]: 392.431 ms 6 | Testing download speed................................................................................ 7 | Download: 225.28 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 41.78 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Scaleway (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Adamo (Barcelona) [831.01 km]: 35.222 ms 15 | Testing download speed................................................................................ 16 | Download: 749.36 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 36.90 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Scaleway (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Adamo (Barcelona) [831.01 km]: 35.164 ms 24 | Testing download speed................................................................................ 25 | Download: 701.08 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 45.76 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/speedtest_ber.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Scaleway (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Interoute VDC (Berlin) [876.71 km]: 33.173 ms 6 | Testing download speed................................................................................ 7 | Download: 513.85 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 102.08 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Scaleway (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Interoute VDC (Berlin) [876.71 km]: 27.248 ms 15 | Testing download speed................................................................................ 16 | Download: 325.35 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 61.71 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Scaleway (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Interoute VDC (Berlin) [876.71 km]: 32.552 ms 24 | Testing download speed................................................................................ 25 | Download: 520.70 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 61.51 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/speedtest_lon.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Scaleway (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Vodafone UK (London) [343.04 km]: 15.597 ms 6 | Testing download speed................................................................................ 7 | Download: 811.05 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 117.51 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Scaleway (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Vodafone UK (London) [343.04 km]: 13.267 ms 15 | Testing download speed................................................................................ 16 | Download: 662.94 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 111.69 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Scaleway (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Vodafone UK (London) [343.04 km]: 12.673 ms 24 | Testing download speed................................................................................ 25 | Download: 824.84 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 92.58 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/speedtest_mad.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Scaleway (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Adamo (Madrid) [1053.53 km]: 586.311 ms 6 | Testing download speed................................................................................ 7 | Download: 359.32 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 62.68 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Scaleway (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Adamo (Madrid) [1053.53 km]: 26.233 ms 15 | Testing download speed................................................................................ 16 | Download: 317.08 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 50.99 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Scaleway (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Adamo (Madrid) [1053.53 km]: 26.525 ms 24 | Testing download speed................................................................................ 25 | Download: 425.13 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 58.33 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/speedtest_near.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Scaleway (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Orange (Paris) [1.88 km]: 3.811 ms 6 | Testing download speed................................................................................ 7 | Download: 759.36 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 290.74 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Scaleway (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Orange (Paris) [1.88 km]: 4.131 ms 15 | Testing download speed................................................................................ 16 | Download: 801.65 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 287.55 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Scaleway (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Bouygues Telecom (Paris) [1.88 km]: 4.17 ms 24 | Testing download speed................................................................................ 25 | Download: 884.74 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 286.10 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/speedtest_par.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Scaleway (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Orange (Paris) [1.88 km]: 11.396 ms 6 | Testing download speed................................................................................ 7 | Download: 257.89 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 290.07 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Scaleway (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Orange (Paris) [1.88 km]: 17.058 ms 15 | Testing download speed................................................................................ 16 | Download: 334.46 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 177.29 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Scaleway (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Orange (Paris) [1.88 km]: 7.942 ms 24 | Testing download speed................................................................................ 25 | Download: 426.94 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 131.85 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/speedtest_rom.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Scaleway (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Telecom Italia S.p.A. (Rome) [1106.58 km]: 277.5 ms 6 | Testing download speed................................................................................ 7 | Download: 325.85 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 73.19 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Scaleway (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Telecom Italia S.p.A. (Rome) [1106.58 km]: 27.561 ms 15 | Testing download speed................................................................................ 16 | Download: 825.08 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 55.48 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Scaleway (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Telecom Italia S.p.A. (Rome) [1106.58 km]: 28.635 ms 24 | Testing download speed................................................................................ 25 | Download: 759.64 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 48.49 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/web_ghost_wrk_100.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 100 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 380.09ms 87.27ms 1.75s 87.07% 5 | Req/Sec 27.74 15.67 90.00 67.05% 6 | 45912 requests in 3.00m, 10.03MB read 7 | Socket errors: connect 0, read 0, write 0, timeout 93 8 | Requests/sec: 254.94 9 | Transfer/sec: 57.05KB 10 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/web_ghost_wrk_150.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 150 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 565.41ms 120.56ms 1.95s 86.70% 5 | Req/Sec 29.84 22.55 141.00 79.20% 6 | 45924 requests in 3.00m, 10.04MB read 7 | Socket errors: connect 0, read 0, write 0, timeout 156 8 | Requests/sec: 255.00 9 | Transfer/sec: 57.06KB 10 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/web_ghost_wrk_200.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 200 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 710.98ms 140.17ms 1.99s 86.53% 5 | Req/Sec 30.52 23.28 141.00 76.22% 6 | 44906 requests in 3.00m, 9.81MB read 7 | Socket errors: connect 0, read 21, write 0, timeout 238 8 | Requests/sec: 249.34 9 | Transfer/sec: 55.80KB 10 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/web_wp_ab_10.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56231 bytes 14 | 15 | Concurrency Level: 10 16 | Time taken for tests: 180.117 seconds 17 | Complete requests: 3901 18 | Failed requests: 0 19 | Total transferred: 221072920 bytes 20 | HTML transferred: 219486272 bytes 21 | Requests per second: 21.66 [#/sec] (mean) 22 | Time per request: 461.720 [ms] (mean) 23 | Time per request: 46.172 [ms] (mean, across all concurrent requests) 24 | Transfer rate: 1198.62 [Kbytes/sec] received 25 | 26 | Connection Times (ms) 27 | min mean[+/-sd] median max 28 | Connect: 28 74 215.8 38 3262 29 | Processing: 168 386 179.5 371 6780 30 | Waiting: 83 199 157.5 184 6540 31 | Total: 198 461 302.1 417 9860 32 | 33 | Percentage of the requests served within a certain time (ms) 34 | 50% 417 35 | 66% 460 36 | 75% 487 37 | 80% 507 38 | 90% 586 39 | 95% 711 40 | 98% 1311 41 | 99% 1429 42 | 100% 9860 (longest request) 43 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/web_wp_ab_25.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56231 bytes 14 | 15 | Concurrency Level: 25 16 | Time taken for tests: 180.035 seconds 17 | Complete requests: 4248 18 | Failed requests: 0 19 | Total transferred: 240672821 bytes 20 | HTML transferred: 238946103 bytes 21 | Requests per second: 23.60 [#/sec] (mean) 22 | Time per request: 1059.526 [ms] (mean) 23 | Time per request: 42.381 [ms] (mean, across all concurrent requests) 24 | Transfer rate: 1305.48 [Kbytes/sec] received 25 | 26 | Connection Times (ms) 27 | min mean[+/-sd] median max 28 | Connect: 29 102 144.7 88 3210 29 | Processing: 229 955 304.2 977 3688 30 | Waiting: 117 528 198.4 558 2926 31 | Total: 337 1057 316.1 1051 4771 32 | 33 | Percentage of the requests served within a certain time (ms) 34 | 50% 1051 35 | 66% 1197 36 | 75% 1269 37 | 80% 1313 38 | 90% 1407 39 | 95% 1486 40 | 98% 1750 41 | 99% 1931 42 | 100% 4771 (longest request) 43 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/web_wp_ab_50.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56231 bytes 14 | 15 | Concurrency Level: 50 16 | Time taken for tests: 180.005 seconds 17 | Complete requests: 3900 18 | Failed requests: 0 19 | Total transferred: 221240568 bytes 20 | HTML transferred: 219652296 bytes 21 | Requests per second: 21.67 [#/sec] (mean) 22 | Time per request: 2307.753 [ms] (mean) 23 | Time per request: 46.155 [ms] (mean, across all concurrent requests) 24 | Transfer rate: 1200.28 [Kbytes/sec] received 25 | 26 | Connection Times (ms) 27 | min mean[+/-sd] median max 28 | Connect: 28 194 146.6 184 2385 29 | Processing: 356 2108 685.5 2325 4069 30 | Waiting: 170 1109 430.0 1170 3020 31 | Total: 608 2302 645.9 2463 5202 32 | 33 | Percentage of the requests served within a certain time (ms) 34 | 50% 2463 35 | 66% 2737 36 | 75% 2851 37 | 80% 2912 38 | 90% 3008 39 | 95% 3082 40 | 98% 3199 41 | 99% 3457 42 | 100% 5202 (longest request) 43 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/web_wp_wrk_100.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 100 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 1.45s 541.08ms 2.00s 81.60% 5 | Req/Sec 4.76 4.51 60.00 67.85% 6 | Latency Distribution 7 | 50% 1.71s 8 | 75% 1.84s 9 | 90% 1.93s 10 | 99% 1.99s 11 | 4670 requests in 3.00m, 253.77MB read 12 | Socket errors: connect 0, read 197, write 0, timeout 4257 13 | Requests/sec: 25.93 14 | Transfer/sec: 1.41MB 15 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/web_wp_wrk_150.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 150 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 850.85ms 517.31ms 1.97s 61.00% 5 | Req/Sec 4.85 4.57 40.00 67.59% 6 | Latency Distribution 7 | 50% 726.01ms 8 | 75% 1.28s 9 | 90% 1.54s 10 | 99% 1.97s 11 | 4809 requests in 3.00m, 260.53MB read 12 | Socket errors: connect 0, read 2, write 0, timeout 4709 13 | Requests/sec: 26.70 14 | Transfer/sec: 1.45MB 15 | -------------------------------------------------------------------------------- /logs/scaleway-vc1s-ubuntu/web_wp_wrk_200.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 200 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 262.51ms 137.26ms 2.00s 85.19% 5 | Req/Sec 15.91 10.12 70.00 70.46% 6 | Latency Distribution 7 | 50% 247.25ms 8 | 75% 297.99ms 9 | 90% 371.77ms 10 | 99% 800.76ms 11 | 22691 requests in 3.00m, 211.14MB read 12 | Socket errors: connect 0, read 2, write 0, timeout 3630 13 | Non-2xx or 3xx responses: 18996 14 | Requests/sec: 126.02 15 | Transfer/sec: 1.17MB 16 | -------------------------------------------------------------------------------- /logs/vultr-20gbssd-ubuntu/dd_cpu.log: -------------------------------------------------------------------------------- 1 | 1024+0 records in 2 | 1024+0 records out 3 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.65705 s, 404 MB/s 4 | 1024+0 records in 5 | 1024+0 records out 6 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.66392 s, 403 MB/s 7 | 1024+0 records in 8 | 1024+0 records out 9 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.67886 s, 401 MB/s 10 | -------------------------------------------------------------------------------- /logs/vultr-20gbssd-ubuntu/dd_io.log: -------------------------------------------------------------------------------- 1 | 16384+0 records in 2 | 16384+0 records out 3 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.26359 s, 474 MB/s 4 | 16384+0 records in 5 | 16384+0 records out 6 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.23953 s, 479 MB/s 7 | 16384+0 records in 8 | 16384+0 records out 9 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.24807 s, 478 MB/s 10 | -------------------------------------------------------------------------------- /logs/vultr-20gbssd-ubuntu/hard_dmidecode.log: -------------------------------------------------------------------------------- 1 | # dmidecode 3.0 2 | Getting SMBIOS data from sysfs. 3 | SMBIOS 2.8 present. 4 | 9 structures occupying 412 bytes. 5 | Table at 0x000F68F0. 6 | 7 | Handle 0x0000, DMI type 0, 24 bytes 8 | BIOS Information 9 | Vendor: SeaBIOS 10 | Version: rel-1.10.1-0-g8891697-prebuilt.qemu-project.org 11 | Release Date: 04/01/2014 12 | Address: 0xE8000 13 | Runtime Size: 96 kB 14 | ROM Size: 64 kB 15 | Characteristics: 16 | BIOS characteristics not supported 17 | Targeted content distribution is supported 18 | BIOS Revision: 0.0 19 | 20 | Handle 0x0100, DMI type 1, 27 bytes 21 | System Information 22 | Manufacturer: QEMU 23 | Product Name: Standard PC (i440FX + PIIX, 1996) 24 | Version: pc-i440fx-2.8 25 | Serial Number: Not Specified 26 | UUID: 6FB7733C-772A-4E53-B23D-244110CAACED 27 | Wake-up Type: Power Switch 28 | SKU Number: Not Specified 29 | Family: Not Specified 30 | 31 | Handle 0x0300, DMI type 3, 21 bytes 32 | Chassis Information 33 | Manufacturer: QEMU 34 | Type: Other 35 | Lock: Not Present 36 | Version: pc-i440fx-2.8 37 | Serial Number: Not Specified 38 | Asset Tag: Not Specified 39 | Boot-up State: Safe 40 | Power Supply State: Safe 41 | Thermal State: Safe 42 | Security Status: Unknown 43 | OEM Information: 0x00000000 44 | Height: Unspecified 45 | Number Of Power Cords: Unspecified 46 | Contained Elements: 0 47 | 48 | Handle 0x0400, DMI type 4, 42 bytes 49 | Processor Information 50 | Socket Designation: CPU 0 51 | Type: Central Processor 52 | Family: Other 53 | Manufacturer: QEMU 54 | ID: C1 06 03 00 FF FB 8B 07 55 | Version: pc-i440fx-2.8 56 | Voltage: Unknown 57 | External Clock: Unknown 58 | Max Speed: 2000 MHz 59 | Current Speed: 2000 MHz 60 | Status: Populated, Enabled 61 | Upgrade: Other 62 | L1 Cache Handle: Not Provided 63 | L2 Cache Handle: Not Provided 64 | L3 Cache Handle: Not Provided 65 | Serial Number: Not Specified 66 | Asset Tag: Not Specified 67 | Part Number: Not Specified 68 | Core Count: 1 69 | Core Enabled: 1 70 | Thread Count: 1 71 | Characteristics: None 72 | 73 | Handle 0x1000, DMI type 16, 23 bytes 74 | Physical Memory Array 75 | Location: Other 76 | Use: System Memory 77 | Error Correction Type: Multi-bit ECC 78 | Maximum Capacity: 512 MB 79 | Error Information Handle: Not Provided 80 | Number Of Devices: 1 81 | 82 | Handle 0x1100, DMI type 17, 40 bytes 83 | Memory Device 84 | Array Handle: 0x1000 85 | Error Information Handle: Not Provided 86 | Total Width: Unknown 87 | Data Width: Unknown 88 | Size: 512 MB 89 | Form Factor: DIMM 90 | Set: None 91 | Locator: DIMM 0 92 | Bank Locator: Not Specified 93 | Type: RAM 94 | Type Detail: Other 95 | Speed: Unknown 96 | Manufacturer: QEMU 97 | Serial Number: Not Specified 98 | Asset Tag: Not Specified 99 | Part Number: Not Specified 100 | Rank: Unknown 101 | Configured Clock Speed: Unknown 102 | Minimum Voltage: Unknown 103 | Maximum Voltage: Unknown 104 | Configured Voltage: Unknown 105 | 106 | Handle 0x1300, DMI type 19, 31 bytes 107 | Memory Array Mapped Address 108 | Starting Address: 0x00000000000 109 | Ending Address: 0x0001FFFFFFF 110 | Range Size: 512 MB 111 | Physical Array Handle: 0x1000 112 | Partition Width: 1 113 | 114 | Handle 0x2000, DMI type 32, 11 bytes 115 | System Boot Information 116 | Status: No errors detected 117 | 118 | Handle 0x7F00, DMI type 127, 4 bytes 119 | End Of Table 120 | 121 | -------------------------------------------------------------------------------- /logs/vultr-20gbssd-ubuntu/hard_inxi.log: -------------------------------------------------------------------------------- 1 | System: Host: vultr-20gbssd-ubuntu Kernel: 4.4.0-66-generic x86_64 (64 bit gcc: 5.4.0) Console: tty 2 | Distro: Ubuntu 16.04 xenial 3 | Machine: System: QEMU product: Standard PC (i440FX + PIIX 1996) v: pc-i440fx-2.8 4 | Mobo: N/A model: N/A 5 | Bios: Sea v: rel-1.10.1-0-g8891697-prebuilt.qemu-project.org date: 04/01/2014 6 | Chassis: type: 1 v: pc-i440fx-2.8 7 | CPU: Single core Virtual 714389bda930 (-UP-) cache: 16384 KB 8 | flags: (lm nx sse sse2 sse3 sse4_1 sse4_2 ssse3) bmips: 4799 speed: 2399 MHz (max) 9 | Graphics: Card: Cirrus Logic GD 5446 bus-ID: 00:02.0 chip-ID: 1013:00b8 10 | Display Server: N/A driver: N/A tty size: N/A Advanced Data: N/A for root out of X 11 | Network: Card: Red Hat Virtio network device 12 | driver: virtio-pci port: c060 bus-ID: 00:03.0 chip-ID: 1af4:1000 13 | IF: ens3 state: up speed: -1 duplex: unknown mac: 14 | Drives: HDD Total Size: 21.5GB (9.0% used) ID-1: /dev/vda model: N/A size: 21.5GB serial: N/A 15 | Partition: ID-1: / size: 20G used: 1.8G (10%) fs: ext4 dev: /dev/vda1 16 | RAID: System: supported: linear multipath raid0 raid1 raid6 raid5 raid4 raid10 17 | No RAID devices: /proc/mdstat, md_mod kernel module present 18 | Unused Devices: none 19 | Sensors: None detected - is lm-sensors installed and configured? 20 | Info: Processes: 124 Uptime: 10 min Memory: 91.9/488.2MB 21 | Init: systemd v: 229 runlevel: 5 Gcc sys: N/A Client: Unknown python3.5 client inxi: 2.2.35 22 | -------------------------------------------------------------------------------- /logs/vultr-20gbssd-ubuntu/hard_lsblk.log: -------------------------------------------------------------------------------- 1 | NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT 2 | /dev/sr0 11:0 1 1024M 0 rom 3 | /dev/vda 253:0 0 20G 0 disk 4 | └─/dev/vda1 253:1 0 20G 0 part / 5 | -------------------------------------------------------------------------------- /logs/vultr-20gbssd-ubuntu/hard_lscpu.log: -------------------------------------------------------------------------------- 1 | Architecture: x86_64 2 | CPU op-mode(s): 32-bit, 64-bit 3 | Byte Order: Little Endian 4 | CPU(s): 1 5 | On-line CPU(s) list: 0 6 | Thread(s) per core: 1 7 | Core(s) per socket: 1 8 | Socket(s): 1 9 | NUMA node(s): 1 10 | Vendor ID: GenuineIntel 11 | CPU family: 6 12 | Model: 60 13 | Model name: Virtual CPU 714389bda930 14 | Stepping: 1 15 | CPU MHz: 2399.996 16 | BogoMIPS: 4799.99 17 | Hypervisor vendor: KVM 18 | Virtualization type: full 19 | L1d cache: 32K 20 | L1i cache: 32K 21 | L2 cache: 4096K 22 | L3 cache: 16384K 23 | NUMA node0 CPU(s): 0 24 | Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 syscall nx rdtscp lm constant_tsc rep_good nopl xtopology eagerfpu pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt arat 25 | -------------------------------------------------------------------------------- /logs/vultr-20gbssd-ubuntu/hard_virt_tech.log: -------------------------------------------------------------------------------- 1 | qemu 2 | -------------------------------------------------------------------------------- /logs/vultr-20gbssd-ubuntu/sysbench_cpu.log: -------------------------------------------------------------------------------- 1 | sysbench 0.4.12: multi-threaded system evaluation benchmark 2 | 3 | Running the test with following options: 4 | Number of threads: 1 5 | 6 | Doing CPU performance benchmark 7 | 8 | Threads started! 9 | Done. 10 | 11 | Maximum prime number checked in CPU test: 20000 12 | 13 | 14 | Test execution summary: 15 | total time: 30.2241s 16 | total number of events: 10000 17 | total time taken by event execution: 30.2205 18 | per-request statistics: 19 | min: 2.88ms 20 | avg: 3.02ms 21 | max: 10.03ms 22 | approx. 95 percentile: 3.46ms 23 | 24 | Threads fairness: 25 | events (avg/stddev): 10000.0000/0.00 26 | execution time (avg/stddev): 30.2205/0.00 27 | 28 | sysbench 0.4.12: multi-threaded system evaluation benchmark 29 | 30 | Running the test with following options: 31 | Number of threads: 1 32 | 33 | Doing CPU performance benchmark 34 | 35 | Threads started! 36 | Done. 37 | 38 | Maximum prime number checked in CPU test: 20000 39 | 40 | 41 | Test execution summary: 42 | total time: 30.1735s 43 | total number of events: 10000 44 | total time taken by event execution: 30.1700 45 | per-request statistics: 46 | min: 2.89ms 47 | avg: 3.02ms 48 | max: 9.08ms 49 | approx. 95 percentile: 3.41ms 50 | 51 | Threads fairness: 52 | events (avg/stddev): 10000.0000/0.00 53 | execution time (avg/stddev): 30.1700/0.00 54 | 55 | sysbench 0.4.12: multi-threaded system evaluation benchmark 56 | 57 | Running the test with following options: 58 | Number of threads: 1 59 | 60 | Doing CPU performance benchmark 61 | 62 | Threads started! 63 | Done. 64 | 65 | Maximum prime number checked in CPU test: 20000 66 | 67 | 68 | Test execution summary: 69 | total time: 30.2695s 70 | total number of events: 10000 71 | total time taken by event execution: 30.2661 72 | per-request statistics: 73 | min: 2.89ms 74 | avg: 3.03ms 75 | max: 9.30ms 76 | approx. 95 percentile: 3.47ms 77 | 78 | Threads fairness: 79 | events (avg/stddev): 10000.0000/0.00 80 | execution time (avg/stddev): 30.2661/0.00 81 | 82 | -------------------------------------------------------------------------------- /logs/vultr-20gbssd-ubuntu/sysbench_randrd.log: -------------------------------------------------------------------------------- 1 | sysbench 0.4.12: multi-threaded system evaluation benchmark 2 | 3 | Running the test with following options: 4 | Number of threads: 1 5 | Initializing random number generator from timer. 6 | 7 | 8 | Extra file open flags: 0 9 | 128 files, 64Mb each 10 | 8Gb total file size 11 | Block size 4Kb 12 | Number of random requests for random IO: 0 13 | Read/Write ratio for combined random IO test: 1.50 14 | Periodic FSYNC enabled, calling fsync() each 100 requests. 15 | Calling fsync() at the end of test, Enabled. 16 | Using synchronous I/O mode 17 | Doing random read test 18 | Threads started! 19 | FATAL: Failed to read file! file: 122 pos: 19677184 errno = 0 () 20 | Done. 21 | 22 | Operations performed: 0 Read, 0 Write, 0 Other = 0 Total 23 | Read 0b Written 0b Total transferred 0b (0b/sec) 24 | 0.00 Requests/sec executed 25 | 26 | Test execution summary: 27 | total time: 0.0005s 28 | total number of events: 0 29 | total time taken by event execution: 0.0000 30 | per-request statistics: 31 | min: 18446744073709.55ms 32 | avg: 0.00ms 33 | max: 0.00ms 34 | 35 | Threads fairness: 36 | events (avg/stddev): 0.0000/0.00 37 | execution time (avg/stddev): 0.0000/0.00 38 | 39 | sysbench 0.4.12: multi-threaded system evaluation benchmark 40 | 41 | Running the test with following options: 42 | Number of threads: 1 43 | Initializing random number generator from timer. 44 | 45 | 46 | Extra file open flags: 0 47 | 128 files, 64Mb each 48 | 8Gb total file size 49 | Block size 4Kb 50 | Number of random requests for random IO: 0 51 | Read/Write ratio for combined random IO test: 1.50 52 | Periodic FSYNC enabled, calling fsync() each 100 requests. 53 | Calling fsync() at the end of test, Enabled. 54 | Using synchronous I/O mode 55 | Doing random read test 56 | Threads started! 57 | FATAL: Failed to read file! file: 56 pos: 9666560 errno = 0 () 58 | Done. 59 | 60 | Operations performed: 0 Read, 0 Write, 0 Other = 0 Total 61 | Read 0b Written 0b Total transferred 0b (0b/sec) 62 | 0.00 Requests/sec executed 63 | 64 | Test execution summary: 65 | total time: 0.0003s 66 | total number of events: 0 67 | total time taken by event execution: 0.0000 68 | per-request statistics: 69 | min: 18446744073709.55ms 70 | avg: 0.00ms 71 | max: 0.00ms 72 | 73 | Threads fairness: 74 | events (avg/stddev): 0.0000/0.00 75 | execution time (avg/stddev): 0.0000/0.00 76 | 77 | sysbench 0.4.12: multi-threaded system evaluation benchmark 78 | 79 | Running the test with following options: 80 | Number of threads: 1 81 | Initializing random number generator from timer. 82 | 83 | 84 | Extra file open flags: 0 85 | 128 files, 64Mb each 86 | 8Gb total file size 87 | Block size 4Kb 88 | Number of random requests for random IO: 0 89 | Read/Write ratio for combined random IO test: 1.50 90 | Periodic FSYNC enabled, calling fsync() each 100 requests. 91 | Calling fsync() at the end of test, Enabled. 92 | Using synchronous I/O mode 93 | Doing random read test 94 | Threads started! 95 | FATAL: Failed to read file! file: 23 pos: 4657152 errno = 0 () 96 | Done. 97 | 98 | Operations performed: 0 Read, 0 Write, 0 Other = 0 Total 99 | Read 0b Written 0b Total transferred 0b (0b/sec) 100 | 0.00 Requests/sec executed 101 | 102 | Test execution summary: 103 | total time: 0.0006s 104 | total number of events: 0 105 | total time taken by event execution: 0.0000 106 | per-request statistics: 107 | min: 18446744073709.55ms 108 | avg: 0.00ms 109 | max: 0.00ms 110 | 111 | Threads fairness: 112 | events (avg/stddev): 0.0000/0.00 113 | execution time (avg/stddev): 0.0000/0.00 114 | 115 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/dd_cpu.log: -------------------------------------------------------------------------------- 1 | 1024+0 records in 2 | 1024+0 records out 3 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.70214 s, 397 MB/s 4 | 1024+0 records in 5 | 1024+0 records out 6 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.75151 s, 390 MB/s 7 | 1024+0 records in 8 | 1024+0 records out 9 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.68715 s, 400 MB/s 10 | 1024+0 records in 11 | 1024+0 records out 12 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.7524 s, 390 MB/s 13 | 1024+0 records in 14 | 1024+0 records out 15 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.68114 s, 400 MB/s 16 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/dd_io.log: -------------------------------------------------------------------------------- 1 | 16384+0 records in 2 | 16384+0 records out 3 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.42508 s, 443 MB/s 4 | 16384+0 records in 5 | 16384+0 records out 6 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.29751 s, 467 MB/s 7 | 16384+0 records in 8 | 16384+0 records out 9 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.34835 s, 457 MB/s 10 | 16384+0 records in 11 | 16384+0 records out 12 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.34551 s, 458 MB/s 13 | 16384+0 records in 14 | 16384+0 records out 15 | 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.30267 s, 466 MB/s 16 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/downloads.log: -------------------------------------------------------------------------------- 1 | Download a 100Mb file: 2 | ====================== 3 | 4 | IPv4 speedtests 5 | 6 | CacheFly CDN (IPv4): 139MB/s 7 | DigitalOcean (GB) (IPv4): 152MB/s 8 | LeaseWeb (NL) (IPv4): 150MB/s 9 | Linode (GB) (IPv4): 105MB/s 10 | Online.net (FR) (IPv4): 30.7MB/s 11 | OVH (FR) (IPv4): 12 | Softlayer (FR) (IPv4): 42.5MB/s 13 | Vultr (GB) (IPv4): 177MB/s 14 | 15 | IPv6 speedtests 16 | 17 | CacheFly CDN (IPv6): 18 | DigitalOcean (GB) (IPv6): 131MB/s 19 | LeaseWeb (NL) (IPv6): 180MB/s 20 | Linode (GB) (IPv6): 109MB/s 21 | Online.net (FR) (IPv6): 22 | OVH (FR) (IPv6): 23 | Softlayer (FR) (IPv6): 29.0MB/s 24 | Vultr (GB) (IPv6): 25 | 26 | Download a 10Gb file: 27 | ====================== 28 | 29 | IPv4 speedtests 30 | 31 | CDN77.com (NL) (IPv4): 159MB/s 32 | Online.net 10G (FR) (IPv4): 139MB/s 33 | OVH 10G (FR) (IPv4): 34 | 35 | IPv6 speedtests 36 | 37 | CDN77.com (NL) (IPv6): 38 | Online.net 10G (FR) (IPv6): 39 | OVH 10G (FR) (IPv6): 40 | 41 | Download a 100Mb file: 42 | ====================== 43 | 44 | IPv4 speedtests 45 | 46 | CacheFly CDN (IPv4): 201MB/s 47 | DigitalOcean (GB) (IPv4): 150MB/s 48 | LeaseWeb (NL) (IPv4): 164MB/s 49 | Linode (GB) (IPv4): 174MB/s 50 | Online.net (FR) (IPv4): 85.1MB/s 51 | OVH (FR) (IPv4): 52 | Softlayer (FR) (IPv4): 98.4MB/s 53 | Vultr (GB) (IPv4): 199MB/s 54 | 55 | IPv6 speedtests 56 | 57 | CacheFly CDN (IPv6): 58 | DigitalOcean (GB) (IPv6): 141MB/s 59 | LeaseWeb (NL) (IPv6): 174MB/s 60 | Linode (GB) (IPv6): 110MB/s 61 | Online.net (FR) (IPv6): 62 | OVH (FR) (IPv6): 63 | Softlayer (FR) (IPv6): 83.4MB/s 64 | Vultr (GB) (IPv6): 65 | 66 | Download a 10Gb file: 67 | ====================== 68 | 69 | IPv4 speedtests 70 | 71 | CDN77.com (NL) (IPv4): 156MB/s 72 | Online.net 10G (FR) (IPv4): 150MB/s 73 | OVH 10G (FR) (IPv4): 74 | 75 | IPv6 speedtests 76 | 77 | CDN77.com (NL) (IPv6): 78 | Online.net 10G (FR) (IPv6): 79 | OVH 10G (FR) (IPv6): 80 | 81 | Download a 100Mb file: 82 | ====================== 83 | 84 | IPv4 speedtests 85 | 86 | CacheFly CDN (IPv4): 207MB/s 87 | DigitalOcean (GB) (IPv4): 143MB/s 88 | LeaseWeb (NL) (IPv4): 173MB/s 89 | Linode (GB) (IPv4): 125MB/s 90 | Online.net (FR) (IPv4): 104MB/s 91 | OVH (FR) (IPv4): 92 | Softlayer (FR) (IPv4): 97.7MB/s 93 | Vultr (GB) (IPv4): 209MB/s 94 | 95 | IPv6 speedtests 96 | 97 | CacheFly CDN (IPv6): 98 | DigitalOcean (GB) (IPv6): 166MB/s 99 | LeaseWeb (NL) (IPv6): 169MB/s 100 | Linode (GB) (IPv6): 121MB/s 101 | Online.net (FR) (IPv6): 102 | OVH (FR) (IPv6): 103 | Softlayer (FR) (IPv6): 78.5MB/s 104 | Vultr (GB) (IPv6): 105 | 106 | Download a 10Gb file: 107 | ====================== 108 | 109 | IPv4 speedtests 110 | 111 | CDN77.com (NL) (IPv4): 170MB/s 112 | Online.net 10G (FR) (IPv4): 186MB/s 113 | OVH 10G (FR) (IPv4): 158MB/s 114 | 115 | IPv6 speedtests 116 | 117 | CDN77.com (NL) (IPv6): 118 | Online.net 10G (FR) (IPv6): 119 | OVH 10G (FR) (IPv6): 120 | 121 | 122 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/hard_dmidecode.log: -------------------------------------------------------------------------------- 1 | # dmidecode 3.0 2 | Getting SMBIOS data from sysfs. 3 | SMBIOS 2.8 present. 4 | 9 structures occupying 412 bytes. 5 | Table at 0x000F68F0. 6 | 7 | Handle 0x0000, DMI type 0, 24 bytes 8 | BIOS Information 9 | Vendor: SeaBIOS 10 | Version: rel-1.10.1-0-g8891697-prebuilt.qemu-project.org 11 | Release Date: 04/01/2014 12 | Address: 0xE8000 13 | Runtime Size: 96 kB 14 | ROM Size: 64 kB 15 | Characteristics: 16 | BIOS characteristics not supported 17 | Targeted content distribution is supported 18 | BIOS Revision: 0.0 19 | 20 | Handle 0x0100, DMI type 1, 27 bytes 21 | System Information 22 | Manufacturer: QEMU 23 | Product Name: Standard PC (i440FX + PIIX, 1996) 24 | Version: pc-i440fx-2.8 25 | Serial Number: Not Specified 26 | UUID: 4FF0AB53-DC41-4654-ABF1-1308D981CC4B 27 | Wake-up Type: Power Switch 28 | SKU Number: Not Specified 29 | Family: Not Specified 30 | 31 | Handle 0x0300, DMI type 3, 21 bytes 32 | Chassis Information 33 | Manufacturer: QEMU 34 | Type: Other 35 | Lock: Not Present 36 | Version: pc-i440fx-2.8 37 | Serial Number: Not Specified 38 | Asset Tag: Not Specified 39 | Boot-up State: Safe 40 | Power Supply State: Safe 41 | Thermal State: Safe 42 | Security Status: Unknown 43 | OEM Information: 0x00000000 44 | Height: Unspecified 45 | Number Of Power Cords: Unspecified 46 | Contained Elements: 0 47 | 48 | Handle 0x0400, DMI type 4, 42 bytes 49 | Processor Information 50 | Socket Designation: CPU 0 51 | Type: Central Processor 52 | Family: Other 53 | Manufacturer: QEMU 54 | ID: D2 06 03 00 FF FB 8B 07 55 | Version: pc-i440fx-2.8 56 | Voltage: Unknown 57 | External Clock: Unknown 58 | Max Speed: 2000 MHz 59 | Current Speed: 2000 MHz 60 | Status: Populated, Enabled 61 | Upgrade: Other 62 | L1 Cache Handle: Not Provided 63 | L2 Cache Handle: Not Provided 64 | L3 Cache Handle: Not Provided 65 | Serial Number: Not Specified 66 | Asset Tag: Not Specified 67 | Part Number: Not Specified 68 | Core Count: 1 69 | Core Enabled: 1 70 | Thread Count: 1 71 | Characteristics: None 72 | 73 | Handle 0x1000, DMI type 16, 23 bytes 74 | Physical Memory Array 75 | Location: Other 76 | Use: System Memory 77 | Error Correction Type: Multi-bit ECC 78 | Maximum Capacity: 1 GB 79 | Error Information Handle: Not Provided 80 | Number Of Devices: 1 81 | 82 | Handle 0x1100, DMI type 17, 40 bytes 83 | Memory Device 84 | Array Handle: 0x1000 85 | Error Information Handle: Not Provided 86 | Total Width: Unknown 87 | Data Width: Unknown 88 | Size: 1024 MB 89 | Form Factor: DIMM 90 | Set: None 91 | Locator: DIMM 0 92 | Bank Locator: Not Specified 93 | Type: RAM 94 | Type Detail: Other 95 | Speed: Unknown 96 | Manufacturer: QEMU 97 | Serial Number: Not Specified 98 | Asset Tag: Not Specified 99 | Part Number: Not Specified 100 | Rank: Unknown 101 | Configured Clock Speed: Unknown 102 | Minimum Voltage: Unknown 103 | Maximum Voltage: Unknown 104 | Configured Voltage: Unknown 105 | 106 | Handle 0x1300, DMI type 19, 31 bytes 107 | Memory Array Mapped Address 108 | Starting Address: 0x00000000000 109 | Ending Address: 0x0003FFFFFFF 110 | Range Size: 1 GB 111 | Physical Array Handle: 0x1000 112 | Partition Width: 1 113 | 114 | Handle 0x2000, DMI type 32, 11 bytes 115 | System Boot Information 116 | Status: No errors detected 117 | 118 | Handle 0x7F00, DMI type 127, 4 bytes 119 | End Of Table 120 | 121 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/hard_inxi.log: -------------------------------------------------------------------------------- 1 | System: Host: vultr-25gbssd-ubuntu Kernel: 4.4.0-71-generic x86_64 (64 bit gcc: 5.4.0) Console: tty 2 | Distro: Ubuntu 16.04 xenial 3 | Machine: System: QEMU product: Standard PC (i440FX + PIIX 1996) v: pc-i440fx-2.8 4 | Mobo: N/A model: N/A 5 | Bios: Sea v: rel-1.10.1-0-g8891697-prebuilt.qemu-project.org date: 04/01/2014 6 | Chassis: type: 1 v: pc-i440fx-2.8 7 | CPU: Single core Virtual a7769a6388d5 (-UP-) cache: 16384 KB 8 | flags: (lm nx sse sse2 sse3 sse4_1 sse4_2 ssse3) bmips: 4799 speed: 2399 MHz (max) 9 | Graphics: Card: Cirrus Logic GD 5446 bus-ID: 00:02.0 chip-ID: 1013:00b8 10 | Display Server: N/A driver: N/A tty size: N/A Advanced Data: N/A for root out of X 11 | Network: Card: Red Hat Virtio network device 12 | driver: virtio-pci port: c060 bus-ID: 00:03.0 chip-ID: 1af4:1000 13 | IF: ens3 state: up speed: -1 duplex: unknown mac: 14 | Drives: HDD Total Size: 26.8GB (6.9% used) ID-1: /dev/vda model: N/A size: 26.8GB serial: N/A 15 | Partition: ID-1: / size: 25G used: 1.8G (8%) fs: ext4 dev: /dev/vda1 16 | RAID: System: supported: linear multipath raid0 raid1 raid6 raid5 raid4 raid10 17 | No RAID devices: /proc/mdstat, md_mod kernel module present 18 | Unused Devices: none 19 | Sensors: None detected - is lm-sensors installed and configured? 20 | Info: Processes: 105 Uptime: 13 min Memory: 99.0/992.2MB 21 | Init: systemd v: 229 runlevel: 5 Gcc sys: N/A Client: Unknown python3.5 client inxi: 2.2.35 22 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/hard_lsblk.log: -------------------------------------------------------------------------------- 1 | NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT 2 | /dev/sr0 11:0 1 1024M 0 rom 3 | /dev/vda 253:0 0 25G 0 disk 4 | └─/dev/vda1 253:1 0 25G 0 part / 5 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/hard_lscpu.log: -------------------------------------------------------------------------------- 1 | Architecture: x86_64 2 | CPU op-mode(s): 32-bit, 64-bit 3 | Byte Order: Little Endian 4 | CPU(s): 1 5 | On-line CPU(s) list: 0 6 | Thread(s) per core: 1 7 | Core(s) per socket: 1 8 | Socket(s): 1 9 | NUMA node(s): 1 10 | Vendor ID: GenuineIntel 11 | CPU family: 6 12 | Model: 61 13 | Model name: Virtual CPU a7769a6388d5 14 | Stepping: 2 15 | CPU MHz: 2399.998 16 | BogoMIPS: 4799.99 17 | Hypervisor vendor: KVM 18 | Virtualization type: full 19 | L1d cache: 32K 20 | L1i cache: 32K 21 | L2 cache: 4096K 22 | L3 cache: 16384K 23 | NUMA node0 CPU(s): 0 24 | Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 syscall nx rdtscp lm constant_tsc rep_good nopl xtopology eagerfpu pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt arat 25 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/hard_virt_tech.log: -------------------------------------------------------------------------------- 1 | qemu 2 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/netstat.log: -------------------------------------------------------------------------------- 1 | Active Internet connections (only servers) 2 | Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name 3 | tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1013/sshd 4 | tcp6 0 0 :::22 :::* LISTEN 1013/sshd 5 | udp 0 0 0.0.0.0:68 0.0.0.0:* 800/dhclient 6 | udp 0 0 x.x.x.x:123 0.0.0.0:* 1074/ntpd 7 | udp 0 0 127.0.0.1:123 0.0.0.0:* 1074/ntpd 8 | udp 0 0 0.0.0.0:123 0.0.0.0:* 1074/ntpd 9 | udp6 0 0 2001:19f0:7402:3c6::123 :::* 1074/ntpd 10 | udp6 0 0 fe80::5400:ff:fe62::123 :::* 1074/ntpd 11 | udp6 0 0 ::1:123 :::* 1074/ntpd 12 | udp6 0 0 :::123 :::* 1074/ntpd 13 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/nmap.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 14:07:02 2017 as: nmap -vvv -sT -sU -sV -oN nmap.log --top-ports 5000 localhost 2 | Warning: Hostname localhost resolves to 2 IPs. Using 127.0.0.1. 3 | Increasing send delay for 127.0.0.1 from 0 to 50 due to 1364 out of 4545 dropped probes since last increase. 4 | Increasing send delay for 127.0.0.1 from 50 to 100 due to 11 out of 24 dropped probes since last increase. 5 | Increasing send delay for 127.0.0.1 from 100 to 200 due to 11 out of 23 dropped probes since last increase. 6 | Nmap scan report for localhost (127.0.0.1) 7 | Host is up, received localhost-response (0.000045s latency). 8 | Other addresses for localhost (not scanned): ::1 9 | Scanned at 2017-04-22 14:07:03 UTC for 517s 10 | Not shown: 9250 closed ports 11 | Reason: 4998 port-unreaches and 4252 conn-refused 12 | PORT STATE SERVICE REASON VERSION 13 | 22/tcp open ssh syn-ack OpenSSH 7.2p2 Ubuntu 4ubuntu2.1 (Ubuntu Linux; protocol 2.0) 14 | 68/udp open|filtered dhcpc no-response 15 | 123/udp open ntp udp-response ttl 64 NTP v4 (secondary server) 16 | Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel 17 | 18 | Read data files from: /usr/bin/../share/nmap 19 | Service detection performed. Please report any incorrect results at https://nmap.org/submit/ . 20 | # Nmap done at Sat Apr 22 14:15:40 2017 -- 1 IP address (1 host up) scanned in 517.91 seconds 21 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/nmap_v6.log: -------------------------------------------------------------------------------- 1 | # Nmap 7.01 scan initiated Sat Apr 22 14:15:41 2017 as: nmap -vvv -6 -sT -sU -sV -oN nmap_v6.log --top-ports 5000 localhost 2 | Warning: Hostname localhost resolves to 2 IPs. Using ::1. 3 | Nmap scan report for localhost (::1) 4 | Host is up, received localhost-response (0.000094s latency). 5 | Other addresses for localhost (not scanned): 127.0.0.1 6 | Scanned at 2017-04-22 14:15:42 UTC for 2s 7 | Not shown: 9251 closed ports 8 | Reason: 4999 port-unreaches and 4252 conn-refused 9 | PORT STATE SERVICE REASON VERSION 10 | 22/tcp open ssh syn-ack OpenSSH 7.2p2 Ubuntu 4ubuntu2.1 (Ubuntu Linux; protocol 2.0) 11 | 123/udp open ntp udp-response ttl 64 NTP v4 (secondary server) 12 | Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel 13 | 14 | Read data files from: /usr/bin/../share/nmap 15 | Service detection performed. Please report any incorrect results at https://nmap.org/submit/ . 16 | # Nmap done at Sat Apr 22 14:15:44 2017 -- 1 IP address (1 host up) scanned in 2.72 seconds 17 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/speedtest_bar.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Choopa (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Adamo (Barcelona) [6195.48 km]: 37.433 ms 6 | Testing download speed................................................................................ 7 | Download: 529.81 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 179.16 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Choopa (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Adamo (Barcelona) [6195.48 km]: 32.997 ms 15 | Testing download speed................................................................................ 16 | Download: 907.50 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 171.82 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Choopa (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Adamo (Barcelona) [6195.48 km]: 32.9 ms 24 | Testing download speed................................................................................ 25 | Download: 952.54 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 182.91 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/speedtest_ber.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Choopa (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Interoute VDC (Berlin) [6416.61 km]: 50.805 ms 6 | Testing download speed................................................................................ 7 | Download: 982.70 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 190.96 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Choopa (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Interoute VDC (Berlin) [6416.61 km]: 28.733 ms 15 | Testing download speed................................................................................ 16 | Download: 1233.85 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 195.33 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Choopa (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Interoute VDC (Berlin) [6416.61 km]: 30.388 ms 24 | Testing download speed................................................................................ 25 | Download: 615.39 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 197.26 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/speedtest_lon.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Choopa (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Vodafone UK (London) [5603.36 km]: 3.269 ms 6 | Testing download speed................................................................................ 7 | Download: 2808.45 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 512.68 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Choopa (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Vodafone UK (London) [5603.36 km]: 3.339 ms 15 | Testing download speed................................................................................ 16 | Download: 3074.40 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 466.38 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Choopa (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Vodafone UK (London) [5603.36 km]: 3.187 ms 24 | Testing download speed................................................................................ 25 | Download: 3268.54 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 487.98 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/speedtest_mad.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Choopa (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Adamo (Madrid) [5799.03 km]: 58.429 ms 6 | Testing download speed................................................................................ 7 | Download: 390.82 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 126.33 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Choopa (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Adamo (Madrid) [5799.03 km]: 25.826 ms 15 | Testing download speed................................................................................ 16 | Download: 621.15 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 130.34 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Choopa (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Adamo (Madrid) [5799.03 km]: 24.252 ms 24 | Testing download speed................................................................................ 25 | Download: 594.46 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 129.01 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/speedtest_near.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Choopa (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Citybridge (New York City, NY) [33.43 km]: 84.514 ms 6 | Testing download speed................................................................................ 7 | Download: 632.73 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 94.72 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Choopa (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Citybridge (New York City, NY) [33.43 km]: 68.629 ms 15 | Testing download speed................................................................................ 16 | Download: 557.33 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 94.91 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Choopa (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Citybridge (New York City, NY) [33.43 km]: 70.493 ms 24 | Testing download speed................................................................................ 25 | Download: 564.16 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 92.48 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/speedtest_par.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Choopa (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Orange (Paris) [5867.78 km]: 13.074 ms 6 | Testing download speed................................................................................ 7 | Download: 318.66 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 295.25 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Choopa (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Orange (Paris) [5867.78 km]: 8.745 ms 15 | Testing download speed................................................................................ 16 | Download: 424.88 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 119.32 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Choopa (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Orange (Paris) [5867.78 km]: 15.333 ms 24 | Testing download speed................................................................................ 25 | Download: 737.63 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 93.78 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/speedtest_rom.log: -------------------------------------------------------------------------------- 1 | Retrieving speedtest.net configuration... 2 | Testing from Choopa (x.x.x.x)... 3 | Retrieving speedtest.net server list... 4 | Selecting best server based on ping... 5 | Hosted by Telecom Italia S.p.A. (Rome) [6921.21 km]: 77.571 ms 6 | Testing download speed................................................................................ 7 | Download: 570.11 Mbit/s 8 | Testing upload speed.................................................................................................... 9 | Upload: 120.52 Mbit/s 10 | Retrieving speedtest.net configuration... 11 | Testing from Choopa (x.x.x.x)... 12 | Retrieving speedtest.net server list... 13 | Selecting best server based on ping... 14 | Hosted by Telecom Italia S.p.A. (Rome) [6921.21 km]: 37.553 ms 15 | Testing download speed................................................................................ 16 | Download: 1169.68 Mbit/s 17 | Testing upload speed.................................................................................................... 18 | Upload: 121.48 Mbit/s 19 | Retrieving speedtest.net configuration... 20 | Testing from Choopa (x.x.x.x)... 21 | Retrieving speedtest.net server list... 22 | Selecting best server based on ping... 23 | Hosted by Telecom Italia S.p.A. (Rome) [6921.21 km]: 38.172 ms 24 | Testing download speed................................................................................ 25 | Download: 1153.26 Mbit/s 26 | Testing upload speed.................................................................................................... 27 | Upload: 122.17 Mbit/s 28 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/web_ghost_wrk_100.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 100 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 144.49ms 54.32ms 1.11s 88.29% 5 | Req/Sec 69.84 24.33 180.00 66.85% 6 | 123244 requests in 3.00m, 26.94MB read 7 | Socket errors: connect 0, read 0, write 0, timeout 92 8 | Requests/sec: 684.49 9 | Transfer/sec: 153.20KB 10 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/web_ghost_wrk_150.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 150 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 216.68ms 88.06ms 2.00s 86.38% 5 | Req/Sec 69.63 35.93 262.00 61.64% 6 | 121817 requests in 3.00m, 26.62MB read 7 | Socket errors: connect 0, read 0, write 0, timeout 156 8 | Requests/sec: 676.41 9 | Transfer/sec: 151.38KB 10 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/web_ghost_wrk_200.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/welcome-to-ghost 2 | 10 threads and 200 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 280.90ms 107.68ms 1.99s 86.12% 5 | Req/Sec 71.80 43.18 210.00 65.05% 6 | 122767 requests in 3.00m, 26.83MB read 7 | Socket errors: connect 0, read 3, write 0, timeout 230 8 | Requests/sec: 681.83 9 | Transfer/sec: 152.60KB 10 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/web_wp_ab_10.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56192 bytes 14 | 15 | Concurrency Level: 10 16 | Time taken for tests: 180.014 seconds 17 | Complete requests: 4180 18 | Failed requests: 0 19 | Total transferred: 236847108 bytes 20 | HTML transferred: 235159344 bytes 21 | Requests per second: 23.22 [#/sec] (mean) 22 | Time per request: 430.655 [ms] (mean) 23 | Time per request: 43.065 [ms] (mean, across all concurrent requests) 24 | Transfer rate: 1284.88 [Kbytes/sec] received 25 | 26 | Connection Times (ms) 27 | min mean[+/-sd] median max 28 | Connect: 35 86 202.3 48 3126 29 | Processing: 141 344 185.0 308 2864 30 | Waiting: 53 139 154.7 116 2508 31 | Total: 178 430 306.8 362 4667 32 | 33 | Percentage of the requests served within a certain time (ms) 34 | 50% 362 35 | 66% 404 36 | 75% 440 37 | 80% 468 38 | 90% 606 39 | 95% 725 40 | 98% 1367 41 | 99% 1615 42 | 100% 4667 (longest request) 43 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/web_wp_ab_25.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56192 bytes 14 | 15 | Concurrency Level: 25 16 | Time taken for tests: 180.059 seconds 17 | Complete requests: 5293 18 | Failed requests: 0 19 | Total transferred: 299766981 bytes 20 | HTML transferred: 297631484 bytes 21 | Requests per second: 29.40 [#/sec] (mean) 22 | Time per request: 850.458 [ms] (mean) 23 | Time per request: 34.018 [ms] (mean, across all concurrent requests) 24 | Transfer rate: 1625.81 [Kbytes/sec] received 25 | 26 | Connection Times (ms) 27 | min mean[+/-sd] median max 28 | Connect: 35 95 93.2 85 1179 29 | Processing: 186 753 240.5 740 2072 30 | Waiting: 55 372 154.3 391 1920 31 | Total: 259 849 239.5 832 2587 32 | 33 | Percentage of the requests served within a certain time (ms) 34 | 50% 832 35 | 66% 923 36 | 75% 983 37 | 80% 1016 38 | 90% 1101 39 | 95% 1195 40 | 98% 1431 41 | 99% 1693 42 | 100% 2587 (longest request) 43 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/web_wp_ab_50.log: -------------------------------------------------------------------------------- 1 | This is ApacheBench, Version 2.3 <$Revision: 1706008 $> 2 | Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ 3 | Licensed to The Apache Software Foundation, http://www.apache.org/ 4 | 5 | Benchmarking x.x.x.x (be patient) 6 | 7 | 8 | Server Software: Apache 9 | Server Hostname: x.x.x.x 10 | Server Port: 80 11 | 12 | Document Path: /wordpress/2017/05/09/hello-world/ 13 | Document Length: 56192 bytes 14 | 15 | Concurrency Level: 50 16 | Time taken for tests: 180.003 seconds 17 | Complete requests: 5267 18 | Failed requests: 0 19 | Total transferred: 298120326 bytes 20 | HTML transferred: 295997322 bytes 21 | Requests per second: 29.26 [#/sec] (mean) 22 | Time per request: 1708.784 [ms] (mean) 23 | Time per request: 34.176 [ms] (mean, across all concurrent requests) 24 | Transfer rate: 1617.38 [Kbytes/sec] received 25 | 26 | Connection Times (ms) 27 | min mean[+/-sd] median max 28 | Connect: 35 184 135.7 171 1395 29 | Processing: 281 1519 550.4 1505 3308 30 | Waiting: 130 723 331.1 749 2703 31 | Total: 422 1704 488.2 1671 4169 32 | 33 | Percentage of the requests served within a certain time (ms) 34 | 50% 1671 35 | 66% 1912 36 | 75% 2046 37 | 80% 2125 38 | 90% 2324 39 | 95% 2489 40 | 98% 2805 41 | 99% 3046 42 | 100% 4169 (longest request) 43 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/web_wp_wrk_100.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 100 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 1.56s 373.01ms 2.00s 77.06% 5 | Req/Sec 5.37 4.77 40.00 92.05% 6 | Latency Distribution 7 | 50% 1.70s 8 | 75% 1.82s 9 | 90% 1.90s 10 | 99% 1.99s 11 | 5644 requests in 3.00m, 306.69MB read 12 | Socket errors: connect 0, read 379, write 0, timeout 4297 13 | Requests/sec: 31.34 14 | Transfer/sec: 1.70MB 15 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/web_wp_wrk_150.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 150 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 117.74ms 132.53ms 1.97s 92.59% 5 | Req/Sec 60.74 30.61 171.00 63.41% 6 | Latency Distribution 7 | 50% 80.40ms 8 | 75% 119.30ms 9 | 90% 190.62ms 10 | 99% 716.81ms 11 | 94838 requests in 3.00m, 89.29MB read 12 | Socket errors: connect 0, read 0, write 0, timeout 824 13 | Non-2xx or 3xx responses: 94154 14 | Requests/sec: 526.62 15 | Transfer/sec: 507.71KB 16 | -------------------------------------------------------------------------------- /logs/vultr-25gbssd-ubuntu/web_wp_wrk_200.log: -------------------------------------------------------------------------------- 1 | Running 3m test @ http://x.x.x.x/wordpress/2017/05/09/hello-world/ 2 | 10 threads and 200 connections 3 | Thread Stats Avg Stdev Max +/- Stdev 4 | Latency 128.72ms 153.10ms 1.99s 90.88% 5 | Req/Sec 63.40 40.20 200.00 59.95% 6 | Latency Distribution 7 | 50% 86.68ms 8 | 75% 126.32ms 9 | 90% 251.59ms 10 | 99% 802.96ms 11 | 53795 requests in 3.00m, 67.66MB read 12 | Socket errors: connect 0, read 1, write 0, timeout 1216 13 | Non-2xx or 3xx responses: 53088 14 | Requests/sec: 298.71 15 | Transfer/sec: 384.70KB 16 | --------------------------------------------------------------------------------