├── .gitignore ├── LICENSE ├── README.md ├── docs └── usage.md ├── k6bench.gnuplot ├── k6bench.sh ├── results └── v0.42.0 │ ├── README.md │ ├── m5.24xlarge-RPS-optimized.js.csv │ ├── m5.24xlarge-RPS-optimized.js.png │ ├── m5.24xlarge-RPS-optimized.js.txt │ ├── m5.24xlarge-file-upload.js.csv │ ├── m5.24xlarge-file-upload.js.png │ ├── m5.24xlarge-file-upload.js.txt │ ├── m5.24xlarge-website.js-1s.csv │ ├── m5.24xlarge-website.js-1s.png │ ├── m5.24xlarge-website.js-1s.txt │ ├── m5.4xlarge-website.js-6s.csv │ ├── m5.4xlarge-website.js-6s.png │ ├── m5.4xlarge-website.js-6s.txt │ ├── m5.large-website.js-10s.csv │ ├── m5.large-website.js-10s.png │ └── m5.large-website.js-10s.txt ├── screenshots └── 3-terminals.png └── scripts ├── RPS-optimized.js ├── file-upload.js └── website.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2023 Raintank, Inc. dba Grafana Labs 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. 4 | 5 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # k6 benchmarks 2 | 3 | This repository contains [k6](https://k6.io/) scripts used to benchmark k6 performance under different test scenarios, on a variety of hardware configurations. We track statistics such as CPU and memory usage, HTTP requests per second (RPS), and number of VUs, which are graphed and presented in easily readable documents. 4 | 5 | The goal is to keep track of k6 performance for each major release, in order to detect any regressions early, and to easily share the performance a single instance of k6 can achieve with the community. 6 | 7 | 8 | ## Scripts 9 | 10 | You can see the k6 scripts used in the [/scripts](/scripts) directory. 11 | 12 | - `website.js`: a general purpose script that replicates common real-world scenarios: loading the front page and static assets, and logging in using some predefined credentials. It uses popular k6 features, such as custom metrics, checks, thresholds and `sleep()`. 13 | The purpose of this script is not to achieve the highest RPS, but to track general performance. 14 | 15 | - `RPS-optimized.js`: a simple script that tries to achieve the highest possible RPS. 16 | 17 | - `file-upload.js`: a script that uploads a large file, used to track memory usage and network throughput. 18 | 19 | 20 | ## Load generators 21 | 22 | We use a variety of load generator machines, to measure the performance under different hardware configurations. Currently these are AWS EC2 instances, which may change in the future. 23 | 24 | - `m5.large`: 2 vCPU cores, 8GB RAM 25 | 26 | - `m5.4xlarge`: 16 vCPU cores, 64GB RAM 27 | 28 | - `m5.24xlarge`: 96 vCPU cores, 384GB RAM 29 | 30 | 31 | ## System under test 32 | 33 | All scripts are run against a large-scale deployment of a simple test PHP site maintained by the k6 team. This site is available publicly at https://test.k6.io/, though for purposes of these tests, and to keep infrastructure costs down, we make secondary deployments that are only available during the benchmark run. 34 | 35 | ## Results 36 | 37 | Results of tested k6 versions are available in the [/results](/results) directory. You can find the raw data, graphs and result explanations in each subdirectory. 38 | 39 | ## Usage 40 | 41 | See the [Usage document](/docs/usage.md) for information about setting up the environment, and commands to run the benchmarks. 42 | 43 | ## Related 44 | 45 | - ["Running large tests" guide](https://k6.io/docs/testing-guides/running-large-tests/): learn about some ways to improve k6 performance, error troubleshooting, and more. 46 | 47 | - ["Fine tuning OS" guide](https://k6.io/docs/misc/fine-tuning-os): learn about different operating system configuration tweaks to make sure k6 runs optimally. 48 | 49 | 50 | ## License 51 | 52 | [ISC](/LICENSE) 53 | -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- 1 | # Usage 2 | 3 | This document explains how to benchmark k6 using the scripts found in this repository. 4 | 5 | 6 | ## Prerequisites 7 | 8 | Before running anything, we first need to create a suitable environment for running the benchmarks. 9 | 10 | 11 | ## System under test (SUT) 12 | 13 | The SUT needs to be very performant and scaled appropriately to handle the significant amount of traffic the benchmarks will generate. Going by [previous benchmark results](/results), this roughly means it needs to handle at least 60,000 VUs and 160,000 RPS, with the ability to saturate a 10 Gbps network link. Ideally it should have ample capacity beyond this, as we don't want the benchmark results to be limited by the SUT performance. 14 | 15 | Unfortunately, our public facing sites https://test.k6.io/, https://test-api.k6.io/, and https://httpbin.test.k6.io/ are not suitable for this with their default deployment. For the v0.42.0 test, we received help from the DevOps/Platform team who made a secondary larger deployment of test.k6.io specifically for running the benchmarks, but this was temporary and was shut down as soon as the tests ended, to avoid incurring infrastructure costs. For a scenario where we continuously run benchmarks for every k6 version, this deployment needs to be properly defined (e.g. in Terraform), and the k6-core team should have access to start, stop and scale it as needed. 16 | 17 | It's also important for the SUT performance to ideally be stable across benchmark runs. That is, if the SUT performance varies wildly between each k6 benchmark, then it entirely invalidates the purpose of keeping historical benchmark results, since we wouldn't be able to compare the results and detect if an improvement or degradation in performance is due to a change in k6, or a change in the SUT. Failing this, we would need to re-run all previous benchmarks each time, which would be laborious and time intensive, so it's best if the exact same SUT application and deployment is done each time. 18 | 19 | 20 | ## Load generators 21 | 22 | We run the benchmarks on a variety of system configurations to showcase how k6 performs under different conditions. We've used AWS EC2 machines with the following specifications: 23 | 24 | - `m5.large`: 2 vCPU cores, 8GB RAM 25 | 26 | - `m5.4xlarge`: 16 vCPU cores, 64GB RAM 27 | 28 | - `m5.24xlarge`: 96 vCPU cores, 384GB RAM 29 | 30 | The operating system shouldn't matter, but it should be consistent across all benchmarks, and in the past we used the latest stable version of Debian Linux. 31 | 32 | Note that we're deliberately not using distributed execution, but running k6 from a single node at a time. The goal of the benchmarks is not to load test the SUT, but to measure k6 performance on a single machine. 33 | 34 | 35 | ## OS performance tweaks 36 | 37 | Before running the benchmarks it's important that some operating system configuration changes are done on the load generator machines to ensure k6 can fully utilize all system resources. This includes increasing the network connection limit and local port range, disabling swap space, among others. 38 | 39 | Please consult the [OS fine-tuning section of the "Running large tests"](https://k6.io/docs/testing-guides/running-large-tests/#os-fine-tuning) article for details. 40 | 41 | 42 | ## Test scripts 43 | 44 | We currently have 3 k6 [scripts](/scripts) we will run: 45 | 46 | - `website.js`: a general purpose script that replicates common real-world scenarios: loading the front page and static assets, and logging in using some predefined credentials. It uses popular k6 features, such as custom metrics, checks, thresholds and `sleep()`. 47 | The purpose of this script is not to achieve the highest RPS, but to track general performance. 48 | 49 | - `RPS-optimized.js`: a simple script that tries to achieve the highest possible RPS. 50 | 51 | - `file-upload.js`: a script that uploads a large file, used to track memory usage and network throughput. 52 | 53 | 54 | ## Helper scripts 55 | 56 | We use a couple of scripts to help us with running the benchmarks and compiling the results: 57 | 58 | - [k6bench.sh](/k6bench.sh): this is a wrapper script around `k6 run` that starts k6 and the metric collection processes in the background. 59 | It redirects the k6 output to a file, and outputs metric results to stdout in CSV format every 5 seconds by default. 60 | 61 | - [k6bench.gnuplot](/k6bench.gnuplot): this is a [gnuplot](http://www.gnuplot.info/) script that generates a graph from the CSV results created by `k6bench.sh`. 62 | It doesn't create the prettiest graphs, but it was chosen because it's scriptable, so it can be easily automated. 63 | 64 | 65 | ## Dependencies 66 | 67 | The benchmarks depend on a few utilities to collect the performance results: 68 | 69 | - [`smem`](https://www.selenic.com/smem/) for RAM usage, specifically proportional set size (PSS). 70 | 71 | As it turns out, it's rather tricky to determine the precise physical RAM usage of a single process in Linux. Tools like `ps` and `htop` report the resident set size (RSS), which includes the size of any shared libraries the process may be using, and is not an accurate value of how much physical memory the process is using. The PSS value is more precise, but is more difficult to measure. `smem` is seemingly the only tool that simplifies tracking this, but it's unfortunately written in Python, so its own performance is not great, and it can use a lot of CPU and take some time to generate the result. 72 | 73 | - [`jq`](https://stedolan.github.io/jq/) is used to extract the VUs and RPS values from the JSON output returned by the k6 REST API. 74 | 75 | - [`curl`](https://curl.se/) to make requests to the k6 REST API. 76 | 77 | - GNU `coreutils` like `ps`, `top`, `cat`, `awk`, and Bash itself, of course. 78 | 79 | 80 | ## Benchmarking strategy 81 | 82 | We will run one test at a time, to avoid overloading the SUT and skewing the results. 83 | 84 | We won't run all scripts on all machines, but will use the following strategy: 85 | 86 | - From the machine with the lowest specs, i.e. `m5.large`, we will only run the `website.js` script, with a high sleep time between iterations in order to not overwhelm the load generator. The goal of this test is to track overall CPU and memory usage, not reach maximum throughput. 87 | 88 | - From the middle-spec'd machine, i.e. `m5.4xlarge`, we will run the `website.js` script with more VUs and a lower sleep time between iterations. This way we can observe the change in resource consumption and throughput by using the same script with an increased load. 89 | 90 | - From the machine with the highest specs, i.e. `m5.24xlarge`, we will run the `website.js` script with even more VUs and a very low sleep time between iterations. We will also run the RPS optimized and file upload test scripts, so we can observe the performance of k6 when it's allowed to fully utilize the system resources. 91 | 92 | 93 | ## Running the benchmarks 94 | 95 | Assuming we have the testing environment ready, we can now proceed to run the benchmarks themselves. 96 | 97 | 1. Establish an SSH connection to the load generator machine you wish to use first. 98 | 99 | 2. Install k6 and all dependencies for running the benchmarks. Ideally these would be pre-installed in the load generator system image by Ansible, but if not, let's install them manually: 100 | ```shell 101 | sudo apt update 102 | sudo apt install -y curl git iftop htop jq nmon smem zip 103 | K6_VERSION=v0.45.0 104 | curl -fsSL -o - "https://github.com/grafana/k6/releases/download/$K6_VERSION/k6-$K6_VERSION-linux-amd64.tar.gz" \ 105 | | sudo tar -C /usr/local/bin/ --strip-components 1 -xzf - k6-$K6_VERSION-linux-amd64/k6 106 | ``` 107 | 108 | Some of these like `iftop` and `nmon` are not strictly required, but are useful to monitor the system resources while the test is running. 109 | 110 | 3. Clone this repository, enter it and create the results directory: 111 | ```shell 112 | git clone https://github.com/grafana/k6-benchmarks.git 113 | cd k6-benchmarks 114 | mkdir results/$K6_VERSION 115 | ``` 116 | 117 | 4. Run the benchmark(s), depending on the machine you're connected to. 118 | 119 | a. If you're on the lowest spec'd machine, run the `website.js` script with the following command: 120 | ```shell 121 | ./k6bench.sh --vus=6000 --duration=10m -e SLEEP=5 scripts/website.js \ 122 | | tee results/$K6_VERSION/m5.large-website.js-10s.csv 123 | ``` 124 | 125 | b. If you're on the middle spec'd machine, run the `website.js` script with the following command: 126 | ```shell 127 | ./k6bench.sh --vus=20000 --duration=10m -e SLEEP=3 scripts/website.js \ 128 | | tee results/$K6_VERSION/m5.4xlarge-website.js-6s.csv 129 | ``` 130 | 131 | c. If you're on the highest spec'd machine, run the `website.js` script with the following command: 132 | ```shell 133 | ./k6bench.sh --vus=30000 --duration=5m -e SLEEP=0.5 scripts/website.js \ 134 | | tee results/$K6_VERSION/m5.24xlarge-website.js-1s.csv 135 | ``` 136 | 137 | Run the `RPS-optimized.js` script with the following command: 138 | ```shell 139 | ./k6bench.sh --vus=60000 --duration=1m scripts/RPS-optimized.js \ 140 | | tee results/$K6_VERSION/m5.24xlarge-RPS-optimized.js.csv 141 | ``` 142 | 143 | Generate the 26MB.zip file used by the `file-upload.js` script: 144 | ```shell 145 | (cd scripts/ && dd if=/dev/urandom of=26MB bs=1M count=25 && zip 26MB 26MB && rm -f 26MB) 146 | ``` 147 | 148 | Run the `file-upload.js` script with the following command: 149 | ```shell 150 | ./k6bench.sh --vus=1000 --duration=1m scripts/file-upload.js \ 151 | | tee results/$K6_VERSION/m5.24xlarge-file-upload.js.csv 152 | ``` 153 | 154 | 5. Generate the graphs from the results. 155 | 156 | First change to the results directory with: 157 | ```shell 158 | cd results/$K6_VERSION 159 | ``` 160 | 161 | Then: 162 | 163 | a. If you're on the lowest spec'd machine, run: 164 | ```shell 165 | gnuplot -e "k6version='$K6_VERSION'"; ec2instance='m5.large'; script='website.js-10s'" ../../k6bench.gnuplot 166 | ``` 167 | This will generate a `m5.large-website.js-10s.png` file. 168 | 169 | b. If you're on the middle spec'd machine, run: 170 | ```shell 171 | gnuplot -e "k6version='$K6_VERSION'"; ec2instance='m5.4xlarge'; script='website.js-6s'" ../../k6bench.gnuplot 172 | ``` 173 | This will generate a `m5.4xlarge-website.js-6s.png` file. 174 | 175 | c. If you're on the highest spec'd machine, run: 176 | ```shell 177 | gnuplot -e "k6version='$K6_VERSION'"; ec2instance='m5.24xlarge'; script='website.js-1s'" ../../k6bench.gnuplot 178 | ``` 179 | This will generate a `m5.24xlarge-website.js-1s.png` file. 180 | 181 | ```shell 182 | gnuplot -e "k6version='$K6_VERSION'; ec2instance='m5.24xlarge'; script='RPS-optimized.js'" ../../k6bench.gnuplot 183 | ``` 184 | This will generate a `m5.24xlarge-RPS-optimized.js.png` file. 185 | 186 | ```shell 187 | gnuplot -e "k6version='$K6_VERSION'; ec2instance='m5.24xlarge'; script='file-upload.js'" ../../k6bench.gnuplot 188 | ``` 189 | This will generate a `m5.24xlarge-file-upload.js.png` file. 190 | 191 | 192 | 6. At this point the `results/$K6_VERSION/` directory should look something like this: 193 | ```shell 194 | -rw-r--r-- 1 ivan ivan 719 Feb 10 12:42 m5.24xlarge-file-upload.js.csv 195 | -rw-r--r-- 1 ivan ivan 65K Feb 10 12:42 m5.24xlarge-file-upload.js.png 196 | -rw-r--r-- 1 ivan ivan 117K Feb 10 12:42 m5.24xlarge-file-upload.js.txt 197 | -rw-r--r-- 1 ivan ivan 614 Feb 10 12:42 m5.24xlarge-RPS-optimized.js.csv 198 | -rw-r--r-- 1 ivan ivan 82K Feb 10 12:42 m5.24xlarge-RPS-optimized.js.png 199 | -rw-r--r-- 1 ivan ivan 11K Feb 10 12:42 m5.24xlarge-RPS-optimized.js.txt 200 | -rw-r--r-- 1 ivan ivan 2.6K Feb 10 12:42 m5.24xlarge-website.js-1s.csv 201 | -rw-r--r-- 1 ivan ivan 90K Feb 10 12:42 m5.24xlarge-website.js-1s.png 202 | -rw-r--r-- 1 ivan ivan 45K Feb 10 12:42 m5.24xlarge-website.js-1s.txt 203 | -rw-r--r-- 1 ivan ivan 5.2K Feb 10 12:42 m5.4xlarge-website.js-6s.csv 204 | -rw-r--r-- 1 ivan ivan 106K Feb 10 12:42 m5.4xlarge-website.js-6s.png 205 | -rw-r--r-- 1 ivan ivan 80K Feb 10 12:42 m5.4xlarge-website.js-6s.txt 206 | -rw-r--r-- 1 ivan ivan 4.8K Feb 10 12:42 m5.large-website.js-10s.csv 207 | -rw-r--r-- 1 ivan ivan 112K Aug 4 15:31 m5.large-website.js-10s.png 208 | -rw-r--r-- 1 ivan ivan 78K Feb 10 12:42 m5.large-website.js-10s.txt 209 | ``` 210 | 211 | We have the k6 output in the TXT files, the raw benchmark data in the CSV files, and the graphs from the benchmark data in the PNG files. 212 | 213 | What's left now is to assemble a report in a Markdown file, that contains the graphs and some summary explanation of the results. 214 | 215 | Unfortunately, this is not scripted yet, but it could be done in the future via some base template. In the meantime, you can take the [v0.42.0 results report](/results/v0.42.0/README.md), and update the content manually. 216 | 217 | The following commands could be helpful for calculating aggregate values: 218 | 219 | - To calculate the average values (column 2 is for CPU, column 3 for RAM): 220 | ```shell 221 | awk -F',' 'NR>1 { sum += $3 } END { printf "%.2f", sum / (NR-1) }' m5.large-website.js-10s.csv 222 | ``` 223 | 224 | - To calculate the max values (column 4 is for VUs, column 5 for RPS): 225 | ```shell 226 | awk -F',' 'BEGIN { max = 0 } NR>1 { max = ($5>max ? $5 : max) } END { printf "%.2f", max }' m5.large-website.js-10s.csv 227 | ``` 228 | 229 | The network throughput and data transferred were taken from the k6 end-of-test summary found in the k6 output TXT files. 230 | 231 | 232 | # Automation 233 | 234 | The above process should be automated, so that we can automatically run benchmarks after every k6 release, and on-demand as needed. This is detailed in [issue #27](https://github.com/grafana/k6-benchmarks/issues/27). 235 | 236 | The biggest challenge will be setting up the SUT and load generator machines, as we need to ensure that these are started and scaled up only when necessary, to avoid incurring infrastructure costs. 237 | -------------------------------------------------------------------------------- /k6bench.gnuplot: -------------------------------------------------------------------------------- 1 | set datafile separator ',' 2 | set terminal pngcairo background rgb 'white' linewidth 4 size 1200,600 enhanced font 'Arial,16' 3 | set bmargin at screen 130.0/600 4 | set rmargin at screen 1080.0/1200 5 | set output sprintf('%s-%s.png', ec2instance, script) 6 | 7 | set title sprintf('k6 %s / EC2 %s / %s', k6version, ec2instance, script) font 'Arial Bold,20' 8 | set key at graph 0.6, 0.3 autotitle columnhead 9 | 10 | set border 31 lw 0.5 11 | set style data lines 12 | set style line 100 lt 1 lc rgb "grey" lw 0.5 # linestyle for the grid 13 | set grid ls 100 14 | 15 | set xtics 30 16 | set xlabel 'Time (M:S)' 17 | set xdata time 18 | set format x '%M:%S' 19 | set xtics rotate 20 | set y2tics # enable second axis 21 | set ytics nomirror # dont show the tics on that side 22 | set y2range [0:] # start from 0 23 | set y2label "CPU (%)" 24 | 25 | plot sprintf('%s-%s.csv', ec2instance, script) using ($1):2 axis x1y2 lc rgb '#00d8bfd8', \ 26 | '' using ($1):($3 / 1000) title 'RAM (MB)', \ 27 | '' using ($1):4, \ 28 | '' using ($1):5 29 | -------------------------------------------------------------------------------- /k6bench.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # External dependencies: 3 | # - https://www.selenic.com/smem/ 4 | # - https://stedolan.github.io/jq/ 5 | set -eEuo pipefail 6 | 7 | trap 'cleanup; exit 0' EXIT 8 | trap 'trap - INT; cleanup; kill -INT $$' INT 9 | trap 'trap - TERM; cleanup; kill -TERM $$' TERM 10 | 11 | # Create temp files to store the output of each collection command. 12 | cpuf=$(mktemp) 13 | memf=$(mktemp) 14 | vusf=$(mktemp) 15 | rpsf=$(mktemp) 16 | 17 | cleanup() { 18 | rm -f "$cpuf" "$memf" "$vusf" "$rpsf" 19 | } 20 | 21 | # 5s is the default interval between samples. 22 | # Note that this might be greater if either smem or the k6 API takes more time 23 | # than this to return a response. 24 | sint="${K6_BENCH_SAMPLE_INTERVAL:-5}" 25 | 26 | k6 run "$@" >k6out.txt 2>&1 & 27 | k6pid="$!" 28 | 29 | # Run the collection processes in parallel to avoid blocking. 30 | # For details see https://stackoverflow.com/a/68316571 31 | 32 | echo '"Time (s)","CPU (%)","RAM (kB)","VUs","RPS"' 33 | while true; do 34 | etimes=$(ps -p "$k6pid" --no-headers -o etimes | awk '{ print $1 }') 35 | pids=() 36 | { exec >"$cpuf"; top -b -n 2 -d "$sint" -p "$k6pid" | { 37 | grep "$k6pid" || echo; } | tail -1 | awk '{print (NF>0 ? $9 : "0")}'; } & 38 | pids+=($!) 39 | { exec >"$memf"; smem -H -U "$USER" -c 'pid pss' -P 'k6 run' | { 40 | grep "$k6pid" || echo 0; } | awk '{ print $NF }'; } & 41 | pids+=($!) 42 | { exec >"$vusf"; { curl -fsSL http://localhost:6565/v1/metrics/vus 2>/dev/null || echo '{}' 43 | } | jq '.data.attributes.sample.value // 0'; } & 44 | pids+=($!) 45 | { exec >"$rpsf"; { curl -fsSL http://localhost:6565/v1/metrics/http_reqs 2>/dev/null || echo '{}' 46 | } | jq '.data.attributes.sample.rate // 0'; } & 47 | pids+=($!) 48 | wait "${pids[@]}" 49 | echo "${etimes},$(cat "$cpuf"),$(cat "$memf"),$(cat "$vusf"),$(cat "$rpsf")" 50 | done 51 | -------------------------------------------------------------------------------- /results/v0.42.0/README.md: -------------------------------------------------------------------------------- 1 | # k6 v0.42.0 benchmark results 2 | 3 | ## EC2 m5.large 4 | 5 | ### website.js - 10s `sleep` per iteration 6 | 7 | ![k6 v0.42.0 / EC2 m5.large / website.js-10s](m5.large-website.js-10s.png "k6 v0.42.0 / EC2 m5.large / website.js-10s") 8 | 9 | - VUs reached (max): 6,000 10 | - Memory used (avg): 4.72 GB 11 | - CPU load (avg): 1.20 (out of 2.0) 12 | - RPS (max): 3,229.67 13 | 14 | 15 | ## EC2 m5.4xlarge 16 | 17 | ### website.js - 6s `sleep` per iteration 18 | 19 | ![k6 v0.42.0 / EC2 m5.4xlarge / website.js-6s](m5.4xlarge-website.js-6s.png "k6 v0.42.0 / EC2 m5.4xlarge / website.js-6s") 20 | 21 | - VUs reached (max): 20,000 22 | - Memory used (avg): 16.16 GB 23 | - CPU load (avg): 7.10 (out of 16.0) 24 | - RPS (max): 19,159.98 25 | 26 | 27 | ## EC2 m5.24xlarge 28 | 29 | ### website.js - 1s `sleep` per iteration 30 | 31 | ![k6 v0.42.0 / EC2 m5.24xlarge / website.js-1s](m5.24xlarge-website.js-1s.png "k6 v0.42.0 / EC2 m5.24xlarge / website.js-1s") 32 | 33 | - VUs reached (max): 30,000 34 | - Memory used (avg): 22.58 GB 35 | - CPU load (avg): 44.43 (out of 96.0) 36 | - RPS (max): 59,706.51 37 | 38 | 39 | ### RPS-optimized.js 40 | 41 | ![k6 v0.42.0 / EC2 m5.24xlarge / RPS-optimized.js](m5.24xlarge-RPS-optimized.js.png "k6 v0.42.0 / EC2 m5.24xlarge / RPS-optimized.js") 42 | 43 | - VUs reached (max): 60,000 44 | - Memory used (avg): 21.65 GB 45 | - CPU load (avg): 72.03 (out of 96.0) 46 | - RPS (max): 161,651.73 47 | 48 | 49 | ### file-upload.js 50 | 51 | ![k6 v0.42.0 / EC2 m5.24xlarge / file-upload.js](m5.24xlarge-file-upload.js.png "k6 v0.42.0 / EC2 m5.24xlarge / file-upload.js") 52 | 53 | - VUs reached (max): 1,000 54 | - Memory used (avg): 11.29 GB 55 | - CPU load (avg): 2.94 (out of 96.0) 56 | - Network throughput (max): 1.2 GB/s 57 | - Data transferred (total): 99 GB 58 | 59 | Note that this test was bottlenecked by the available network bandwidth, as k6 was able to saturate the full 10Gbps link. 60 | -------------------------------------------------------------------------------- /results/v0.42.0/m5.24xlarge-RPS-optimized.js.csv: -------------------------------------------------------------------------------- 1 | "Time (s)","CPU (%)","RAM (kB)","VUs","RPS" 2 | 0,7631,44248,0,0 3 | 5,8172,5905292,0,0 4 | 10,5220,10812292,0,0 5 | 16,8076,15680408,60000,40692.21610053938 6 | 21,7377,18254892,60000,67629.52173621104 7 | 26,8131,24593448,60000,88062.19774779196 8 | 31,8859,27261400,60000,105086.48734380415 9 | 36,9073,27316256,60000,120997.28708214863 10 | 42,9157,27511592,60000,136012.5577050628 11 | 47,9202,27671168,60000,147152.36428834306 12 | 52,8679,27680420,60000,147727.8160222343 13 | 57,8903,28015704,60000,149281.69029154297 14 | 62,9046,28115032,60000,153414.00798695415 15 | 68,7509,28272248,60000,157426.4680211055 16 | 73,106.4,27702608,56821,161651.7342593997 17 | 85,100.0,0,0,0 18 | -------------------------------------------------------------------------------- /results/v0.42.0/m5.24xlarge-RPS-optimized.js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k6-benchmarks/be555f196c0161ef517972a0646dd365ba8a4578/results/v0.42.0/m5.24xlarge-RPS-optimized.js.png -------------------------------------------------------------------------------- /results/v0.42.0/m5.24xlarge-RPS-optimized.js.txt: -------------------------------------------------------------------------------- 1 | 2 | /\ |‾‾| /‾‾/ /‾‾/ 3 | /\ / \ | |/ / / / 4 | / \/ \ | ( / ‾‾\ 5 | / \ | |\ \ | (‾) | 6 | / __________ \ |__| \__\ \_____/ .io 7 | 8 | execution: local 9 | script: scripts/RPS-optimized.js 10 | output: - 11 | 12 | scenarios: (100.00%) 1 scenario, 60000 max VUs, 1m30s max duration (incl. graceful stop): 13 | * default: 60000 looping VUs for 1m0s (gracefulStop: 30s) 14 | 15 | 16 | Init [ 11% ] 06612/60000 VUs initialized 17 | default [ 0% ] 18 | 19 | Init [ 21% ] 12833/60000 VUs initialized 20 | default [ 0% ] 21 | 22 | Init [ 32% ] 19486/60000 VUs initialized 23 | default [ 0% ] 24 | 25 | Init [ 41% ] 24333/60000 VUs initialized 26 | default [ 0% ] 27 | 28 | Init [ 52% ] 31077/60000 VUs initialized 29 | default [ 0% ] 30 | 31 | Init [ 62% ] 37380/60000 VUs initialized 32 | default [ 0% ] 33 | 34 | Init [ 70% ] 42108/60000 VUs initialized 35 | default [ 0% ] 36 | 37 | Init [ 78% ] 46548/60000 VUs initialized 38 | default [ 0% ] 39 | 40 | Init [ 84% ] 50238/60000 VUs initialized 41 | default [ 0% ] 42 | 43 | Init [ 91% ] 54776/60000 VUs initialized 44 | default [ 0% ] 45 | 46 | running (0m00.2s), 07797/60000 VUs, 0 complete and 0 interrupted iterations 47 | default [ 0% ] 60000 VUs 0m00.2s/1m0s 48 | 49 | running (0m01.2s), 39242/60000 VUs, 8335 complete and 0 interrupted iterations 50 | default [ 2% ] 60000 VUs 0m01.2s/1m0s 51 | 52 | running (0m02.2s), 60000/60000 VUs, 11670 complete and 0 interrupted iterations 53 | default [ 4% ] 60000 VUs 0m02.2s/1m0s 54 | 55 | running (0m03.2s), 60000/60000 VUs, 24174 complete and 0 interrupted iterations 56 | default [ 5% ] 60000 VUs 0m03.2s/1m0s 57 | 58 | running (0m04.2s), 60000/60000 VUs, 86963 complete and 0 interrupted iterations 59 | default [ 7% ] 60000 VUs 0m04.2s/1m0s 60 | 61 | running (0m05.2s), 60000/60000 VUs, 207226 complete and 0 interrupted iterations 62 | default [ 9% ] 60000 VUs 0m05.2s/1m0s 63 | 64 | running (0m06.2s), 60000/60000 VUs, 268906 complete and 0 interrupted iterations 65 | default [ 10% ] 60000 VUs 0m06.2s/1m0s 66 | 67 | running (0m07.2s), 60000/60000 VUs, 300822 complete and 0 interrupted iterations 68 | default [ 12% ] 60000 VUs 0m07.2s/1m0s 69 | 70 | running (0m08.2s), 60000/60000 VUs, 412233 complete and 0 interrupted iterations 71 | default [ 14% ] 60000 VUs 0m08.2s/1m0s 72 | 73 | running (0m09.2s), 60000/60000 VUs, 570181 complete and 0 interrupted iterations 74 | default [ 15% ] 60000 VUs 0m09.2s/1m0s 75 | 76 | running (0m10.2s), 60000/60000 VUs, 703134 complete and 0 interrupted iterations 77 | default [ 17% ] 60000 VUs 0m10.2s/1m0s 78 | 79 | running (0m11.2s), 60000/60000 VUs, 835938 complete and 0 interrupted iterations 80 | default [ 19% ] 60000 VUs 0m11.2s/1m0s 81 | 82 | running (0m12.2s), 60000/60000 VUs, 949936 complete and 0 interrupted iterations 83 | default [ 20% ] 60000 VUs 0m12.2s/1m0s 84 | 85 | running (0m13.2s), 60000/60000 VUs, 1083326 complete and 0 interrupted iterations 86 | default [ 22% ] 60000 VUs 0m13.2s/1m0s 87 | 88 | running (0m14.2s), 60000/60000 VUs, 1202164 complete and 0 interrupted iterations 89 | default [ 24% ] 60000 VUs 0m14.2s/1m0s 90 | 91 | running (0m15.2s), 60000/60000 VUs, 1301199 complete and 0 interrupted iterations 92 | default [ 25% ] 60000 VUs 0m15.2s/1m0s 93 | 94 | running (0m16.2s), 60000/60000 VUs, 1434425 complete and 0 interrupted iterations 95 | default [ 27% ] 60000 VUs 0m16.2s/1m0s 96 | 97 | running (0m17.2s), 60000/60000 VUs, 1483916 complete and 0 interrupted iterations 98 | default [ 29% ] 60000 VUs 0m17.2s/1m0s 99 | 100 | running (0m18.2s), 60000/60000 VUs, 1606159 complete and 0 interrupted iterations 101 | default [ 30% ] 60000 VUs 0m18.2s/1m0s 102 | 103 | running (0m19.2s), 60000/60000 VUs, 1863381 complete and 0 interrupted iterations 104 | default [ 32% ] 60000 VUs 0m19.2s/1m0s 105 | 106 | running (0m20.2s), 60000/60000 VUs, 2081608 complete and 0 interrupted iterations 107 | default [ 34% ] 60000 VUs 0m20.2s/1m0s 108 | 109 | running (0m21.2s), 60000/60000 VUs, 2262853 complete and 0 interrupted iterations 110 | default [ 35% ] 60000 VUs 0m21.2s/1m0s 111 | 112 | running (0m22.2s), 60000/60000 VUs, 2400313 complete and 0 interrupted iterations 113 | default [ 37% ] 60000 VUs 0m22.2s/1m0s 114 | 115 | running (0m23.2s), 60000/60000 VUs, 2505515 complete and 0 interrupted iterations 116 | default [ 39% ] 60000 VUs 0m23.2s/1m0s 117 | 118 | running (0m24.2s), 60000/60000 VUs, 2767881 complete and 0 interrupted iterations 119 | default [ 40% ] 60000 VUs 0m24.2s/1m0s 120 | 121 | running (0m25.2s), 60000/60000 VUs, 3029054 complete and 0 interrupted iterations 122 | default [ 42% ] 60000 VUs 0m25.2s/1m0s 123 | 124 | running (0m26.2s), 60000/60000 VUs, 3280797 complete and 0 interrupted iterations 125 | default [ 44% ] 60000 VUs 0m26.2s/1m0s 126 | 127 | running (0m27.2s), 60000/60000 VUs, 3402643 complete and 0 interrupted iterations 128 | default [ 45% ] 60000 VUs 0m27.2s/1m0s 129 | 130 | running (0m28.2s), 60000/60000 VUs, 3550004 complete and 0 interrupted iterations 131 | default [ 47% ] 60000 VUs 0m28.2s/1m0s 132 | 133 | running (0m29.2s), 60000/60000 VUs, 3809511 complete and 0 interrupted iterations 134 | default [ 49% ] 60000 VUs 0m29.2s/1m0s 135 | 136 | running (0m30.2s), 60000/60000 VUs, 4066766 complete and 0 interrupted iterations 137 | default [ 50% ] 60000 VUs 0m30.2s/1m0s 138 | 139 | running (0m31.2s), 60000/60000 VUs, 4320088 complete and 0 interrupted iterations 140 | default [ 52% ] 60000 VUs 0m31.2s/1m0s 141 | 142 | running (0m32.2s), 60000/60000 VUs, 4490495 complete and 0 interrupted iterations 143 | default [ 54% ] 60000 VUs 0m32.2s/1m0s 144 | 145 | running (0m33.2s), 60000/60000 VUs, 4597310 complete and 0 interrupted iterations 146 | default [ 55% ] 60000 VUs 0m33.2s/1m0s 147 | 148 | running (0m34.2s), 60000/60000 VUs, 4856616 complete and 0 interrupted iterations 149 | default [ 57% ] 60000 VUs 0m34.2s/1m0s 150 | 151 | running (0m35.2s), 60000/60000 VUs, 5117533 complete and 0 interrupted iterations 152 | default [ 59% ] 60000 VUs 0m35.2s/1m0s 153 | 154 | running (0m36.2s), 60000/60000 VUs, 5350666 complete and 0 interrupted iterations 155 | default [ 60% ] 60000 VUs 0m36.2s/1m0s 156 | 157 | running (0m37.2s), 60000/60000 VUs, 5487381 complete and 0 interrupted iterations 158 | default [ 62% ] 60000 VUs 0m37.2s/1m0s 159 | 160 | running (0m38.2s), 60000/60000 VUs, 5628732 complete and 0 interrupted iterations 161 | default [ 64% ] 60000 VUs 0m38.2s/1m0s 162 | 163 | running (0m39.2s), 60000/60000 VUs, 5780262 complete and 0 interrupted iterations 164 | default [ 65% ] 60000 VUs 0m39.2s/1m0s 165 | 166 | running (0m40.2s), 60000/60000 VUs, 5865474 complete and 0 interrupted iterations 167 | default [ 67% ] 60000 VUs 0m40.2s/1m0s 168 | 169 | running (0m41.2s), 60000/60000 VUs, 6057139 complete and 0 interrupted iterations 170 | default [ 69% ] 60000 VUs 0m41.2s/1m0s 171 | 172 | running (0m42.2s), 60000/60000 VUs, 6272124 complete and 0 interrupted iterations 173 | default [ 70% ] 60000 VUs 0m42.2s/1m0s 174 | 175 | running (0m43.2s), 60000/60000 VUs, 6460321 complete and 0 interrupted iterations 176 | default [ 72% ] 60000 VUs 0m43.2s/1m0s 177 | 178 | running (0m44.2s), 60000/60000 VUs, 6514438 complete and 0 interrupted iterations 179 | default [ 74% ] 60000 VUs 0m44.2s/1m0s 180 | 181 | running (0m45.2s), 60000/60000 VUs, 6676763 complete and 0 interrupted iterations 182 | default [ 75% ] 60000 VUs 0m45.2s/1m0s 183 | 184 | running (0m46.2s), 60000/60000 VUs, 6890037 complete and 0 interrupted iterations 185 | default [ 77% ] 60000 VUs 0m46.2s/1m0s 186 | 187 | running (0m47.2s), 60000/60000 VUs, 7104748 complete and 0 interrupted iterations 188 | default [ 79% ] 60000 VUs 0m47.2s/1m0s 189 | 190 | running (0m48.2s), 60000/60000 VUs, 7323107 complete and 0 interrupted iterations 191 | default [ 80% ] 60000 VUs 0m48.2s/1m0s 192 | 193 | running (0m49.2s), 60000/60000 VUs, 7554400 complete and 0 interrupted iterations 194 | default [ 82% ] 60000 VUs 0m49.2s/1m0s 195 | 196 | running (0m50.4s), 60000/60000 VUs, 7663477 complete and 0 interrupted iterations 197 | default [ 84% ] 60000 VUs 0m50.4s/1m0s 198 | 199 | running (0m51.2s), 60000/60000 VUs, 7832107 complete and 0 interrupted iterations 200 | default [ 85% ] 60000 VUs 0m51.2s/1m0s 201 | 202 | running (0m52.2s), 60000/60000 VUs, 8070437 complete and 0 interrupted iterations 203 | default [ 87% ] 60000 VUs 0m52.2s/1m0s 204 | 205 | running (0m53.2s), 60000/60000 VUs, 8329568 complete and 0 interrupted iterations 206 | default [ 89% ] 60000 VUs 0m53.2s/1m0s 207 | 208 | running (0m54.2s), 60000/60000 VUs, 8524440 complete and 0 interrupted iterations 209 | default [ 90% ] 60000 VUs 0m54.2s/1m0s 210 | 211 | running (0m55.2s), 60000/60000 VUs, 8592565 complete and 0 interrupted iterations 212 | default [ 92% ] 60000 VUs 0m55.2s/1m0s 213 | 214 | running (0m56.2s), 60000/60000 VUs, 8802221 complete and 0 interrupted iterations 215 | default [ 94% ] 60000 VUs 0m56.2s/1m0s 216 | 217 | running (0m57.2s), 60000/60000 VUs, 9059214 complete and 0 interrupted iterations 218 | default [ 95% ] 60000 VUs 0m57.2s/1m0s 219 | 220 | running (0m58.2s), 60000/60000 VUs, 9322070 complete and 0 interrupted iterations 221 | default [ 97% ] 60000 VUs 0m58.2s/1m0s 222 | 223 | running (0m59.2s), 60000/60000 VUs, 9569632 complete and 0 interrupted iterations 224 | default [ 99% ] 60000 VUs 0m59.2s/1m0s 225 | 226 | running (1m00.2s), 56820/60000 VUs, 9714676 complete and 0 interrupted iterations 227 | default ↓ [ 100% ] 60000 VUs 1m0s 228 | 229 | running (1m00.4s), 00000/60000 VUs, 9771496 complete and 0 interrupted iterations 230 | default ✓ [ 100% ] 60000 VUs 1m0s 231 | 232 | data_received..................: 11 GB 183 MB/s 233 | data_sent......................: 967 MB 16 MB/s 234 | http_req_blocked...............: avg=5.02ms min=639ns med=2.98µs max=2.11s p(90)=4.92µs p(95)=7.08µs 235 | http_req_connecting............: avg=4.95ms min=0s med=0s max=2.09s p(90)=0s p(95)=0s 236 | http_req_duration..............: avg=42.85ms min=21.09ms med=28.64ms max=2.13s p(90)=59.1ms p(95)=82.32ms 237 | { expected_response:true }...: avg=42.85ms min=21.09ms med=28.64ms max=2.13s p(90)=59.1ms p(95)=82.32ms 238 | http_req_failed................: 0.00% ✓ 0 ✗ 9771496 239 | http_req_receiving.............: avg=426.3µs min=9.7µs med=22.59µs max=866.32ms p(90)=128.56µs p(95)=365.83µs 240 | http_req_sending...............: avg=355.37µs min=3.88µs med=11.07µs max=1.32s p(90)=25.59µs p(95)=90.74µs 241 | http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s 242 | http_req_waiting...............: avg=42.07ms min=21.05ms med=28.5ms max=2.03s p(90)=58.38ms p(95)=80.8ms 243 | http_reqs......................: 9771496 161651.734259/s 244 | iteration_duration.............: avg=198.87ms min=103.57ms med=142.44ms max=3.1s p(90)=284.67ms p(95)=439.14ms 245 | iterations.....................: 9771496 161651.734259/s 246 | vus............................: 56821 min=0 max=60000 247 | vus_max........................: 60000 min=6612 max=60000 248 | 249 | -------------------------------------------------------------------------------- /results/v0.42.0/m5.24xlarge-file-upload.js.csv: -------------------------------------------------------------------------------- 1 | "Time (s)","CPU (%)","RAM (kB)","VUs","RPS" 2 | 0,193.0,49160,0,0 3 | 5,172.7,11384136,0,0 4 | 10,799.6,23259812,0,0 5 | 15,289.4,79703068,1000,5.537936762040385 6 | 20,256.6,84218760,1000,17.88266247008402 7 | 26,379.2,98482252,1000,35.37076912108393 8 | 31,408.6,122259448,1000,47.988953777921225 9 | 36,299.8,134633512,1000,57.77425697675369 10 | 41,310.6,134633744,1000,65.16925731328105 11 | 46,381.0,143217860,1000,69.86996456178629 12 | 52,319.8,146672880,1000,74.17587418095358 13 | 57,348.1,146672968,1000,75.15803611247527 14 | 62,360.9,145860940,1000,78.9848756128066 15 | 67,368.8,145861116,1000,82.3828459656014 16 | 72,79.2,151033572,963,84.24359995383968 17 | 77,22.8,151033648,479,85.3117036841298 18 | 83,6.8,151033656,141,82.84515080450133 19 | 88,0.0,151033732,29,78.37473507982489 20 | -------------------------------------------------------------------------------- /results/v0.42.0/m5.24xlarge-file-upload.js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k6-benchmarks/be555f196c0161ef517972a0646dd365ba8a4578/results/v0.42.0/m5.24xlarge-file-upload.js.png -------------------------------------------------------------------------------- /results/v0.42.0/m5.24xlarge-website.js-1s.csv: -------------------------------------------------------------------------------- 1 | "Time (s)","CPU (%)","RAM (kB)","VUs","RPS" 2 | 0,7186,45872,0,0 3 | 6,5877,5278540,0,0 4 | 7,4687,6890428,0,986.4091987345587 5 | 12,6922,12325700,30000,4344.488364785674 6 | 17,5810,16688888,30000,8015.008478244865 7 | 22,5996,20074020,30000,14873.817866313046 8 | 28,5135,23399960,30000,22729.004852543225 9 | 33,4310,23439252,30000,29513.46329481826 10 | 38,3904,23458088,30000,35386.510540047515 11 | 43,3803,23474076,30000,39648.4145609639 12 | 48,5055,23582700,30000,43021.35783346339 13 | 54,4149,23612892,30000,43811.47903332536 14 | 59,4152,23739588,30000,46375.84319290837 15 | 64,4811,23052668,30000,47687.16828839002 16 | 69,3853,23054256,30000,48233.89645194483 17 | 74,5229,23209252,30000,50388.76296052836 18 | 80,4032,23210076,30000,50342.373650162925 19 | 85,4805,23374872,30000,51694.479421861426 20 | 90,5211,23375656,30000,51480.846358495866 21 | 95,4306,23376528,30000,53217.43037698419 22 | 100,5726,23633080,30000,53843.67607397443 23 | 106,4956,23633576,30000,53496.871096987095 24 | 111,5101,23634340,30000,54440.890314918965 25 | 116,6126,23416676,30000,54947.320303708715 26 | 121,4715,23425304,30000,54544.45293682606 27 | 126,5244,23777380,30000,54227.44388394412 28 | 132,5306,23790972,30000,55518.072960290825 29 | 137,4240,23795648,30000,54863.64103386108 30 | 142,5251,23800124,30000,56240.200579323304 31 | 147,4489,24204628,30000,56176.025769657506 32 | 152,3938,24212800,30000,55826.580909125405 33 | 158,4537,24217420,30000,56838.10990936923 34 | 163,4584,24221420,30000,56849.987101769206 35 | 168,3892,23790436,30000,56526.39374150099 36 | 173,4906,23793320,30000,56240.00366072286 37 | 178,4681,24025008,30000,57290.31152742408 38 | 184,4422,24428196,30000,57428.24112212318 39 | 189,4232,24479572,30000,57633.686577609034 40 | 194,5296,24481240,30000,57398.87897042488 41 | 199,4680,24488312,30000,57206.78984659231 42 | 204,4227,24495480,30000,57695.805931809366 43 | 210,5440,24497580,30000,58065.23696707458 44 | 215,4619,24498704,30000,59706.510356587765 45 | 220,4363,25054520,30000,58720.12954363163 46 | 225,5513,25054968,30000,58887.77939955161 47 | 230,4388,25056448,30000,57715.70050826425 48 | 236,4132,25057828,30000,58175.11783382376 49 | 241,4370,25061200,30000,58421.01270100316 50 | 246,4943,24563308,30000,58673.51819986915 51 | 251,4238,24564448,30000,58911.607285547005 52 | 256,3960,24564964,30000,59297.95420953856 53 | 262,4709,24568480,30000,59333.07549884235 54 | 267,4808,24572136,30000,58335.72297232823 55 | 272,4113,25409900,30000,58864.75170548849 56 | 277,4039,25412316,30000,59325.377597212515 57 | 282,4933,25537916,30000,59608.14629643267 58 | 288,4129,25538740,30000,59646.642316175734 59 | 294,4130,25580044,30000,58713.69192598313 60 | 299,4147,25580784,30000,59254.46358295235 61 | 304,3164,25582260,30000,59594.75071064463 62 | 309,103.0,25586384,8766,59662.92643066348 63 | 314,100.0,25592680,1,58848.02117290369 64 | 320,100.4,25592808,1,58848.02117290369 65 | 343,100.0,0,0,0 66 | -------------------------------------------------------------------------------- /results/v0.42.0/m5.24xlarge-website.js-1s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k6-benchmarks/be555f196c0161ef517972a0646dd365ba8a4578/results/v0.42.0/m5.24xlarge-website.js-1s.png -------------------------------------------------------------------------------- /results/v0.42.0/m5.24xlarge-website.js-1s.txt: -------------------------------------------------------------------------------- 1 | 2 | /\ |‾‾| /‾‾/ /‾‾/ 3 | /\ / \ | |/ / / / 4 | / \/ \ | ( / ‾‾\ 5 | / \ | |\ \ | (‾) | 6 | / __________ \ |__| \__\ \_____/ .io 7 | 8 | execution: local 9 | script: scripts/website.js 10 | output: - 11 | 12 | scenarios: (100.00%) 1 scenario, 30000 max VUs, 5m30s max duration (incl. graceful stop): 13 | * default: 30000 looping VUs for 5m0s (gracefulStop: 30s) 14 | 15 | 16 | Init [ 20% ] 05903/30000 VUs initialized 17 | default [ 0% ] 18 | 19 | Init [ 39% ] 11647/30000 VUs initialized 20 | default [ 0% ] 21 | 22 | Init [ 59% ] 17730/30000 VUs initialized 23 | default [ 0% ] 24 | 25 | Init [ 72% ] 21587/30000 VUs initialized 26 | default [ 0% ] 27 | 28 | Init [ 92% ] 27496/30000 VUs initialized 29 | default [ 0% ] 30 | 31 | running (0m00.4s), 12979/30000 VUs, 0 complete and 0 interrupted iterations 32 | default [ 0% ] 30000 VUs 0m00.4s/5m0s 33 | 34 | running (0m00.6s), 12979/30000 VUs, 0 complete and 0 interrupted iterations 35 | default [ 0% ] 30000 VUs 0m00.6s/5m0s 36 | 37 | running (0m01.9s), 13784/30000 VUs, 0 complete and 0 interrupted iterations 38 | default [ 1% ] 30000 VUs 0m01.9s/5m0s 39 | 40 | running (0m02.6s), 15538/30000 VUs, 0 complete and 0 interrupted iterations 41 | default [ 1% ] 30000 VUs 0m02.6s/5m0s 42 | 43 | running (0m03.6s), 20467/30000 VUs, 0 complete and 0 interrupted iterations 44 | default [ 1% ] 30000 VUs 0m03.6s/5m0s 45 | 46 | running (0m04.6s), 29110/30000 VUs, 0 complete and 0 interrupted iterations 47 | default [ 2% ] 30000 VUs 0m04.6s/5m0s 48 | 49 | running (0m05.6s), 30000/30000 VUs, 0 complete and 0 interrupted iterations 50 | default [ 2% ] 30000 VUs 0m05.6s/5m0s 51 | 52 | running (0m06.6s), 30000/30000 VUs, 0 complete and 0 interrupted iterations 53 | default [ 2% ] 30000 VUs 0m06.6s/5m0s 54 | 55 | running (0m07.6s), 30000/30000 VUs, 5 complete and 0 interrupted iterations 56 | default [ 3% ] 30000 VUs 0m07.6s/5m0s 57 | 58 | running (0m08.6s), 30000/30000 VUs, 9 complete and 0 interrupted iterations 59 | default [ 3% ] 30000 VUs 0m08.6s/5m0s 60 | 61 | running (0m09.8s), 30000/30000 VUs, 10 complete and 0 interrupted iterations 62 | default [ 3% ] 30000 VUs 0m09.8s/5m0s 63 | 64 | running (0m10.6s), 30000/30000 VUs, 20 complete and 0 interrupted iterations 65 | default [ 4% ] 30000 VUs 0m10.6s/5m0s 66 | 67 | running (0m11.6s), 30000/30000 VUs, 23 complete and 0 interrupted iterations 68 | default [ 4% ] 30000 VUs 0m11.6s/5m0s 69 | 70 | running (0m12.6s), 30000/30000 VUs, 1226 complete and 0 interrupted iterations 71 | default [ 4% ] 30000 VUs 0m12.6s/5m0s 72 | 73 | running (0m13.6s), 30000/30000 VUs, 9259 complete and 0 interrupted iterations 74 | default [ 5% ] 30000 VUs 0m13.6s/5m0s 75 | 76 | running (0m14.6s), 30000/30000 VUs, 21999 complete and 0 interrupted iterations 77 | default [ 5% ] 30000 VUs 0m14.6s/5m0s 78 | 79 | running (0m15.6s), 30000/30000 VUs, 25529 complete and 0 interrupted iterations 80 | default [ 5% ] 30000 VUs 0m15.6s/5m0s 81 | 82 | running (0m16.6s), 30000/30000 VUs, 32870 complete and 0 interrupted iterations 83 | default [ 6% ] 30000 VUs 0m16.6s/5m0s 84 | 85 | running (0m17.6s), 30000/30000 VUs, 35567 complete and 0 interrupted iterations 86 | default [ 6% ] 30000 VUs 0m17.6s/5m0s 87 | 88 | running (0m18.7s), 30000/30000 VUs, 38918 complete and 0 interrupted iterations 89 | default [ 6% ] 30000 VUs 0m18.7s/5m0s 90 | 91 | running (0m19.6s), 30000/30000 VUs, 39643 complete and 0 interrupted iterations 92 | default [ 7% ] 30000 VUs 0m19.6s/5m0s 93 | 94 | running (0m20.6s), 30000/30000 VUs, 58484 complete and 0 interrupted iterations 95 | default [ 7% ] 30000 VUs 0m20.6s/5m0s 96 | 97 | running (0m21.6s), 30000/30000 VUs, 68396 complete and 0 interrupted iterations 98 | default [ 7% ] 30000 VUs 0m21.6s/5m0s 99 | 100 | running (0m22.8s), 30000/30000 VUs, 80205 complete and 0 interrupted iterations 101 | default [ 8% ] 30000 VUs 0m22.8s/5m0s 102 | 103 | running (0m23.6s), 30000/30000 VUs, 82067 complete and 0 interrupted iterations 104 | default [ 8% ] 30000 VUs 0m23.6s/5m0s 105 | 106 | running (0m24.6s), 30000/30000 VUs, 100072 complete and 0 interrupted iterations 107 | default [ 8% ] 30000 VUs 0m24.6s/5m0s 108 | 109 | running (0m25.6s), 30000/30000 VUs, 111107 complete and 0 interrupted iterations 110 | default [ 9% ] 30000 VUs 0m25.6s/5m0s 111 | 112 | running (0m26.7s), 30000/30000 VUs, 118747 complete and 0 interrupted iterations 113 | default [ 9% ] 30000 VUs 0m26.7s/5m0s 114 | 115 | running (0m27.6s), 30000/30000 VUs, 128512 complete and 0 interrupted iterations 116 | default [ 9% ] 30000 VUs 0m27.6s/5m0s 117 | 118 | running (0m28.6s), 30000/30000 VUs, 137815 complete and 0 interrupted iterations 119 | default [ 10% ] 30000 VUs 0m28.6s/5m0s 120 | 121 | running (0m29.6s), 30000/30000 VUs, 151382 complete and 0 interrupted iterations 122 | default [ 10% ] 30000 VUs 0m29.6s/5m0s 123 | 124 | running (0m31.2s), 30000/30000 VUs, 165303 complete and 0 interrupted iterations 125 | default [ 10% ] 30000 VUs 0m31.2s/5m0s 126 | 127 | running (0m31.6s), 30000/30000 VUs, 168658 complete and 0 interrupted iterations 128 | default [ 11% ] 30000 VUs 0m31.6s/5m0s 129 | 130 | running (0m32.6s), 30000/30000 VUs, 187450 complete and 0 interrupted iterations 131 | default [ 11% ] 30000 VUs 0m32.6s/5m0s 132 | 133 | running (0m33.6s), 30000/30000 VUs, 191985 complete and 0 interrupted iterations 134 | default [ 11% ] 30000 VUs 0m33.6s/5m0s 135 | 136 | running (0m34.6s), 30000/30000 VUs, 198520 complete and 0 interrupted iterations 137 | default [ 12% ] 30000 VUs 0m34.6s/5m0s 138 | 139 | running (0m35.6s), 30000/30000 VUs, 211354 complete and 0 interrupted iterations 140 | default [ 12% ] 30000 VUs 0m35.6s/5m0s 141 | 142 | running (0m36.6s), 30000/30000 VUs, 223706 complete and 0 interrupted iterations 143 | default [ 12% ] 30000 VUs 0m36.6s/5m0s 144 | 145 | running (0m37.6s), 30000/30000 VUs, 235488 complete and 0 interrupted iterations 146 | default [ 13% ] 30000 VUs 0m37.6s/5m0s 147 | 148 | running (0m39.3s), 30000/30000 VUs, 253231 complete and 0 interrupted iterations 149 | default [ 13% ] 30000 VUs 0m39.3s/5m0s 150 | 151 | running (0m39.6s), 30000/30000 VUs, 254641 complete and 0 interrupted iterations 152 | default [ 13% ] 30000 VUs 0m39.6s/5m0s 153 | 154 | running (0m40.6s), 30000/30000 VUs, 272847 complete and 0 interrupted iterations 155 | default [ 14% ] 30000 VUs 0m40.6s/5m0s 156 | 157 | running (0m41.6s), 30000/30000 VUs, 277674 complete and 0 interrupted iterations 158 | default [ 14% ] 30000 VUs 0m41.6s/5m0s 159 | 160 | running (0m42.7s), 30000/30000 VUs, 288313 complete and 0 interrupted iterations 161 | default [ 14% ] 30000 VUs 0m42.7s/5m0s 162 | 163 | running (0m43.6s), 30000/30000 VUs, 295335 complete and 0 interrupted iterations 164 | default [ 15% ] 30000 VUs 0m43.6s/5m0s 165 | 166 | running (0m44.6s), 30000/30000 VUs, 309010 complete and 0 interrupted iterations 167 | default [ 15% ] 30000 VUs 0m44.6s/5m0s 168 | 169 | running (0m45.6s), 30000/30000 VUs, 320091 complete and 0 interrupted iterations 170 | default [ 15% ] 30000 VUs 0m45.6s/5m0s 171 | 172 | running (0m46.8s), 30000/30000 VUs, 333863 complete and 0 interrupted iterations 173 | default [ 16% ] 30000 VUs 0m46.8s/5m0s 174 | 175 | running (0m47.6s), 30000/30000 VUs, 335669 complete and 0 interrupted iterations 176 | default [ 16% ] 30000 VUs 0m47.6s/5m0s 177 | 178 | running (0m48.6s), 30000/30000 VUs, 353306 complete and 0 interrupted iterations 179 | default [ 16% ] 30000 VUs 0m48.6s/5m0s 180 | 181 | running (0m49.6s), 30000/30000 VUs, 362890 complete and 0 interrupted iterations 182 | default [ 17% ] 30000 VUs 0m49.6s/5m0s 183 | 184 | running (0m50.6s), 30000/30000 VUs, 371572 complete and 0 interrupted iterations 185 | default [ 17% ] 30000 VUs 0m50.6s/5m0s 186 | 187 | running (0m51.6s), 30000/30000 VUs, 384974 complete and 0 interrupted iterations 188 | default [ 17% ] 30000 VUs 0m51.6s/5m0s 189 | 190 | running (0m52.6s), 30000/30000 VUs, 392624 complete and 0 interrupted iterations 191 | default [ 18% ] 30000 VUs 0m52.6s/5m0s 192 | 193 | running (0m54.1s), 30000/30000 VUs, 405803 complete and 0 interrupted iterations 194 | default [ 18% ] 30000 VUs 0m54.1s/5m0s 195 | 196 | running (0m54.6s), 30000/30000 VUs, 412948 complete and 0 interrupted iterations 197 | default [ 18% ] 30000 VUs 0m54.6s/5m0s 198 | 199 | running (0m55.6s), 30000/30000 VUs, 428463 complete and 0 interrupted iterations 200 | default [ 19% ] 30000 VUs 0m55.6s/5m0s 201 | 202 | running (0m56.6s), 30000/30000 VUs, 433658 complete and 0 interrupted iterations 203 | default [ 19% ] 30000 VUs 0m56.6s/5m0s 204 | 205 | running (0m57.9s), 30000/30000 VUs, 443830 complete and 0 interrupted iterations 206 | default [ 19% ] 30000 VUs 0m57.9s/5m0s 207 | 208 | running (0m58.6s), 30000/30000 VUs, 450624 complete and 0 interrupted iterations 209 | default [ 20% ] 30000 VUs 0m58.6s/5m0s 210 | 211 | running (0m59.6s), 30000/30000 VUs, 466410 complete and 0 interrupted iterations 212 | default [ 20% ] 30000 VUs 0m59.6s/5m0s 213 | 214 | running (1m00.6s), 30000/30000 VUs, 474413 complete and 0 interrupted iterations 215 | default [ 20% ] 30000 VUs 1m00.6s/5m0s 216 | 217 | running (1m01.7s), 30000/30000 VUs, 486533 complete and 0 interrupted iterations 218 | default [ 21% ] 30000 VUs 1m01.7s/5m0s 219 | 220 | running (1m02.6s), 30000/30000 VUs, 494995 complete and 0 interrupted iterations 221 | default [ 21% ] 30000 VUs 1m02.6s/5m0s 222 | 223 | running (1m03.6s), 30000/30000 VUs, 506773 complete and 0 interrupted iterations 224 | default [ 21% ] 30000 VUs 1m03.6s/5m0s 225 | 226 | running (1m04.6s), 30000/30000 VUs, 518332 complete and 0 interrupted iterations 227 | default [ 22% ] 30000 VUs 1m04.6s/5m0s 228 | 229 | running (1m05.6s), 30000/30000 VUs, 527343 complete and 0 interrupted iterations 230 | default [ 22% ] 30000 VUs 1m05.6s/5m0s 231 | 232 | running (1m06.6s), 30000/30000 VUs, 539349 complete and 0 interrupted iterations 233 | default [ 22% ] 30000 VUs 1m06.6s/5m0s 234 | 235 | running (1m07.6s), 30000/30000 VUs, 549187 complete and 0 interrupted iterations 236 | default [ 23% ] 30000 VUs 1m07.6s/5m0s 237 | 238 | running (1m09.0s), 30000/30000 VUs, 559279 complete and 0 interrupted iterations 239 | default [ 23% ] 30000 VUs 1m09.0s/5m0s 240 | 241 | running (1m09.6s), 30000/30000 VUs, 565897 complete and 0 interrupted iterations 242 | default [ 23% ] 30000 VUs 1m09.6s/5m0s 243 | 244 | running (1m10.6s), 30000/30000 VUs, 582786 complete and 0 interrupted iterations 245 | default [ 24% ] 30000 VUs 1m10.6s/5m0s 246 | 247 | running (1m11.6s), 30000/30000 VUs, 590540 complete and 0 interrupted iterations 248 | default [ 24% ] 30000 VUs 1m11.6s/5m0s 249 | 250 | running (1m12.7s), 30000/30000 VUs, 598057 complete and 0 interrupted iterations 251 | default [ 24% ] 30000 VUs 1m12.7s/5m0s 252 | 253 | running (1m13.6s), 30000/30000 VUs, 604614 complete and 0 interrupted iterations 254 | default [ 25% ] 30000 VUs 1m13.6s/5m0s 255 | 256 | running (1m14.6s), 30000/30000 VUs, 622926 complete and 0 interrupted iterations 257 | default [ 25% ] 30000 VUs 1m14.6s/5m0s 258 | 259 | running (1m15.6s), 30000/30000 VUs, 632786 complete and 0 interrupted iterations 260 | default [ 25% ] 30000 VUs 1m15.6s/5m0s 261 | 262 | running (1m16.6s), 30000/30000 VUs, 641426 complete and 0 interrupted iterations 263 | default [ 26% ] 30000 VUs 1m16.6s/5m0s 264 | 265 | running (1m17.6s), 30000/30000 VUs, 654309 complete and 0 interrupted iterations 266 | default [ 26% ] 30000 VUs 1m17.6s/5m0s 267 | 268 | running (1m18.6s), 30000/30000 VUs, 663785 complete and 0 interrupted iterations 269 | default [ 26% ] 30000 VUs 1m18.6s/5m0s 270 | 271 | running (1m20.0s), 30000/30000 VUs, 678010 complete and 0 interrupted iterations 272 | default [ 27% ] 30000 VUs 1m20.0s/5m0s 273 | 274 | running (1m20.6s), 30000/30000 VUs, 680376 complete and 0 interrupted iterations 275 | default [ 27% ] 30000 VUs 1m20.6s/5m0s 276 | 277 | running (1m21.6s), 30000/30000 VUs, 697509 complete and 0 interrupted iterations 278 | default [ 27% ] 30000 VUs 1m21.6s/5m0s 279 | 280 | running (1m22.6s), 30000/30000 VUs, 706711 complete and 0 interrupted iterations 281 | default [ 28% ] 30000 VUs 1m22.6s/5m0s 282 | 283 | running (1m23.7s), 30000/30000 VUs, 718354 complete and 0 interrupted iterations 284 | default [ 28% ] 30000 VUs 1m23.7s/5m0s 285 | 286 | running (1m24.6s), 30000/30000 VUs, 722812 complete and 0 interrupted iterations 287 | default [ 28% ] 30000 VUs 1m24.6s/5m0s 288 | 289 | running (1m25.6s), 30000/30000 VUs, 739073 complete and 0 interrupted iterations 290 | default [ 29% ] 30000 VUs 1m25.6s/5m0s 291 | 292 | running (1m26.6s), 30000/30000 VUs, 751253 complete and 0 interrupted iterations 293 | default [ 29% ] 30000 VUs 1m26.6s/5m0s 294 | 295 | running (1m27.6s), 30000/30000 VUs, 757188 complete and 0 interrupted iterations 296 | default [ 29% ] 30000 VUs 1m27.6s/5m0s 297 | 298 | running (1m28.6s), 30000/30000 VUs, 768569 complete and 0 interrupted iterations 299 | default [ 30% ] 30000 VUs 1m28.6s/5m0s 300 | 301 | running (1m29.6s), 30000/30000 VUs, 778258 complete and 0 interrupted iterations 302 | default [ 30% ] 30000 VUs 1m29.6s/5m0s 303 | 304 | running (1m30.6s), 30000/30000 VUs, 792307 complete and 0 interrupted iterations 305 | default [ 30% ] 30000 VUs 1m30.6s/5m0s 306 | 307 | running (1m31.6s), 30000/30000 VUs, 800090 complete and 0 interrupted iterations 308 | default [ 31% ] 30000 VUs 1m31.6s/5m0s 309 | 310 | running (1m32.6s), 30000/30000 VUs, 816356 complete and 0 interrupted iterations 311 | default [ 31% ] 30000 VUs 1m32.6s/5m0s 312 | 313 | running (1m33.6s), 30000/30000 VUs, 818949 complete and 0 interrupted iterations 314 | default [ 31% ] 30000 VUs 1m33.6s/5m0s 315 | 316 | running (1m35.0s), 30000/30000 VUs, 836941 complete and 0 interrupted iterations 317 | default [ 32% ] 30000 VUs 1m35.0s/5m0s 318 | 319 | running (1m35.6s), 30000/30000 VUs, 838396 complete and 0 interrupted iterations 320 | default [ 32% ] 30000 VUs 1m35.6s/5m0s 321 | 322 | running (1m36.6s), 30000/30000 VUs, 853646 complete and 0 interrupted iterations 323 | default [ 32% ] 30000 VUs 1m36.6s/5m0s 324 | 325 | running (1m37.6s), 30000/30000 VUs, 859285 complete and 0 interrupted iterations 326 | default [ 33% ] 30000 VUs 1m37.6s/5m0s 327 | 328 | running (1m38.9s), 30000/30000 VUs, 876298 complete and 0 interrupted iterations 329 | default [ 33% ] 30000 VUs 1m38.9s/5m0s 330 | 331 | running (1m39.6s), 30000/30000 VUs, 878218 complete and 0 interrupted iterations 332 | default [ 33% ] 30000 VUs 1m39.6s/5m0s 333 | 334 | running (1m40.6s), 30000/30000 VUs, 894839 complete and 0 interrupted iterations 335 | default [ 34% ] 30000 VUs 1m40.6s/5m0s 336 | 337 | running (1m41.6s), 30000/30000 VUs, 903082 complete and 0 interrupted iterations 338 | default [ 34% ] 30000 VUs 1m41.6s/5m0s 339 | 340 | running (1m42.7s), 30000/30000 VUs, 912688 complete and 0 interrupted iterations 341 | default [ 34% ] 30000 VUs 1m42.7s/5m0s 342 | 343 | running (1m43.6s), 30000/30000 VUs, 918288 complete and 0 interrupted iterations 344 | default [ 35% ] 30000 VUs 1m43.6s/5m0s 345 | 346 | running (1m44.6s), 30000/30000 VUs, 935616 complete and 0 interrupted iterations 347 | default [ 35% ] 30000 VUs 1m44.6s/5m0s 348 | 349 | running (1m45.6s), 30000/30000 VUs, 945068 complete and 0 interrupted iterations 350 | default [ 35% ] 30000 VUs 1m45.6s/5m0s 351 | 352 | running (1m46.8s), 30000/30000 VUs, 955594 complete and 0 interrupted iterations 353 | default [ 36% ] 30000 VUs 1m46.8s/5m0s 354 | 355 | running (1m47.6s), 30000/30000 VUs, 958494 complete and 0 interrupted iterations 356 | default [ 36% ] 30000 VUs 1m47.6s/5m0s 357 | 358 | running (1m48.6s), 30000/30000 VUs, 974178 complete and 0 interrupted iterations 359 | default [ 36% ] 30000 VUs 1m48.6s/5m0s 360 | 361 | running (1m49.6s), 30000/30000 VUs, 985028 complete and 0 interrupted iterations 362 | default [ 37% ] 30000 VUs 1m49.6s/5m0s 363 | 364 | running (1m50.6s), 30000/30000 VUs, 996004 complete and 0 interrupted iterations 365 | default [ 37% ] 30000 VUs 1m50.6s/5m0s 366 | 367 | running (1m51.6s), 30000/30000 VUs, 1003304 complete and 0 interrupted iterations 368 | default [ 37% ] 30000 VUs 1m51.6s/5m0s 369 | time="2023-02-02T14:04:04Z" level=warning msg="Request Failed" error="Get \"http://test.staging.k6.io/static/js/prisms.js\": dial: i/o timeout" 370 | 371 | running (1m52.6s), 30000/30000 VUs, 1013650 complete and 0 interrupted iterations 372 | default [ 38% ] 30000 VUs 1m52.6s/5m0s 373 | time="2023-02-02T14:04:05Z" level=warning msg="Request Failed" error="Get \"http://test.staging.k6.io/static/css/site.css\": dial: i/o timeout" 374 | 375 | running (1m53.6s), 30000/30000 VUs, 1026061 complete and 0 interrupted iterations 376 | default [ 38% ] 30000 VUs 1m53.6s/5m0s 377 | 378 | running (1m54.6s), 30000/30000 VUs, 1035288 complete and 0 interrupted iterations 379 | default [ 38% ] 30000 VUs 1m54.6s/5m0s 380 | 381 | running (1m55.6s), 30000/30000 VUs, 1049661 complete and 0 interrupted iterations 382 | default [ 39% ] 30000 VUs 1m55.6s/5m0s 383 | 384 | running (1m56.6s), 30000/30000 VUs, 1053583 complete and 0 interrupted iterations 385 | default [ 39% ] 30000 VUs 1m56.6s/5m0s 386 | 387 | running (1m57.7s), 30000/30000 VUs, 1062981 complete and 0 interrupted iterations 388 | default [ 39% ] 30000 VUs 1m57.7s/5m0s 389 | 390 | running (1m58.6s), 30000/30000 VUs, 1071281 complete and 0 interrupted iterations 391 | default [ 40% ] 30000 VUs 1m58.6s/5m0s 392 | 393 | running (1m59.6s), 30000/30000 VUs, 1087422 complete and 0 interrupted iterations 394 | default [ 40% ] 30000 VUs 1m59.6s/5m0s 395 | 396 | running (2m00.6s), 30000/30000 VUs, 1097162 complete and 0 interrupted iterations 397 | default [ 40% ] 30000 VUs 2m00.6s/5m0s 398 | 399 | running (2m01.6s), 30000/30000 VUs, 1108051 complete and 0 interrupted iterations 400 | default [ 41% ] 30000 VUs 2m01.6s/5m0s 401 | 402 | running (2m02.6s), 30000/30000 VUs, 1116992 complete and 0 interrupted iterations 403 | default [ 41% ] 30000 VUs 2m02.6s/5m0s 404 | 405 | running (2m03.6s), 30000/30000 VUs, 1127614 complete and 0 interrupted iterations 406 | default [ 41% ] 30000 VUs 2m03.6s/5m0s 407 | 408 | running (2m04.6s), 30000/30000 VUs, 1141057 complete and 0 interrupted iterations 409 | default [ 42% ] 30000 VUs 2m04.6s/5m0s 410 | 411 | running (2m05.6s), 30000/30000 VUs, 1150425 complete and 0 interrupted iterations 412 | default [ 42% ] 30000 VUs 2m05.6s/5m0s 413 | 414 | running (2m06.6s), 30000/30000 VUs, 1157696 complete and 0 interrupted iterations 415 | default [ 42% ] 30000 VUs 2m06.6s/5m0s 416 | 417 | running (2m07.6s), 30000/30000 VUs, 1168318 complete and 0 interrupted iterations 418 | default [ 43% ] 30000 VUs 2m07.6s/5m0s 419 | 420 | running (2m08.6s), 30000/30000 VUs, 1182418 complete and 0 interrupted iterations 421 | default [ 43% ] 30000 VUs 2m08.6s/5m0s 422 | 423 | running (2m09.6s), 30000/30000 VUs, 1190611 complete and 0 interrupted iterations 424 | default [ 43% ] 30000 VUs 2m09.6s/5m0s 425 | 426 | running (2m10.6s), 30000/30000 VUs, 1199363 complete and 0 interrupted iterations 427 | default [ 44% ] 30000 VUs 2m10.6s/5m0s 428 | 429 | running (2m11.6s), 30000/30000 VUs, 1208981 complete and 0 interrupted iterations 430 | default [ 44% ] 30000 VUs 2m11.6s/5m0s 431 | 432 | running (2m13.2s), 30000/30000 VUs, 1228848 complete and 0 interrupted iterations 433 | default [ 44% ] 30000 VUs 2m13.2s/5m0s 434 | 435 | running (2m13.6s), 30000/30000 VUs, 1230674 complete and 0 interrupted iterations 436 | default [ 45% ] 30000 VUs 2m13.6s/5m0s 437 | 438 | running (2m14.6s), 30000/30000 VUs, 1246204 complete and 0 interrupted iterations 439 | default [ 45% ] 30000 VUs 2m14.6s/5m0s 440 | 441 | running (2m15.6s), 30000/30000 VUs, 1250339 complete and 0 interrupted iterations 442 | default [ 45% ] 30000 VUs 2m15.6s/5m0s 443 | 444 | running (2m17.1s), 30000/30000 VUs, 1269782 complete and 0 interrupted iterations 445 | default [ 46% ] 30000 VUs 2m17.1s/5m0s 446 | 447 | running (2m17.6s), 30000/30000 VUs, 1271421 complete and 0 interrupted iterations 448 | default [ 46% ] 30000 VUs 2m17.6s/5m0s 449 | 450 | running (2m18.6s), 30000/30000 VUs, 1286832 complete and 0 interrupted iterations 451 | default [ 46% ] 30000 VUs 2m18.6s/5m0s 452 | time="2023-02-02T14:04:31Z" level=warning msg="Request Failed" error="Get \"http://test.staging.k6.io/static/css/site.css\": dial: i/o timeout" 453 | 454 | running (2m19.6s), 30000/30000 VUs, 1292603 complete and 0 interrupted iterations 455 | default [ 47% ] 30000 VUs 2m19.6s/5m0s 456 | 457 | running (2m20.7s), 30000/30000 VUs, 1301664 complete and 0 interrupted iterations 458 | default [ 47% ] 30000 VUs 2m20.7s/5m0s 459 | 460 | running (2m21.6s), 30000/30000 VUs, 1311878 complete and 0 interrupted iterations 461 | default [ 47% ] 30000 VUs 2m21.6s/5m0s 462 | 463 | running (2m22.6s), 30000/30000 VUs, 1326256 complete and 0 interrupted iterations 464 | default [ 48% ] 30000 VUs 2m22.6s/5m0s 465 | 466 | running (2m23.6s), 30000/30000 VUs, 1335428 complete and 0 interrupted iterations 467 | default [ 48% ] 30000 VUs 2m23.6s/5m0s 468 | 469 | running (2m24.6s), 30000/30000 VUs, 1347924 complete and 0 interrupted iterations 470 | default [ 48% ] 30000 VUs 2m24.6s/5m0s 471 | time="2023-02-02T14:04:38Z" level=warning msg="Request Failed" error="Get \"http://test.staging.k6.io/static/css/site.css\": dial: i/o timeout" 472 | time="2023-02-02T14:04:38Z" level=warning msg="Request Failed" error="Get \"http://test.staging.k6.io/static/js/prisms.js\": dial: i/o timeout" 473 | time="2023-02-02T14:04:38Z" level=warning msg="Request Failed" error="Get \"http://test.staging.k6.io/static/css/site.css\": dial: i/o timeout" 474 | 475 | running (2m25.6s), 30000/30000 VUs, 1355855 complete and 0 interrupted iterations 476 | default [ 49% ] 30000 VUs 2m25.6s/5m0s 477 | time="2023-02-02T14:04:38Z" level=warning msg="Request Failed" error="Get \"http://test.staging.k6.io/static/js/prisms.js\": dial: i/o timeout" 478 | 479 | running (2m26.6s), 30000/30000 VUs, 1367023 complete and 0 interrupted iterations 480 | default [ 49% ] 30000 VUs 2m26.6s/5m0s 481 | 482 | running (2m27.6s), 30000/30000 VUs, 1378172 complete and 0 interrupted iterations 483 | default [ 49% ] 30000 VUs 2m27.6s/5m0s 484 | 485 | running (2m28.6s), 30000/30000 VUs, 1389532 complete and 0 interrupted iterations 486 | default [ 50% ] 30000 VUs 2m28.6s/5m0s 487 | 488 | running (2m29.6s), 30000/30000 VUs, 1396004 complete and 0 interrupted iterations 489 | default [ 50% ] 30000 VUs 2m29.6s/5m0s 490 | 491 | running (2m30.6s), 30000/30000 VUs, 1408239 complete and 0 interrupted iterations 492 | default [ 50% ] 30000 VUs 2m30.6s/5m0s 493 | 494 | running (2m31.6s), 30000/30000 VUs, 1420997 complete and 0 interrupted iterations 495 | default [ 51% ] 30000 VUs 2m31.6s/5m0s 496 | 497 | running (2m32.6s), 30000/30000 VUs, 1429899 complete and 0 interrupted iterations 498 | default [ 51% ] 30000 VUs 2m32.6s/5m0s 499 | 500 | running (2m33.6s), 30000/30000 VUs, 1439171 complete and 0 interrupted iterations 501 | default [ 51% ] 30000 VUs 2m33.6s/5m0s 502 | 503 | running (2m34.6s), 30000/30000 VUs, 1451048 complete and 0 interrupted iterations 504 | default [ 52% ] 30000 VUs 2m34.6s/5m0s 505 | 506 | running (2m35.6s), 30000/30000 VUs, 1461722 complete and 0 interrupted iterations 507 | default [ 52% ] 30000 VUs 2m35.6s/5m0s 508 | 509 | running (2m36.6s), 30000/30000 VUs, 1470178 complete and 0 interrupted iterations 510 | default [ 52% ] 30000 VUs 2m36.6s/5m0s 511 | 512 | running (2m37.6s), 30000/30000 VUs, 1480288 complete and 0 interrupted iterations 513 | default [ 53% ] 30000 VUs 2m37.6s/5m0s 514 | 515 | running (2m38.6s), 30000/30000 VUs, 1492278 complete and 0 interrupted iterations 516 | default [ 53% ] 30000 VUs 2m38.6s/5m0s 517 | 518 | running (2m39.6s), 30000/30000 VUs, 1503687 complete and 0 interrupted iterations 519 | default [ 53% ] 30000 VUs 2m39.6s/5m0s 520 | 521 | running (2m40.6s), 30000/30000 VUs, 1512283 complete and 0 interrupted iterations 522 | default [ 54% ] 30000 VUs 2m40.6s/5m0s 523 | 524 | running (2m41.6s), 30000/30000 VUs, 1523948 complete and 0 interrupted iterations 525 | default [ 54% ] 30000 VUs 2m41.6s/5m0s 526 | 527 | running (2m42.6s), 30000/30000 VUs, 1534310 complete and 0 interrupted iterations 528 | default [ 54% ] 30000 VUs 2m42.6s/5m0s 529 | 530 | running (2m43.6s), 30000/30000 VUs, 1546831 complete and 0 interrupted iterations 531 | default [ 55% ] 30000 VUs 2m43.6s/5m0s 532 | 533 | running (2m44.6s), 30000/30000 VUs, 1553152 complete and 0 interrupted iterations 534 | default [ 55% ] 30000 VUs 2m44.6s/5m0s 535 | 536 | running (2m45.6s), 30000/30000 VUs, 1569446 complete and 0 interrupted iterations 537 | default [ 55% ] 30000 VUs 2m45.6s/5m0s 538 | 539 | running (2m46.6s), 30000/30000 VUs, 1575535 complete and 0 interrupted iterations 540 | default [ 56% ] 30000 VUs 2m46.6s/5m0s 541 | 542 | running (2m48.2s), 30000/30000 VUs, 1592656 complete and 0 interrupted iterations 543 | default [ 56% ] 30000 VUs 2m48.2s/5m0s 544 | 545 | running (2m48.6s), 30000/30000 VUs, 1594496 complete and 0 interrupted iterations 546 | default [ 56% ] 30000 VUs 2m48.6s/5m0s 547 | 548 | running (2m49.6s), 30000/30000 VUs, 1611102 complete and 0 interrupted iterations 549 | default [ 57% ] 30000 VUs 2m49.6s/5m0s 550 | 551 | running (2m50.6s), 30000/30000 VUs, 1618807 complete and 0 interrupted iterations 552 | default [ 57% ] 30000 VUs 2m50.6s/5m0s 553 | 554 | running (2m52.0s), 30000/30000 VUs, 1633286 complete and 0 interrupted iterations 555 | default [ 57% ] 30000 VUs 2m52.0s/5m0s 556 | 557 | running (2m52.6s), 30000/30000 VUs, 1635505 complete and 0 interrupted iterations 558 | default [ 58% ] 30000 VUs 2m52.6s/5m0s 559 | 560 | running (2m53.6s), 30000/30000 VUs, 1652983 complete and 0 interrupted iterations 561 | default [ 58% ] 30000 VUs 2m53.6s/5m0s 562 | 563 | running (2m54.6s), 30000/30000 VUs, 1657465 complete and 0 interrupted iterations 564 | default [ 58% ] 30000 VUs 2m54.6s/5m0s 565 | 566 | running (2m55.6s), 30000/30000 VUs, 1671464 complete and 0 interrupted iterations 567 | default [ 59% ] 30000 VUs 2m55.6s/5m0s 568 | 569 | running (2m56.8s), 30000/30000 VUs, 1678959 complete and 0 interrupted iterations 570 | default [ 59% ] 30000 VUs 2m56.8s/5m0s 571 | time="2023-02-02T14:05:09Z" level=warning msg="Request Failed" error="Get \"http://test.staging.k6.io/?ts=1143\": dial: i/o timeout" 572 | time="2023-02-02T14:05:09Z" level=warning msg="Request Failed" error="Get \"http://test.staging.k6.io/?ts=1127\": dial: i/o timeout" 573 | 574 | running (2m57.6s), 30000/30000 VUs, 1682578 complete and 0 interrupted iterations 575 | default [ 59% ] 30000 VUs 2m57.6s/5m0s 576 | 577 | running (2m58.6s), 30000/30000 VUs, 1699318 complete and 0 interrupted iterations 578 | default [ 60% ] 30000 VUs 2m58.6s/5m0s 579 | 580 | running (2m59.6s), 30000/30000 VUs, 1710038 complete and 0 interrupted iterations 581 | default [ 60% ] 30000 VUs 2m59.6s/5m0s 582 | 583 | running (3m00.6s), 30000/30000 VUs, 1720889 complete and 0 interrupted iterations 584 | default [ 60% ] 30000 VUs 3m00.6s/5m0s 585 | 586 | running (3m01.6s), 30000/30000 VUs, 1729788 complete and 0 interrupted iterations 587 | default [ 61% ] 30000 VUs 3m01.6s/5m0s 588 | 589 | running (3m02.6s), 30000/30000 VUs, 1742154 complete and 0 interrupted iterations 590 | default [ 61% ] 30000 VUs 3m02.6s/5m0s 591 | 592 | running (3m03.6s), 30000/30000 VUs, 1753128 complete and 0 interrupted iterations 593 | default [ 61% ] 30000 VUs 3m03.6s/5m0s 594 | 595 | running (3m04.7s), 30000/30000 VUs, 1763349 complete and 0 interrupted iterations 596 | default [ 62% ] 30000 VUs 3m04.7s/5m0s 597 | 598 | running (3m05.6s), 30000/30000 VUs, 1772065 complete and 0 interrupted iterations 599 | default [ 62% ] 30000 VUs 3m05.6s/5m0s 600 | 601 | running (3m06.6s), 30000/30000 VUs, 1784314 complete and 0 interrupted iterations 602 | default [ 62% ] 30000 VUs 3m06.6s/5m0s 603 | 604 | running (3m07.6s), 30000/30000 VUs, 1795599 complete and 0 interrupted iterations 605 | default [ 63% ] 30000 VUs 3m07.6s/5m0s 606 | 607 | running (3m08.6s), 30000/30000 VUs, 1807420 complete and 0 interrupted iterations 608 | default [ 63% ] 30000 VUs 3m08.6s/5m0s 609 | 610 | running (3m09.6s), 30000/30000 VUs, 1816179 complete and 0 interrupted iterations 611 | default [ 63% ] 30000 VUs 3m09.6s/5m0s 612 | 613 | running (3m10.6s), 30000/30000 VUs, 1827111 complete and 0 interrupted iterations 614 | default [ 64% ] 30000 VUs 3m10.6s/5m0s 615 | 616 | running (3m11.6s), 30000/30000 VUs, 1838570 complete and 0 interrupted iterations 617 | default [ 64% ] 30000 VUs 3m11.6s/5m0s 618 | 619 | running (3m12.6s), 30000/30000 VUs, 1849217 complete and 0 interrupted iterations 620 | default [ 64% ] 30000 VUs 3m12.6s/5m0s 621 | 622 | running (3m13.6s), 30000/30000 VUs, 1857854 complete and 0 interrupted iterations 623 | default [ 65% ] 30000 VUs 3m13.6s/5m0s 624 | 625 | running (3m14.6s), 30000/30000 VUs, 1869723 complete and 0 interrupted iterations 626 | default [ 65% ] 30000 VUs 3m14.6s/5m0s 627 | 628 | running (3m15.6s), 30000/30000 VUs, 1881937 complete and 0 interrupted iterations 629 | default [ 65% ] 30000 VUs 3m15.6s/5m0s 630 | 631 | running (3m16.6s), 30000/30000 VUs, 1890877 complete and 0 interrupted iterations 632 | default [ 66% ] 30000 VUs 3m16.6s/5m0s 633 | 634 | running (3m17.6s), 30000/30000 VUs, 1901080 complete and 0 interrupted iterations 635 | default [ 66% ] 30000 VUs 3m17.6s/5m0s 636 | 637 | running (3m18.6s), 30000/30000 VUs, 1911387 complete and 0 interrupted iterations 638 | default [ 66% ] 30000 VUs 3m18.6s/5m0s 639 | 640 | running (3m19.6s), 30000/30000 VUs, 1926126 complete and 0 interrupted iterations 641 | default [ 67% ] 30000 VUs 3m19.6s/5m0s 642 | 643 | running (3m20.6s), 30000/30000 VUs, 1933513 complete and 0 interrupted iterations 644 | default [ 67% ] 30000 VUs 3m20.6s/5m0s 645 | 646 | running (3m21.6s), 30000/30000 VUs, 1945298 complete and 0 interrupted iterations 647 | default [ 67% ] 30000 VUs 3m21.6s/5m0s 648 | 649 | running (3m22.6s), 30000/30000 VUs, 1955020 complete and 0 interrupted iterations 650 | default [ 68% ] 30000 VUs 3m22.6s/5m0s 651 | 652 | running (3m24.2s), 30000/30000 VUs, 1972925 complete and 0 interrupted iterations 653 | default [ 68% ] 30000 VUs 3m24.2s/5m0s 654 | 655 | running (3m24.6s), 30000/30000 VUs, 1974423 complete and 0 interrupted iterations 656 | default [ 68% ] 30000 VUs 3m24.6s/5m0s 657 | 658 | running (3m25.6s), 30000/30000 VUs, 1992743 complete and 0 interrupted iterations 659 | default [ 69% ] 30000 VUs 3m25.6s/5m0s 660 | 661 | running (3m26.6s), 30000/30000 VUs, 1997633 complete and 0 interrupted iterations 662 | default [ 69% ] 30000 VUs 3m26.6s/5m0s 663 | 664 | running (3m28.0s), 30000/30000 VUs, 2014233 complete and 0 interrupted iterations 665 | default [ 69% ] 30000 VUs 3m28.0s/5m0s 666 | 667 | running (3m28.6s), 30000/30000 VUs, 2016395 complete and 0 interrupted iterations 668 | default [ 70% ] 30000 VUs 3m28.6s/5m0s 669 | 670 | running (3m29.6s), 30000/30000 VUs, 2033644 complete and 0 interrupted iterations 671 | default [ 70% ] 30000 VUs 3m29.6s/5m0s 672 | 673 | running (3m30.6s), 30000/30000 VUs, 2039662 complete and 0 interrupted iterations 674 | default [ 70% ] 30000 VUs 3m30.6s/5m0s 675 | 676 | running (3m32.0s), 30000/30000 VUs, 2056982 complete and 0 interrupted iterations 677 | default [ 71% ] 30000 VUs 3m32.0s/5m0s 678 | 679 | running (3m32.6s), 30000/30000 VUs, 2058445 complete and 0 interrupted iterations 680 | default [ 71% ] 30000 VUs 3m32.6s/5m0s 681 | time="2023-02-02T14:05:45Z" level=warning msg="Request Failed" error="Post \"http://test.staging.k6.io/login.php\": dial: i/o timeout" 682 | 683 | running (3m33.6s), 30000/30000 VUs, 2075995 complete and 0 interrupted iterations 684 | default [ 71% ] 30000 VUs 3m33.6s/5m0s 685 | 686 | running (3m34.6s), 30000/30000 VUs, 2082637 complete and 0 interrupted iterations 687 | default [ 72% ] 30000 VUs 3m34.6s/5m0s 688 | 689 | running (3m35.6s), 30000/30000 VUs, 2095071 complete and 0 interrupted iterations 690 | default [ 72% ] 30000 VUs 3m35.6s/5m0s 691 | 692 | running (3m36.6s), 30000/30000 VUs, 2103994 complete and 0 interrupted iterations 693 | default [ 72% ] 30000 VUs 3m36.6s/5m0s 694 | 695 | running (3m37.6s), 30000/30000 VUs, 2114199 complete and 0 interrupted iterations 696 | default [ 73% ] 30000 VUs 3m37.6s/5m0s 697 | 698 | running (3m38.6s), 30000/30000 VUs, 2127474 complete and 0 interrupted iterations 699 | default [ 73% ] 30000 VUs 3m38.6s/5m0s 700 | 701 | running (3m39.6s), 30000/30000 VUs, 2136838 complete and 0 interrupted iterations 702 | default [ 73% ] 30000 VUs 3m39.6s/5m0s 703 | 704 | running (3m40.6s), 30000/30000 VUs, 2144864 complete and 0 interrupted iterations 705 | default [ 74% ] 30000 VUs 3m40.6s/5m0s 706 | 707 | running (3m41.6s), 30000/30000 VUs, 2157413 complete and 0 interrupted iterations 708 | default [ 74% ] 30000 VUs 3m41.6s/5m0s 709 | 710 | running (3m42.6s), 30000/30000 VUs, 2170185 complete and 0 interrupted iterations 711 | default [ 74% ] 30000 VUs 3m42.6s/5m0s 712 | 713 | running (3m43.6s), 30000/30000 VUs, 2179102 complete and 0 interrupted iterations 714 | default [ 75% ] 30000 VUs 3m43.6s/5m0s 715 | 716 | running (3m44.6s), 30000/30000 VUs, 2187995 complete and 0 interrupted iterations 717 | default [ 75% ] 30000 VUs 3m44.6s/5m0s 718 | 719 | running (3m45.6s), 30000/30000 VUs, 2199823 complete and 0 interrupted iterations 720 | default [ 75% ] 30000 VUs 3m45.6s/5m0s 721 | 722 | running (3m46.6s), 30000/30000 VUs, 2212411 complete and 0 interrupted iterations 723 | default [ 76% ] 30000 VUs 3m46.6s/5m0s 724 | 725 | running (3m47.6s), 30000/30000 VUs, 2221238 complete and 0 interrupted iterations 726 | default [ 76% ] 30000 VUs 3m47.6s/5m0s 727 | 728 | running (3m48.6s), 30000/30000 VUs, 2231036 complete and 0 interrupted iterations 729 | default [ 76% ] 30000 VUs 3m48.6s/5m0s 730 | time="2023-02-02T14:06:01Z" level=warning msg="Request Failed" error="Post \"http://test.staging.k6.io/login.php\": dial: i/o timeout" 731 | 732 | running (3m49.6s), 30000/30000 VUs, 2243034 complete and 0 interrupted iterations 733 | default [ 77% ] 30000 VUs 3m49.6s/5m0s 734 | 735 | running (3m50.6s), 30000/30000 VUs, 2253491 complete and 0 interrupted iterations 736 | default [ 77% ] 30000 VUs 3m50.6s/5m0s 737 | 738 | running (3m51.7s), 30000/30000 VUs, 2264772 complete and 0 interrupted iterations 739 | default [ 77% ] 30000 VUs 3m51.7s/5m0s 740 | 741 | running (3m52.6s), 30000/30000 VUs, 2268669 complete and 0 interrupted iterations 742 | default [ 78% ] 30000 VUs 3m52.6s/5m0s 743 | 744 | running (3m53.6s), 30000/30000 VUs, 2284936 complete and 0 interrupted iterations 745 | default [ 78% ] 30000 VUs 3m53.6s/5m0s 746 | 747 | running (3m54.6s), 30000/30000 VUs, 2294614 complete and 0 interrupted iterations 748 | default [ 78% ] 30000 VUs 3m54.6s/5m0s 749 | 750 | running (3m56.0s), 30000/30000 VUs, 2305243 complete and 0 interrupted iterations 751 | default [ 79% ] 30000 VUs 3m56.0s/5m0s 752 | 753 | running (3m56.6s), 30000/30000 VUs, 2310139 complete and 0 interrupted iterations 754 | default [ 79% ] 30000 VUs 3m56.6s/5m0s 755 | 756 | running (3m57.6s), 30000/30000 VUs, 2327399 complete and 0 interrupted iterations 757 | default [ 79% ] 30000 VUs 3m57.6s/5m0s 758 | 759 | running (3m58.6s), 30000/30000 VUs, 2335967 complete and 0 interrupted iterations 760 | default [ 80% ] 30000 VUs 3m58.6s/5m0s 761 | 762 | running (4m00.0s), 30000/30000 VUs, 2349379 complete and 0 interrupted iterations 763 | default [ 80% ] 30000 VUs 4m00.0s/5m0s 764 | 765 | running (4m00.6s), 30000/30000 VUs, 2350925 complete and 0 interrupted iterations 766 | default [ 80% ] 30000 VUs 4m00.6s/5m0s 767 | 768 | running (4m01.6s), 30000/30000 VUs, 2369652 complete and 0 interrupted iterations 769 | default [ 81% ] 30000 VUs 4m01.6s/5m0s 770 | 771 | running (4m02.6s), 30000/30000 VUs, 2376126 complete and 0 interrupted iterations 772 | default [ 81% ] 30000 VUs 4m02.6s/5m0s 773 | time="2023-02-02T14:06:16Z" level=warning msg="Request Failed" error="Post \"http://test.staging.k6.io/login.php\": dial: i/o timeout" 774 | 775 | running (4m04.0s), 30000/30000 VUs, 2388703 complete and 0 interrupted iterations 776 | default [ 81% ] 30000 VUs 4m04.0s/5m0s 777 | 778 | running (4m04.6s), 30000/30000 VUs, 2394285 complete and 0 interrupted iterations 779 | default [ 82% ] 30000 VUs 4m04.6s/5m0s 780 | 781 | running (4m05.6s), 30000/30000 VUs, 2411485 complete and 0 interrupted iterations 782 | default [ 82% ] 30000 VUs 4m05.6s/5m0s 783 | 784 | running (4m06.6s), 30000/30000 VUs, 2417489 complete and 0 interrupted iterations 785 | default [ 82% ] 30000 VUs 4m06.6s/5m0s 786 | 787 | running (4m08.2s), 30000/30000 VUs, 2434389 complete and 0 interrupted iterations 788 | default [ 83% ] 30000 VUs 4m08.2s/5m0s 789 | 790 | running (4m08.6s), 30000/30000 VUs, 2436106 complete and 0 interrupted iterations 791 | default [ 83% ] 30000 VUs 4m08.6s/5m0s 792 | 793 | running (4m09.6s), 30000/30000 VUs, 2453399 complete and 0 interrupted iterations 794 | default [ 83% ] 30000 VUs 4m09.6s/5m0s 795 | 796 | running (4m10.6s), 30000/30000 VUs, 2459152 complete and 0 interrupted iterations 797 | default [ 84% ] 30000 VUs 4m10.6s/5m0s 798 | 799 | running (4m11.6s), 30000/30000 VUs, 2472612 complete and 0 interrupted iterations 800 | default [ 84% ] 30000 VUs 4m11.6s/5m0s 801 | 802 | running (4m12.6s), 30000/30000 VUs, 2479528 complete and 0 interrupted iterations 803 | default [ 84% ] 30000 VUs 4m12.6s/5m0s 804 | 805 | running (4m13.6s), 30000/30000 VUs, 2493659 complete and 0 interrupted iterations 806 | default [ 85% ] 30000 VUs 4m13.6s/5m0s 807 | 808 | running (4m14.6s), 30000/30000 VUs, 2501384 complete and 0 interrupted iterations 809 | default [ 85% ] 30000 VUs 4m14.6s/5m0s 810 | 811 | running (4m15.6s), 30000/30000 VUs, 2513555 complete and 0 interrupted iterations 812 | default [ 85% ] 30000 VUs 4m15.6s/5m0s 813 | 814 | running (4m16.6s), 30000/30000 VUs, 2522574 complete and 0 interrupted iterations 815 | default [ 86% ] 30000 VUs 4m16.6s/5m0s 816 | 817 | running (4m17.6s), 30000/30000 VUs, 2532779 complete and 0 interrupted iterations 818 | default [ 86% ] 30000 VUs 4m17.6s/5m0s 819 | 820 | running (4m18.6s), 30000/30000 VUs, 2543151 complete and 0 interrupted iterations 821 | default [ 86% ] 30000 VUs 4m18.6s/5m0s 822 | 823 | running (4m19.6s), 30000/30000 VUs, 2554390 complete and 0 interrupted iterations 824 | default [ 87% ] 30000 VUs 4m19.6s/5m0s 825 | 826 | running (4m20.6s), 30000/30000 VUs, 2563398 complete and 0 interrupted iterations 827 | default [ 87% ] 30000 VUs 4m20.6s/5m0s 828 | 829 | running (4m21.6s), 30000/30000 VUs, 2572921 complete and 0 interrupted iterations 830 | default [ 87% ] 30000 VUs 4m21.6s/5m0s 831 | 832 | running (4m22.6s), 30000/30000 VUs, 2585078 complete and 0 interrupted iterations 833 | default [ 88% ] 30000 VUs 4m22.6s/5m0s 834 | 835 | running (4m23.6s), 30000/30000 VUs, 2596311 complete and 0 interrupted iterations 836 | default [ 88% ] 30000 VUs 4m23.6s/5m0s 837 | time="2023-02-02T14:06:37Z" level=warning msg="Request Failed" error="Get \"http://test.staging.k6.io/static/js/prisms.js\": dial: i/o timeout" 838 | 839 | running (4m24.6s), 30000/30000 VUs, 2603061 complete and 0 interrupted iterations 840 | default [ 88% ] 30000 VUs 4m24.6s/5m0s 841 | 842 | running (4m25.6s), 30000/30000 VUs, 2620068 complete and 0 interrupted iterations 843 | default [ 89% ] 30000 VUs 4m25.6s/5m0s 844 | 845 | running (4m26.6s), 30000/30000 VUs, 2625046 complete and 0 interrupted iterations 846 | default [ 89% ] 30000 VUs 4m26.6s/5m0s 847 | 848 | running (4m27.6s), 30000/30000 VUs, 2638356 complete and 0 interrupted iterations 849 | default [ 89% ] 30000 VUs 4m27.6s/5m0s 850 | 851 | running (4m28.6s), 30000/30000 VUs, 2645710 complete and 0 interrupted iterations 852 | default [ 90% ] 30000 VUs 4m28.6s/5m0s 853 | 854 | running (4m29.6s), 30000/30000 VUs, 2656300 complete and 0 interrupted iterations 855 | default [ 90% ] 30000 VUs 4m29.6s/5m0s 856 | 857 | running (4m30.6s), 30000/30000 VUs, 2668188 complete and 0 interrupted iterations 858 | default [ 90% ] 30000 VUs 4m30.6s/5m0s 859 | 860 | running (4m31.6s), 30000/30000 VUs, 2679119 complete and 0 interrupted iterations 861 | default [ 91% ] 30000 VUs 4m31.6s/5m0s 862 | 863 | running (4m32.8s), 30000/30000 VUs, 2690033 complete and 0 interrupted iterations 864 | default [ 91% ] 30000 VUs 4m32.8s/5m0s 865 | 866 | running (4m33.6s), 30000/30000 VUs, 2691402 complete and 0 interrupted iterations 867 | default [ 91% ] 30000 VUs 4m33.6s/5m0s 868 | 869 | running (4m34.6s), 30000/30000 VUs, 2710823 complete and 0 interrupted iterations 870 | default [ 92% ] 30000 VUs 4m34.6s/5m0s 871 | time="2023-02-02T14:06:48Z" level=warning msg="Request Failed" error="Get \"http://test.staging.k6.io/static/js/prisms.js\": dial: i/o timeout" 872 | 873 | running (4m35.6s), 30000/30000 VUs, 2719655 complete and 0 interrupted iterations 874 | default [ 92% ] 30000 VUs 4m35.6s/5m0s 875 | 876 | running (4m37.1s), 30000/30000 VUs, 2734596 complete and 0 interrupted iterations 877 | default [ 92% ] 30000 VUs 4m37.1s/5m0s 878 | 879 | running (4m37.6s), 30000/30000 VUs, 2736018 complete and 0 interrupted iterations 880 | default [ 93% ] 30000 VUs 4m37.6s/5m0s 881 | 882 | running (4m38.6s), 30000/30000 VUs, 2754705 complete and 0 interrupted iterations 883 | default [ 93% ] 30000 VUs 4m38.6s/5m0s 884 | 885 | running (4m39.6s), 30000/30000 VUs, 2761415 complete and 0 interrupted iterations 886 | default [ 93% ] 30000 VUs 4m39.6s/5m0s 887 | 888 | running (4m40.6s), 30000/30000 VUs, 2774467 complete and 0 interrupted iterations 889 | default [ 94% ] 30000 VUs 4m40.6s/5m0s 890 | 891 | running (4m41.6s), 30000/30000 VUs, 2781367 complete and 0 interrupted iterations 892 | default [ 94% ] 30000 VUs 4m41.6s/5m0s 893 | 894 | running (4m42.6s), 30000/30000 VUs, 2798266 complete and 0 interrupted iterations 895 | default [ 94% ] 30000 VUs 4m42.6s/5m0s 896 | 897 | running (4m43.6s), 30000/30000 VUs, 2803304 complete and 0 interrupted iterations 898 | default [ 95% ] 30000 VUs 4m43.6s/5m0s 899 | 900 | running (4m44.6s), 30000/30000 VUs, 2816561 complete and 0 interrupted iterations 901 | default [ 95% ] 30000 VUs 4m44.6s/5m0s 902 | 903 | running (4m45.6s), 30000/30000 VUs, 2825421 complete and 0 interrupted iterations 904 | default [ 95% ] 30000 VUs 4m45.6s/5m0s 905 | 906 | running (4m46.6s), 30000/30000 VUs, 2834417 complete and 0 interrupted iterations 907 | default [ 96% ] 30000 VUs 4m46.6s/5m0s 908 | 909 | running (4m47.6s), 30000/30000 VUs, 2847082 complete and 0 interrupted iterations 910 | default [ 96% ] 30000 VUs 4m47.6s/5m0s 911 | 912 | running (4m48.6s), 30000/30000 VUs, 2857552 complete and 0 interrupted iterations 913 | default [ 96% ] 30000 VUs 4m48.6s/5m0s 914 | 915 | running (4m49.8s), 30000/30000 VUs, 2869390 complete and 0 interrupted iterations 916 | default [ 97% ] 30000 VUs 4m49.8s/5m0s 917 | 918 | running (4m50.6s), 30000/30000 VUs, 2870984 complete and 0 interrupted iterations 919 | default [ 97% ] 30000 VUs 4m50.6s/5m0s 920 | 921 | running (4m51.6s), 30000/30000 VUs, 2890041 complete and 0 interrupted iterations 922 | default [ 97% ] 30000 VUs 4m51.6s/5m0s 923 | 924 | running (4m52.6s), 30000/30000 VUs, 2900465 complete and 0 interrupted iterations 925 | default [ 98% ] 30000 VUs 4m52.6s/5m0s 926 | 927 | running (4m53.9s), 30000/30000 VUs, 2913821 complete and 0 interrupted iterations 928 | default [ 98% ] 30000 VUs 4m53.9s/5m0s 929 | 930 | running (4m54.6s), 30000/30000 VUs, 2915485 complete and 0 interrupted iterations 931 | default [ 98% ] 30000 VUs 4m54.6s/5m0s 932 | 933 | running (4m55.6s), 30000/30000 VUs, 2933378 complete and 0 interrupted iterations 934 | default [ 99% ] 30000 VUs 4m55.6s/5m0s 935 | 936 | running (4m56.6s), 30000/30000 VUs, 2942264 complete and 0 interrupted iterations 937 | default [ 99% ] 30000 VUs 4m56.6s/5m0s 938 | 939 | running (4m58.2s), 30000/30000 VUs, 2957415 complete and 0 interrupted iterations 940 | default [ 99% ] 30000 VUs 4m58.2s/5m0s 941 | 942 | running (4m58.6s), 30000/30000 VUs, 2960098 complete and 0 interrupted iterations 943 | default [ 100% ] 30000 VUs 4m58.6s/5m0s 944 | time="2023-02-02T14:07:12Z" level=warning msg="Request Failed" error="Get \"http://test.staging.k6.io/?ts=1124\": dial: i/o timeout" 945 | 946 | running (4m59.6s), 30000/30000 VUs, 2977950 complete and 0 interrupted iterations 947 | default [ 100% ] 30000 VUs 4m59.6s/5m0s 948 | 949 | running (5m00.6s), 25592/30000 VUs, 2984074 complete and 0 interrupted iterations 950 | default ↓ [ 100% ] 30000 VUs 5m0s 951 | 952 | running (5m01.6s), 08765/30000 VUs, 3000901 complete and 0 interrupted iterations 953 | default ↓ [ 100% ] 30000 VUs 5m0s 954 | 955 | running (5m02.6s), 00198/30000 VUs, 3009468 complete and 0 interrupted iterations 956 | default ↓ [ 100% ] 30000 VUs 5m0s 957 | 958 | running (5m03.6s), 00124/30000 VUs, 3009542 complete and 0 interrupted iterations 959 | default ↓ [ 100% ] 30000 VUs 5m0s 960 | 961 | running (5m04.6s), 00001/30000 VUs, 3009665 complete and 0 interrupted iterations 962 | default ↓ [ 100% ] 30000 VUs 5m0s 963 | 964 | running (5m05.6s), 00001/30000 VUs, 3009665 complete and 0 interrupted iterations 965 | default ↓ [ 100% ] 30000 VUs 5m0s 966 | time="2023-02-02T14:07:18Z" level=warning msg="Request Failed" error="Get \"http://test.staging.k6.io/?ts=274\": dial: i/o timeout" 967 | 968 | running (5m06.6s), 00001/30000 VUs, 3009665 complete and 0 interrupted iterations 969 | default ↓ [ 100% ] 30000 VUs 5m0s 970 | 971 | running (5m06.9s), 00000/30000 VUs, 3009666 complete and 0 interrupted iterations 972 | default ✓ [ 100% ] 30000 VUs 5m0s 973 | 974 | running (5m06.9s), 00000/30000 VUs, 3009666 complete and 0 interrupted iterations 975 | default ✓ [ 100% ] 30000 VUs 5m0s 976 | 977 | running (5m06.9s), 00000/30000 VUs, 3009666 complete and 0 interrupted iterations 978 | default ✓ [ 100% ] 30000 VUs 5m0s 979 | 980 | running (5m06.9s), 00000/30000 VUs, 3009666 complete and 0 interrupted iterations 981 | default ✓ [ 100% ] 30000 VUs 5m0s 982 | 983 | running (5m06.9s), 00000/30000 VUs, 3009666 complete and 0 interrupted iterations 984 | default ✓ [ 100% ] 30000 VUs 5m0s 985 | 986 | running (5m06.9s), 00000/30000 VUs, 3009666 complete and 0 interrupted iterations 987 | default ✓ [ 100% ] 30000 VUs 5m0s 988 | 989 | running (5m06.9s), 00000/30000 VUs, 3009666 complete and 0 interrupted iterations 990 | default ✓ [ 100% ] 30000 VUs 5m0s 991 | 992 | █ Front page 993 | 994 | ✗ Homepage body size is 11278 bytes 995 | ↳ 99% — ✓ 3009661 / ✗ 5 996 | ✗ Homepage welcome header present 997 | ↳ 99% — ✓ 3009661 / ✗ 5 998 | 999 | █ Static assets 1000 | 1001 | ✗ Is stylesheet 4859 bytes? 1002 | ↳ 99% — ✓ 3009662 / ✗ 4 1003 | 1004 | █ Login 1005 | 1006 | ✗ Users should not be auth'd. Is unauthorized header present? 1007 | ↳ 99% — ✓ 3009664 / ✗ 2 1008 | ✗ is logged in welcome header present 1009 | ↳ 33% — ✓ 1004094 / ✗ 2005572 1010 | 1011 | ✓ check_failure_rate.............: 16.65% ✓ 2005583 ✗ 10033081 1012 | checks.........................: 86.67% ✓ 13042742 ✗ 2005588 1013 | data_received..................: 91 GB 296 MB/s 1014 | data_sent......................: 3.0 GB 9.9 MB/s 1015 | group_duration.................: avg=682.78ms min=21.54ms med=355.3ms max=31.07s p(90)=1.64s p(95)=2.09s 1016 | http_req_blocked...............: avg=3.14ms min=0s med=2.94µs max=3.39s p(90)=5.38µs p(95)=8.05µs 1017 | http_req_connecting............: avg=1.75ms min=0s med=0s max=2.95s p(90)=0s p(95)=0s 1018 | ✗ http_req_duration..............: avg=247.91ms min=0s med=120.19ms max=15.63s p(90)=622.84ms p(95)=827.3ms 1019 | { expected_response:true }...: avg=247.91ms min=21.13ms med=120.19ms max=15.63s p(90)=622.84ms p(95)=827.29ms 1020 | ✗ { staticAsset:yes }..........: avg=81.65ms min=0s med=52.67ms max=3.37s p(90)=155.38ms p(95)=201.06ms 1021 | http_req_failed................: 0.00% ✓ 26 ✗ 18057964 1022 | http_req_receiving.............: avg=2.45ms min=0s med=61.87µs max=2.26s p(90)=316.51µs p(95)=1.21ms 1023 | http_req_sending...............: avg=936.66µs min=0s med=13.43µs max=2.28s p(90)=35.91µs p(95)=86.35µs 1024 | http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s 1025 | http_req_waiting...............: avg=244.52ms min=0s med=118.07ms max=15.63s p(90)=614.79ms p(95)=816.14ms 1026 | http_reqs......................: 18057990 58848.021173/s 1027 | iteration_duration.............: avg=2.93s min=1.1s med=2.72s max=33.33s p(90)=4.09s p(95)=4.67s 1028 | iterations.....................: 3009666 9808.006788/s 1029 | successful_logins..............: 1004094 3272.177301/s 1030 | time_to_first_byte.............: avg=193.34ms min=0s med=81.8ms max=7.52s p(90)=514.9ms p(95)=728.54ms 1031 | vus............................: 1 min=0 max=30000 1032 | vus_max........................: 30000 min=5904 max=30000 1033 | 1034 | time="2023-02-02T14:07:49Z" level=error msg="some thresholds have failed" 1035 | -------------------------------------------------------------------------------- /results/v0.42.0/m5.4xlarge-website.js-6s.csv: -------------------------------------------------------------------------------- 1 | "Time (s)","CPU (%)","RAM (kB)","VUs","RPS" 2 | 0,276.8,7120,0,0 3 | 1,1477,225932,0,0 4 | 6,1446,5973816,3770,3565.157003897082 5 | 12,988.4,10451476,20000,5163.6560443069775 6 | 17,741.2,11762424,20000,7058.783909137292 7 | 22,931.3,12876672,20000,11466.54562963096 8 | 27,339.7,15202356,20000,12943.136278361499 9 | 32,871.7,15237272,20000,13247.61736157456 10 | 38,567.1,15267816,20000,14714.714143185902 11 | 43,778.8,15352680,20000,14927.56479041901 12 | 48,666.0,16186504,20000,15571.694415267832 13 | 53,475.2,16201364,20000,15953.109927328574 14 | 58,777.8,16247524,20000,16235.820724825984 15 | 63,608.0,15026444,20000,16622.69860089813 16 | 69,619.0,14513184,20000,16795.978794173097 17 | 74,854.5,14515772,20000,16957.32769958913 18 | 79,454.6,16016560,20000,17271.11330401929 19 | 84,801.4,16130840,20000,17313.141806811363 20 | 89,503.6,16438784,20000,17419.79218586825 21 | 95,783.0,16439028,20000,17620.55367204401 22 | 100,628.6,16573052,20000,17674.39513152949 23 | 105,658.5,16574848,20000,17740.953215876227 24 | 110,776.4,15023048,20000,17893.04487177397 25 | 115,448.6,15036672,20000,17905.199790767456 26 | 120,831.6,15203684,20000,17985.916075652083 27 | 126,487.2,15771716,20000,17980.164756455397 28 | 131,781.6,15839776,20000,18120.540368706523 29 | 136,784.2,16646516,20000,18187.86861047272 30 | 141,520.6,16663420,20000,18223.184345863512 31 | 146,820.0,16805848,20000,18270.619412350716 32 | 151,568.6,16158160,20000,18263.97171365734 33 | 157,783.2,15711356,20000,18355.58586784022 34 | 162,879.0,15711396,20000,18297.793206028116 35 | 167,786.0,15651188,20000,18437.69906516386 36 | 172,921.2,15118060,20000,18467.62521475142 37 | 177,481.8,15778572,20000,18511.425312662115 38 | 183,813.2,16093484,20000,18452.139845885406 39 | 188,490.2,16117224,20000,18435.904739168724 40 | 193,855.3,16142312,20000,18500.108006219587 41 | 198,832.4,17108296,20000,18531.891507397457 42 | 203,585.2,17108372,20000,18500.592283884136 43 | 208,805.0,15540568,20000,18577.19516432363 44 | 214,494.8,15962208,20000,18486.092669103495 45 | 219,890.8,16001916,20000,18565.668122851264 46 | 224,530.6,16337332,20000,18518.434802884443 47 | 229,833.6,16399260,20000,18610.614551402356 48 | 234,833.1,16810160,20000,18511.29906289241 49 | 239,544.8,16810220,20000,18605.895909136045 50 | 245,842.0,16810228,20000,18671.82450124371 51 | 250,603.4,16227556,20000,18635.38459026061 52 | 255,878.4,16119460,20000,18719.872937363092 53 | 260,882.6,16119460,20000,18618.245473620962 54 | 265,610.8,16150988,20000,18704.460268532846 55 | 270,830.5,16167152,20000,18647.743783312322 56 | 276,517.8,16569920,20000,18774.995052546823 57 | 281,827.1,16596268,20000,18780.34685958474 58 | 286,658.2,16596268,20000,18721.0822083177 59 | 291,724.8,16596268,20000,18774.050090073768 60 | 296,826.4,17118180,20000,18731.9946208775 61 | 302,554.6,17396520,20000,18836.92065009116 62 | 307,834.4,17397476,20000,18831.105480248665 63 | 312,673.3,17404316,20000,18842.075131019337 64 | 317,928.2,17404316,20000,18834.754749101576 65 | 322,719.0,17404328,20000,18867.598419011327 66 | 327,865.2,17464704,20000,18854.308466104983 67 | 333,610.2,17475776,20000,18870.219034341513 68 | 338,838.0,17476144,20000,18898.51410499565 69 | 343,494.0,17692888,20000,18904.574086033324 70 | 348,869.5,17726788,20000,18904.07992079524 71 | 353,643.4,17727576,20000,18907.84031676771 72 | 358,929.7,17727584,20000,18919.631170125005 73 | 364,695.8,16522796,20000,18895.53551847179 74 | 369,706.8,16593892,20000,18938.079422529874 75 | 374,749.3,16749900,20000,18895.612638473245 76 | 379,567.4,16770012,20000,18943.415377436293 77 | 384,904.8,16770012,20000,18890.978374189475 78 | 390,657.6,16837256,20000,18836.15437652444 79 | 395,914.4,16837304,20000,18980.357485892087 80 | 400,548.3,17225812,20000,18930.458368959447 81 | 405,799.2,17276460,20000,18991.925251649445 82 | 410,550.8,17288988,20000,18984.191068135224 83 | 415,843.9,17289204,20000,19118.720067312875 84 | 421,658.3,17291900,20000,19042.00568866 85 | 426,912.0,17915820,20000,19008.725068512336 86 | 431,514.8,17938092,20000,19005.82413955765 87 | 436,861.3,17938440,20000,18967.755028382493 88 | 441,580.8,17302528,20000,18910.67556793976 89 | 447,821.2,16837760,20000,19021.33542780399 90 | 452,747.7,16845068,20000,19000.7577871557 91 | 457,831.2,17220392,20000,18949.345466560106 92 | 462,821.8,16722256,20000,19036.89321060424 93 | 467,627.2,16993836,20000,19022.691242729816 94 | 472,882.4,16995972,20000,18990.415900121752 95 | 478,585.2,17004028,20000,18944.60982910281 96 | 483,892.8,17004028,20000,19046.561963428532 97 | 488,636.7,17361872,20000,19022.81853002361 98 | 493,857.7,17361904,20000,18974.03277463374 99 | 498,567.8,17363040,20000,18931.2391680485 100 | 504,870.0,17421472,20000,19058.11698899983 101 | 509,578.4,17423112,20000,19014.235127831565 102 | 514,912.6,17438936,20000,18971.715818831624 103 | 519,588.2,17473956,20000,18926.866748537886 104 | 524,859.5,18160192,20000,19068.150685644458 105 | 529,551.4,18267532,20000,19078.055236515007 106 | 535,890.0,18267900,20000,19036.702802415002 107 | 540,619.4,18518544,20000,19061.139969588094 108 | 545,911.0,18526736,20000,19022.435783556637 109 | 550,605.2,18599120,20000,19058.65529892263 110 | 555,926.3,18599644,20000,19159.981489912432 111 | 560,641.0,17614564,20000,18987.9820422205 112 | 566,778.8,17664200,20000,19107.09182895339 113 | 571,691.2,17723560,20000,19116.138687616443 114 | 576,714.6,17764528,20000,19078.878653519343 115 | 581,746.7,17768184,20000,19112.8664162449 116 | 586,657.8,17768936,20000,19073.73725299976 117 | 592,889.2,17771488,20000,19105.851320419995 118 | 597,607.6,17771536,20000,19060.884921453406 119 | 602,471.4,17772320,20000,19095.28439070626 120 | 607,309.8,17858936,16904,19101.330464632516 121 | 612,109.0,15785036,2091,18992.92718396455 122 | 618,100.4,14642156,2091,18992.92718396455 123 | 628,100.0,0,0,0 124 | -------------------------------------------------------------------------------- /results/v0.42.0/m5.4xlarge-website.js-6s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k6-benchmarks/be555f196c0161ef517972a0646dd365ba8a4578/results/v0.42.0/m5.4xlarge-website.js-6s.png -------------------------------------------------------------------------------- /results/v0.42.0/m5.large-website.js-10s.csv: -------------------------------------------------------------------------------- 1 | "Time (s)","CPU (%)","RAM (kB)","VUs","RPS" 2 | 0,145.3,10364,0,0 3 | 2,193.2,282416,0,0 4 | 7,198.4,1943156,6000,47.6468727660948 5 | 12,33.0,3283808,6000,2417.8302816176674 6 | 17,60.0,3417012,6000,2265.0454288159494 7 | 22,170.4,3866584,6000,2280.194193205311 8 | 28,78.0,4634556,6000,2561.882478460477 9 | 33,96.4,4519744,6000,2738.124613201231 10 | 38,101.6,4528048,6000,2854.4420134825245 11 | 43,135.0,4655800,6000,2806.375094170936 12 | 48,74.8,4783844,6000,2948.1891933863994 13 | 54,169.1,4785792,6000,3004.184911530895 14 | 59,54.0,4787572,6000,3043.0107837699375 15 | 64,74.2,4787572,6000,2982.6566318545806 16 | 69,161.4,4787744,6000,2970.639683150273 17 | 74,95.4,4789348,6000,3009.972371597777 18 | 80,78.2,4806740,6000,3045.2761828460984 19 | 85,136.8,4806784,6000,3054.1164801207447 20 | 90,94.8,4486264,6000,3022.097143704891 21 | 95,111.4,4502684,6000,3048.6233065769657 22 | 100,125.7,4502684,6000,3138.764914369884 23 | 106,88.4,4633984,6000,3052.3475360469165 24 | 111,152.9,4657096,6000,3072.9818030210627 25 | 116,61.2,4672684,6000,3063.6139822255636 26 | 121,92.0,4674476,6000,3031.2892662711424 27 | 126,166.0,4674664,6000,3049.4326796326577 28 | 132,97.4,4681584,6000,3067.750951154594 29 | 137,84.4,4681588,6000,3083.6066817085903 30 | 142,132.4,4681592,6000,3092.002386694833 31 | 147,87.4,4846124,6000,3063.25417617582 32 | 152,92.2,4880836,6000,3051.143944981029 33 | 158,171.6,4880840,6000,3065.891565362569 34 | 163,78.8,4880884,6000,3078.80958697008 35 | 168,80.8,4880896,6000,3072.8003780331314 36 | 173,161.2,4880908,6000,3064.6179860651478 37 | 178,106.0,4880908,6000,3078.163794867963 38 | 184,99.2,4891476,6000,3090.071328296787 39 | 189,163.7,4891524,6000,3098.0463327740617 40 | 194,90.2,4891524,6000,3111.5925438276713 41 | 199,146.0,4891648,6000,3120.7725367159946 42 | 204,78.4,4891648,6000,3127.8431211530374 43 | 210,94.0,4891648,6000,3095.4291884822896 44 | 215,171.2,4891660,6000,3122.900935629686 45 | 220,101.8,4891660,6000,3115.0436540827045 46 | 225,92.6,4911068,6000,3124.1497271930753 47 | 230,179.2,4911068,6000,3133.643007337458 48 | 236,94.2,4797356,6000,3142.1888049842605 49 | 241,126.4,4797356,6000,3151.0366919569337 50 | 246,119.8,4797356,6000,3169.3009298499537 51 | 251,96.4,4797360,6000,3141.283941692162 52 | 256,160.8,4797360,6000,3148.2548736083727 53 | 262,90.2,4834684,6000,3155.16850551984 54 | 267,100.8,4864424,6000,3172.989911382709 55 | 272,155.0,4864424,6000,3143.8629943059086 56 | 277,112.8,4597336,6000,3150.4941023739016 57 | 282,156.4,4358360,6000,3156.818879890822 58 | 288,111.4,4368864,6000,3162.851805160167 59 | 293,160.2,4368864,6000,3168.5943110274943 60 | 298,115.8,4368864,6000,3173.835032638151 61 | 303,91.4,4368864,6000,3181.1997085879775 62 | 308,179.8,4371448,6000,3181.8906529476585 63 | 313,89.6,4596964,6000,3191.075080403063 64 | 319,112.6,4601476,6000,3195.6848584532463 65 | 324,121.6,4621556,6000,3154.0617936812855 66 | 329,109.0,4828104,6000,3171.059147304961 67 | 334,156.7,4828104,6000,3175.9853549008876 68 | 339,119.8,4911244,6000,3179.9637637328956 69 | 345,101.0,4643684,6000,3184.704944671992 70 | 350,175.8,4643684,6000,3189.8809029617482 71 | 355,90.6,4645784,6000,3197.1163392553594 72 | 360,94.4,4645784,6000,3193.1443791124393 73 | 366,152.3,4645784,6000,3176.3597699927227 74 | 371,109.0,4835732,6000,3186.0077926333247 75 | 376,117.6,4835732,6000,3189.927158671334 76 | 381,111.8,4835732,6000,3183.2581949802016 77 | 386,125.4,4838556,6000,3170.7531760793418 78 | 392,150.5,4838556,6000,3174.916301808523 79 | 397,138.8,4838572,6000,3178.6739719666834 80 | 402,100.6,4544776,6000,3183.1597354520686 81 | 407,157.3,4532824,6000,3185.9486046443167 82 | 412,89.2,4698292,6000,3201.0959158504093 83 | 418,105.2,4700672,6000,3173.057739665719 84 | 423,172.8,4805168,6000,3176.957201665932 85 | 428,99.4,4805312,6000,3180.5294860906524 86 | 433,88.6,4805312,6000,3185.570349315892 87 | 438,177.0,4805312,6000,3170.6785446492318 88 | 444,113.8,4876896,6000,3176.436970250245 89 | 449,116.0,4876896,6000,3179.054230229279 90 | 454,156.4,4876896,6000,3202.2332494058787 91 | 459,102.6,4985296,6000,3177.678660014585 92 | 464,149.1,4985296,6000,3181.0583111192846 93 | 470,131.9,4987312,6000,3181.1542070436194 94 | 475,122.8,5053304,6000,3194.7446511832486 95 | 480,106.2,5053304,6000,3185.566925589214 96 | 485,165.1,5053304,6000,3181.7443948331543 97 | 491,106.6,5087920,6000,3188.073190394003 98 | 496,124.6,5087920,6000,3191.2625582433475 99 | 501,130.3,5087928,6000,3198.9455330377596 100 | 506,118.0,5094280,6000,3180.5744543834157 101 | 511,130.5,5098544,6000,3183.619167369955 102 | 516,163.9,5098544,6000,3186.3094436910014 103 | 522,111.6,5188124,6000,3189.272434490804 104 | 527,146.5,5321320,6000,3192.372668346587 105 | 532,149.2,5321320,6000,3185.25273689115 106 | 537,119.4,5321320,6000,3191.5597300316986 107 | 543,157.0,5321320,6000,3200.0065004546395 108 | 548,154.8,5321320,6000,3204.1640822265927 109 | 553,118.8,5180572,6000,3206.290589412976 110 | 558,123.0,5180572,6000,3207.53882635315 111 | 563,145.8,5181156,6000,3229.6742923126235 112 | 569,126.0,5227572,6000,3208.167796243694 113 | 574,149.5,5227572,6000,3210.6785508401626 114 | 579,128.6,5227572,6000,3217.187217997929 115 | 584,112.8,5227572,6000,3206.4658254155074 116 | 589,102.8,5227572,6000,3208.534012072424 117 | 595,182.4,5227580,6000,3209.0673478774547 118 | 600,106.8,5362596,6000,3211.761177680473 119 | 605,54.8,5362596,6000,3214.29872039279 120 | 610,15.8,5362596,1864,3195.94707805193 121 | 615,46.7,5362948,23,0 122 | -------------------------------------------------------------------------------- /results/v0.42.0/m5.large-website.js-10s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k6-benchmarks/be555f196c0161ef517972a0646dd365ba8a4578/results/v0.42.0/m5.large-website.js-10s.png -------------------------------------------------------------------------------- /results/v0.42.0/m5.large-website.js-10s.txt: -------------------------------------------------------------------------------- 1 | 2 | /\ |‾‾| /‾‾/ /‾‾/ 3 | /\ / \ | |/ / / / 4 | / \/ \ | ( / ‾‾\ 5 | / \ | |\ \ | (‾) | 6 | / __________ \ |__| \__\ \_____/ .io 7 | 8 | execution: local 9 | script: scripts/website.js 10 | output: - 11 | 12 | scenarios: (100.00%) 1 scenario, 6000 max VUs, 10m30s max duration (incl. graceful stop): 13 | * default: 6000 looping VUs for 10m0s (gracefulStop: 30s) 14 | 15 | 16 | Init [ 14% ] 0842/6000 VUs initialized 17 | default [ 0% ] 18 | 19 | Init [ 23% ] 1368/6000 VUs initialized 20 | default [ 0% ] 21 | 22 | Init [ 49% ] 2922/6000 VUs initialized 23 | default [ 0% ] 24 | 25 | Init [ 80% ] 4784/6000 VUs initialized 26 | default [ 0% ] 27 | 28 | running (00m00.1s), 1838/6000 VUs, 0 complete and 0 interrupted iterations 29 | default [ 0% ] 6000 VUs 00m00.1s/10m0s 30 | time="2023-02-01T10:45:19Z" level=warning msg="Could not get a VU from the buffer for 400ms" executor=constant-vus scenario=default 31 | 32 | running (00m01.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 33 | default [ 0% ] 6000 VUs 00m01.1s/10m0s 34 | 35 | running (00m02.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 36 | default [ 0% ] 6000 VUs 00m02.1s/10m0s 37 | 38 | running (00m03.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 39 | default [ 1% ] 6000 VUs 00m03.1s/10m0s 40 | 41 | running (00m04.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 42 | default [ 1% ] 6000 VUs 00m04.1s/10m0s 43 | 44 | running (00m05.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 45 | default [ 1% ] 6000 VUs 00m05.1s/10m0s 46 | 47 | running (00m06.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 48 | default [ 1% ] 6000 VUs 00m06.1s/10m0s 49 | 50 | running (00m07.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 51 | default [ 1% ] 6000 VUs 00m07.1s/10m0s 52 | 53 | running (00m08.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 54 | default [ 1% ] 6000 VUs 00m08.1s/10m0s 55 | 56 | running (00m09.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 57 | default [ 2% ] 6000 VUs 00m09.1s/10m0s 58 | 59 | running (00m10.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 60 | default [ 2% ] 6000 VUs 00m10.1s/10m0s 61 | 62 | running (00m11.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 63 | default [ 2% ] 6000 VUs 00m11.1s/10m0s 64 | 65 | running (00m12.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 66 | default [ 2% ] 6000 VUs 00m12.1s/10m0s 67 | 68 | running (00m13.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 69 | default [ 2% ] 6000 VUs 00m13.1s/10m0s 70 | 71 | running (00m14.1s), 6000/6000 VUs, 0 complete and 0 interrupted iterations 72 | default [ 2% ] 6000 VUs 00m14.1s/10m0s 73 | 74 | running (00m15.1s), 6000/6000 VUs, 11 complete and 0 interrupted iterations 75 | default [ 3% ] 6000 VUs 00m15.1s/10m0s 76 | 77 | running (00m16.1s), 6000/6000 VUs, 79 complete and 0 interrupted iterations 78 | default [ 3% ] 6000 VUs 00m16.1s/10m0s 79 | 80 | running (00m17.1s), 6000/6000 VUs, 988 complete and 0 interrupted iterations 81 | default [ 3% ] 6000 VUs 00m17.1s/10m0s 82 | 83 | running (00m18.1s), 6000/6000 VUs, 2808 complete and 0 interrupted iterations 84 | default [ 3% ] 6000 VUs 00m18.1s/10m0s 85 | 86 | running (00m19.1s), 6000/6000 VUs, 5978 complete and 0 interrupted iterations 87 | default [ 3% ] 6000 VUs 00m19.1s/10m0s 88 | 89 | running (00m20.1s), 6000/6000 VUs, 6000 complete and 0 interrupted iterations 90 | default [ 3% ] 6000 VUs 00m20.1s/10m0s 91 | 92 | running (00m21.1s), 6000/6000 VUs, 6000 complete and 0 interrupted iterations 93 | default [ 4% ] 6000 VUs 00m21.1s/10m0s 94 | 95 | running (00m22.1s), 6000/6000 VUs, 6000 complete and 0 interrupted iterations 96 | default [ 4% ] 6000 VUs 00m22.1s/10m0s 97 | 98 | running (00m23.1s), 6000/6000 VUs, 6000 complete and 0 interrupted iterations 99 | default [ 4% ] 6000 VUs 00m23.1s/10m0s 100 | 101 | running (00m24.1s), 6000/6000 VUs, 6000 complete and 0 interrupted iterations 102 | default [ 4% ] 6000 VUs 00m24.1s/10m0s 103 | 104 | running (00m25.1s), 6000/6000 VUs, 6000 complete and 0 interrupted iterations 105 | default [ 4% ] 6000 VUs 00m25.1s/10m0s 106 | 107 | running (00m26.1s), 6000/6000 VUs, 6068 complete and 0 interrupted iterations 108 | default [ 4% ] 6000 VUs 00m26.1s/10m0s 109 | 110 | running (00m27.1s), 6000/6000 VUs, 6739 complete and 0 interrupted iterations 111 | default [ 5% ] 6000 VUs 00m27.1s/10m0s 112 | 113 | running (00m28.1s), 6000/6000 VUs, 7982 complete and 0 interrupted iterations 114 | default [ 5% ] 6000 VUs 00m28.1s/10m0s 115 | 116 | running (00m29.1s), 6000/6000 VUs, 8247 complete and 0 interrupted iterations 117 | default [ 5% ] 6000 VUs 00m29.1s/10m0s 118 | 119 | running (00m30.1s), 6000/6000 VUs, 10778 complete and 0 interrupted iterations 120 | default [ 5% ] 6000 VUs 00m30.1s/10m0s 121 | 122 | running (00m31.1s), 6000/6000 VUs, 12000 complete and 0 interrupted iterations 123 | default [ 5% ] 6000 VUs 00m31.1s/10m0s 124 | 125 | running (00m32.1s), 6000/6000 VUs, 12000 complete and 0 interrupted iterations 126 | default [ 5% ] 6000 VUs 00m32.1s/10m0s 127 | 128 | running (00m33.1s), 6000/6000 VUs, 12000 complete and 0 interrupted iterations 129 | default [ 6% ] 6000 VUs 00m33.1s/10m0s 130 | 131 | running (00m34.1s), 6000/6000 VUs, 12000 complete and 0 interrupted iterations 132 | default [ 6% ] 6000 VUs 00m34.1s/10m0s 133 | 134 | running (00m35.1s), 6000/6000 VUs, 12000 complete and 0 interrupted iterations 135 | default [ 6% ] 6000 VUs 00m35.1s/10m0s 136 | 137 | running (00m36.1s), 6000/6000 VUs, 12000 complete and 0 interrupted iterations 138 | default [ 6% ] 6000 VUs 00m36.1s/10m0s 139 | 140 | running (00m37.1s), 6000/6000 VUs, 12510 complete and 0 interrupted iterations 141 | default [ 6% ] 6000 VUs 00m37.1s/10m0s 142 | 143 | running (00m38.1s), 6000/6000 VUs, 13448 complete and 0 interrupted iterations 144 | default [ 6% ] 6000 VUs 00m38.1s/10m0s 145 | 146 | running (00m39.1s), 6000/6000 VUs, 14201 complete and 0 interrupted iterations 147 | default [ 7% ] 6000 VUs 00m39.1s/10m0s 148 | 149 | running (00m40.1s), 6000/6000 VUs, 14945 complete and 0 interrupted iterations 150 | default [ 7% ] 6000 VUs 00m40.1s/10m0s 151 | 152 | running (00m41.1s), 6000/6000 VUs, 17045 complete and 0 interrupted iterations 153 | default [ 7% ] 6000 VUs 00m41.1s/10m0s 154 | 155 | running (00m42.1s), 6000/6000 VUs, 18000 complete and 0 interrupted iterations 156 | default [ 7% ] 6000 VUs 00m42.1s/10m0s 157 | 158 | running (00m43.1s), 6000/6000 VUs, 18000 complete and 0 interrupted iterations 159 | default [ 7% ] 6000 VUs 00m43.1s/10m0s 160 | 161 | running (00m44.1s), 6000/6000 VUs, 18000 complete and 0 interrupted iterations 162 | default [ 7% ] 6000 VUs 00m44.1s/10m0s 163 | 164 | running (00m45.1s), 6000/6000 VUs, 18000 complete and 0 interrupted iterations 165 | default [ 8% ] 6000 VUs 00m45.1s/10m0s 166 | 167 | running (00m46.1s), 6000/6000 VUs, 18000 complete and 0 interrupted iterations 168 | default [ 8% ] 6000 VUs 00m46.1s/10m0s 169 | 170 | running (00m47.1s), 6000/6000 VUs, 18376 complete and 0 interrupted iterations 171 | default [ 8% ] 6000 VUs 00m47.1s/10m0s 172 | 173 | running (00m48.1s), 6000/6000 VUs, 18702 complete and 0 interrupted iterations 174 | default [ 8% ] 6000 VUs 00m48.1s/10m0s 175 | 176 | running (00m49.1s), 6000/6000 VUs, 18764 complete and 0 interrupted iterations 177 | default [ 8% ] 6000 VUs 00m49.1s/10m0s 178 | 179 | running (00m50.1s), 6000/6000 VUs, 20131 complete and 0 interrupted iterations 180 | default [ 8% ] 6000 VUs 00m50.1s/10m0s 181 | 182 | running (00m51.1s), 6000/6000 VUs, 21792 complete and 0 interrupted iterations 183 | default [ 9% ] 6000 VUs 00m51.1s/10m0s 184 | 185 | running (00m52.1s), 6000/6000 VUs, 23445 complete and 0 interrupted iterations 186 | default [ 9% ] 6000 VUs 00m52.1s/10m0s 187 | 188 | running (00m53.1s), 6000/6000 VUs, 24000 complete and 0 interrupted iterations 189 | default [ 9% ] 6000 VUs 00m53.1s/10m0s 190 | 191 | running (00m54.1s), 6000/6000 VUs, 24000 complete and 0 interrupted iterations 192 | default [ 9% ] 6000 VUs 00m54.1s/10m0s 193 | 194 | running (00m55.1s), 6000/6000 VUs, 24000 complete and 0 interrupted iterations 195 | default [ 9% ] 6000 VUs 00m55.1s/10m0s 196 | 197 | running (00m56.1s), 6000/6000 VUs, 24000 complete and 0 interrupted iterations 198 | default [ 9% ] 6000 VUs 00m56.1s/10m0s 199 | 200 | running (00m57.1s), 6000/6000 VUs, 24000 complete and 0 interrupted iterations 201 | default [ 10% ] 6000 VUs 00m57.1s/10m0s 202 | 203 | running (00m58.1s), 6000/6000 VUs, 24000 complete and 0 interrupted iterations 204 | default [ 10% ] 6000 VUs 00m58.1s/10m0s 205 | 206 | running (00m59.1s), 6000/6000 VUs, 24754 complete and 0 interrupted iterations 207 | default [ 10% ] 6000 VUs 00m59.1s/10m0s 208 | 209 | running (01m00.1s), 6000/6000 VUs, 25569 complete and 0 interrupted iterations 210 | default [ 10% ] 6000 VUs 01m00.1s/10m0s 211 | 212 | running (01m01.1s), 6000/6000 VUs, 25638 complete and 0 interrupted iterations 213 | default [ 10% ] 6000 VUs 01m01.1s/10m0s 214 | 215 | running (01m02.1s), 6000/6000 VUs, 25957 complete and 0 interrupted iterations 216 | default [ 10% ] 6000 VUs 01m02.1s/10m0s 217 | 218 | running (01m03.1s), 6000/6000 VUs, 26375 complete and 0 interrupted iterations 219 | default [ 11% ] 6000 VUs 01m03.1s/10m0s 220 | 221 | running (01m04.1s), 6000/6000 VUs, 27649 complete and 0 interrupted iterations 222 | default [ 11% ] 6000 VUs 01m04.1s/10m0s 223 | 224 | running (01m05.1s), 6000/6000 VUs, 28926 complete and 0 interrupted iterations 225 | default [ 11% ] 6000 VUs 01m05.1s/10m0s 226 | 227 | running (01m06.1s), 6000/6000 VUs, 30000 complete and 0 interrupted iterations 228 | default [ 11% ] 6000 VUs 01m06.1s/10m0s 229 | 230 | running (01m07.1s), 6000/6000 VUs, 30000 complete and 0 interrupted iterations 231 | default [ 11% ] 6000 VUs 01m07.1s/10m0s 232 | 233 | running (01m08.1s), 6000/6000 VUs, 30000 complete and 0 interrupted iterations 234 | default [ 11% ] 6000 VUs 01m08.1s/10m0s 235 | 236 | running (01m09.1s), 6000/6000 VUs, 30002 complete and 0 interrupted iterations 237 | default [ 12% ] 6000 VUs 01m09.1s/10m0s 238 | 239 | running (01m10.1s), 6000/6000 VUs, 30002 complete and 0 interrupted iterations 240 | default [ 12% ] 6000 VUs 01m10.1s/10m0s 241 | 242 | running (01m11.1s), 6000/6000 VUs, 30002 complete and 0 interrupted iterations 243 | default [ 12% ] 6000 VUs 01m11.1s/10m0s 244 | 245 | running (01m12.1s), 6000/6000 VUs, 30002 complete and 0 interrupted iterations 246 | default [ 12% ] 6000 VUs 01m12.1s/10m0s 247 | 248 | running (01m13.1s), 6000/6000 VUs, 31783 complete and 0 interrupted iterations 249 | default [ 12% ] 6000 VUs 01m13.1s/10m0s 250 | 251 | running (01m14.1s), 6000/6000 VUs, 33544 complete and 0 interrupted iterations 252 | default [ 12% ] 6000 VUs 01m14.1s/10m0s 253 | 254 | running (01m15.1s), 6000/6000 VUs, 33839 complete and 0 interrupted iterations 255 | default [ 13% ] 6000 VUs 01m15.1s/10m0s 256 | 257 | running (01m16.1s), 6000/6000 VUs, 33888 complete and 0 interrupted iterations 258 | default [ 13% ] 6000 VUs 01m16.1s/10m0s 259 | 260 | running (01m17.1s), 6000/6000 VUs, 34438 complete and 0 interrupted iterations 261 | default [ 13% ] 6000 VUs 01m17.1s/10m0s 262 | 263 | running (01m18.1s), 6000/6000 VUs, 34795 complete and 0 interrupted iterations 264 | default [ 13% ] 6000 VUs 01m18.1s/10m0s 265 | 266 | running (01m19.1s), 6000/6000 VUs, 35382 complete and 0 interrupted iterations 267 | default [ 13% ] 6000 VUs 01m19.1s/10m0s 268 | 269 | running (01m20.1s), 6000/6000 VUs, 36002 complete and 0 interrupted iterations 270 | default [ 13% ] 6000 VUs 01m20.1s/10m0s 271 | 272 | running (01m21.1s), 6000/6000 VUs, 36002 complete and 0 interrupted iterations 273 | default [ 14% ] 6000 VUs 01m21.1s/10m0s 274 | 275 | running (01m22.1s), 6000/6000 VUs, 36002 complete and 0 interrupted iterations 276 | default [ 14% ] 6000 VUs 01m22.1s/10m0s 277 | 278 | running (01m23.1s), 6000/6000 VUs, 36131 complete and 0 interrupted iterations 279 | default [ 14% ] 6000 VUs 01m23.1s/10m0s 280 | 281 | running (01m24.1s), 6000/6000 VUs, 37485 complete and 0 interrupted iterations 282 | default [ 14% ] 6000 VUs 01m24.1s/10m0s 283 | 284 | running (01m25.1s), 6000/6000 VUs, 38185 complete and 0 interrupted iterations 285 | default [ 14% ] 6000 VUs 01m25.1s/10m0s 286 | 287 | running (01m26.1s), 6000/6000 VUs, 39867 complete and 0 interrupted iterations 288 | default [ 14% ] 6000 VUs 01m26.1s/10m0s 289 | 290 | running (01m27.1s), 6000/6000 VUs, 40270 complete and 0 interrupted iterations 291 | default [ 15% ] 6000 VUs 01m27.1s/10m0s 292 | 293 | running (01m28.1s), 6000/6000 VUs, 40767 complete and 0 interrupted iterations 294 | default [ 15% ] 6000 VUs 01m28.1s/10m0s 295 | 296 | running (01m29.1s), 6000/6000 VUs, 41057 complete and 0 interrupted iterations 297 | default [ 15% ] 6000 VUs 01m29.1s/10m0s 298 | 299 | running (01m30.1s), 6000/6000 VUs, 41523 complete and 0 interrupted iterations 300 | default [ 15% ] 6000 VUs 01m30.1s/10m0s 301 | 302 | running (01m31.1s), 6000/6000 VUs, 41995 complete and 0 interrupted iterations 303 | default [ 15% ] 6000 VUs 01m31.1s/10m0s 304 | 305 | running (01m32.1s), 6000/6000 VUs, 42002 complete and 0 interrupted iterations 306 | default [ 15% ] 6000 VUs 01m32.1s/10m0s 307 | 308 | running (01m33.1s), 6000/6000 VUs, 42115 complete and 0 interrupted iterations 309 | default [ 16% ] 6000 VUs 01m33.1s/10m0s 310 | 311 | running (01m34.1s), 6000/6000 VUs, 42946 complete and 0 interrupted iterations 312 | default [ 16% ] 6000 VUs 01m34.1s/10m0s 313 | 314 | running (01m35.1s), 6000/6000 VUs, 44158 complete and 0 interrupted iterations 315 | default [ 16% ] 6000 VUs 01m35.1s/10m0s 316 | 317 | running (01m36.1s), 6000/6000 VUs, 44417 complete and 0 interrupted iterations 318 | default [ 16% ] 6000 VUs 01m36.1s/10m0s 319 | 320 | running (01m37.1s), 6000/6000 VUs, 46146 complete and 0 interrupted iterations 321 | default [ 16% ] 6000 VUs 01m37.1s/10m0s 322 | 323 | running (01m38.1s), 6000/6000 VUs, 46742 complete and 0 interrupted iterations 324 | default [ 16% ] 6000 VUs 01m38.1s/10m0s 325 | 326 | running (01m39.1s), 6000/6000 VUs, 47020 complete and 0 interrupted iterations 327 | default [ 17% ] 6000 VUs 01m39.1s/10m0s 328 | 329 | running (01m40.1s), 6000/6000 VUs, 47061 complete and 0 interrupted iterations 330 | default [ 17% ] 6000 VUs 01m40.1s/10m0s 331 | 332 | running (01m41.1s), 6000/6000 VUs, 47110 complete and 0 interrupted iterations 333 | default [ 17% ] 6000 VUs 01m41.1s/10m0s 334 | 335 | running (01m42.1s), 6000/6000 VUs, 47159 complete and 0 interrupted iterations 336 | default [ 17% ] 6000 VUs 01m42.1s/10m0s 337 | 338 | running (01m43.1s), 6000/6000 VUs, 48002 complete and 0 interrupted iterations 339 | default [ 17% ] 6000 VUs 01m43.1s/10m0s 340 | 341 | running (01m44.1s), 6000/6000 VUs, 48684 complete and 0 interrupted iterations 342 | default [ 17% ] 6000 VUs 01m44.1s/10m0s 343 | 344 | running (01m45.1s), 6000/6000 VUs, 49253 complete and 0 interrupted iterations 345 | default [ 18% ] 6000 VUs 01m45.1s/10m0s 346 | 347 | running (01m46.1s), 6000/6000 VUs, 49418 complete and 0 interrupted iterations 348 | default [ 18% ] 6000 VUs 01m46.1s/10m0s 349 | 350 | running (01m47.1s), 6000/6000 VUs, 49951 complete and 0 interrupted iterations 351 | default [ 18% ] 6000 VUs 01m47.1s/10m0s 352 | 353 | running (01m48.1s), 6000/6000 VUs, 50857 complete and 0 interrupted iterations 354 | default [ 18% ] 6000 VUs 01m48.1s/10m0s 355 | 356 | running (01m49.1s), 6000/6000 VUs, 51800 complete and 0 interrupted iterations 357 | default [ 18% ] 6000 VUs 01m49.1s/10m0s 358 | 359 | running (01m50.1s), 6000/6000 VUs, 53054 complete and 0 interrupted iterations 360 | default [ 18% ] 6000 VUs 01m50.1s/10m0s 361 | 362 | running (01m51.1s), 6000/6000 VUs, 53084 complete and 0 interrupted iterations 363 | default [ 19% ] 6000 VUs 01m51.1s/10m0s 364 | 365 | running (01m52.1s), 6000/6000 VUs, 53149 complete and 0 interrupted iterations 366 | default [ 19% ] 6000 VUs 01m52.1s/10m0s 367 | 368 | running (01m53.1s), 6000/6000 VUs, 53529 complete and 0 interrupted iterations 369 | default [ 19% ] 6000 VUs 01m53.1s/10m0s 370 | 371 | running (01m54.1s), 6000/6000 VUs, 53599 complete and 0 interrupted iterations 372 | default [ 19% ] 6000 VUs 01m54.1s/10m0s 373 | 374 | running (01m55.1s), 6000/6000 VUs, 53703 complete and 0 interrupted iterations 375 | default [ 19% ] 6000 VUs 01m55.1s/10m0s 376 | 377 | running (01m56.1s), 6000/6000 VUs, 53829 complete and 0 interrupted iterations 378 | default [ 19% ] 6000 VUs 01m56.1s/10m0s 379 | 380 | running (01m57.1s), 6000/6000 VUs, 55951 complete and 0 interrupted iterations 381 | default [ 20% ] 6000 VUs 01m57.1s/10m0s 382 | 383 | running (01m58.1s), 6000/6000 VUs, 56787 complete and 0 interrupted iterations 384 | default [ 20% ] 6000 VUs 01m58.1s/10m0s 385 | 386 | running (01m59.1s), 6000/6000 VUs, 56854 complete and 0 interrupted iterations 387 | default [ 20% ] 6000 VUs 01m59.1s/10m0s 388 | 389 | running (02m00.1s), 6000/6000 VUs, 57042 complete and 0 interrupted iterations 390 | default [ 20% ] 6000 VUs 02m00.1s/10m0s 391 | 392 | running (02m01.1s), 6000/6000 VUs, 57159 complete and 0 interrupted iterations 393 | default [ 20% ] 6000 VUs 02m01.1s/10m0s 394 | 395 | running (02m02.1s), 6000/6000 VUs, 57754 complete and 0 interrupted iterations 396 | default [ 20% ] 6000 VUs 02m02.1s/10m0s 397 | 398 | running (02m03.1s), 6000/6000 VUs, 59177 complete and 0 interrupted iterations 399 | default [ 21% ] 6000 VUs 02m03.1s/10m0s 400 | 401 | running (02m04.1s), 6000/6000 VUs, 59479 complete and 0 interrupted iterations 402 | default [ 21% ] 6000 VUs 02m04.1s/10m0s 403 | 404 | running (02m05.1s), 6000/6000 VUs, 59702 complete and 0 interrupted iterations 405 | default [ 21% ] 6000 VUs 02m05.1s/10m0s 406 | 407 | running (02m06.1s), 6000/6000 VUs, 59713 complete and 0 interrupted iterations 408 | default [ 21% ] 6000 VUs 02m06.1s/10m0s 409 | 410 | running (02m07.1s), 6000/6000 VUs, 59997 complete and 0 interrupted iterations 411 | default [ 21% ] 6000 VUs 02m07.1s/10m0s 412 | 413 | running (02m08.1s), 6000/6000 VUs, 60314 complete and 0 interrupted iterations 414 | default [ 21% ] 6000 VUs 02m08.1s/10m0s 415 | 416 | running (02m09.1s), 6000/6000 VUs, 60327 complete and 0 interrupted iterations 417 | default [ 22% ] 6000 VUs 02m09.1s/10m0s 418 | 419 | running (02m10.1s), 6000/6000 VUs, 60864 complete and 0 interrupted iterations 420 | default [ 22% ] 6000 VUs 02m10.1s/10m0s 421 | 422 | running (02m11.1s), 6000/6000 VUs, 63143 complete and 0 interrupted iterations 423 | default [ 22% ] 6000 VUs 02m11.1s/10m0s 424 | 425 | running (02m12.1s), 6000/6000 VUs, 63740 complete and 0 interrupted iterations 426 | default [ 22% ] 6000 VUs 02m12.1s/10m0s 427 | 428 | running (02m13.1s), 6000/6000 VUs, 63921 complete and 0 interrupted iterations 429 | default [ 22% ] 6000 VUs 02m13.1s/10m0s 430 | 431 | running (02m14.1s), 6000/6000 VUs, 63948 complete and 0 interrupted iterations 432 | default [ 22% ] 6000 VUs 02m14.1s/10m0s 433 | 434 | running (02m15.1s), 6000/6000 VUs, 64354 complete and 0 interrupted iterations 435 | default [ 23% ] 6000 VUs 02m15.1s/10m0s 436 | 437 | running (02m16.1s), 6000/6000 VUs, 65302 complete and 0 interrupted iterations 438 | default [ 23% ] 6000 VUs 02m16.1s/10m0s 439 | 440 | running (02m17.1s), 6000/6000 VUs, 65973 complete and 0 interrupted iterations 441 | default [ 23% ] 6000 VUs 02m17.1s/10m0s 442 | 443 | running (02m18.1s), 6000/6000 VUs, 66252 complete and 0 interrupted iterations 444 | default [ 23% ] 6000 VUs 02m18.1s/10m0s 445 | 446 | running (02m19.1s), 6000/6000 VUs, 66323 complete and 0 interrupted iterations 447 | default [ 23% ] 6000 VUs 02m19.1s/10m0s 448 | 449 | running (02m20.1s), 6000/6000 VUs, 66762 complete and 0 interrupted iterations 450 | default [ 23% ] 6000 VUs 02m20.1s/10m0s 451 | 452 | running (02m21.1s), 6000/6000 VUs, 67453 complete and 0 interrupted iterations 453 | default [ 24% ] 6000 VUs 02m21.1s/10m0s 454 | 455 | running (02m22.1s), 6000/6000 VUs, 69022 complete and 0 interrupted iterations 456 | default [ 24% ] 6000 VUs 02m22.1s/10m0s 457 | 458 | running (02m23.1s), 6000/6000 VUs, 69862 complete and 0 interrupted iterations 459 | default [ 24% ] 6000 VUs 02m23.1s/10m0s 460 | 461 | running (02m24.1s), 6000/6000 VUs, 69948 complete and 0 interrupted iterations 462 | default [ 24% ] 6000 VUs 02m24.1s/10m0s 463 | 464 | running (02m25.1s), 6000/6000 VUs, 70181 complete and 0 interrupted iterations 465 | default [ 24% ] 6000 VUs 02m25.1s/10m0s 466 | 467 | running (02m26.1s), 6000/6000 VUs, 70643 complete and 0 interrupted iterations 468 | default [ 24% ] 6000 VUs 02m26.1s/10m0s 469 | 470 | running (02m27.1s), 6000/6000 VUs, 70835 complete and 0 interrupted iterations 471 | default [ 25% ] 6000 VUs 02m27.1s/10m0s 472 | 473 | running (02m28.1s), 6000/6000 VUs, 71222 complete and 0 interrupted iterations 474 | default [ 25% ] 6000 VUs 02m28.1s/10m0s 475 | 476 | running (02m29.1s), 6000/6000 VUs, 72323 complete and 0 interrupted iterations 477 | default [ 25% ] 6000 VUs 02m29.1s/10m0s 478 | 479 | running (02m30.1s), 6000/6000 VUs, 72516 complete and 0 interrupted iterations 480 | default [ 25% ] 6000 VUs 02m30.1s/10m0s 481 | 482 | running (02m31.1s), 6000/6000 VUs, 72898 complete and 0 interrupted iterations 483 | default [ 25% ] 6000 VUs 02m31.1s/10m0s 484 | 485 | running (02m32.1s), 6000/6000 VUs, 73153 complete and 0 interrupted iterations 486 | default [ 25% ] 6000 VUs 02m32.1s/10m0s 487 | 488 | running (02m33.1s), 6000/6000 VUs, 73530 complete and 0 interrupted iterations 489 | default [ 26% ] 6000 VUs 02m33.1s/10m0s 490 | 491 | running (02m34.1s), 6000/6000 VUs, 74455 complete and 0 interrupted iterations 492 | default [ 26% ] 6000 VUs 02m34.1s/10m0s 493 | 494 | running (02m35.1s), 6000/6000 VUs, 75917 complete and 0 interrupted iterations 495 | default [ 26% ] 6000 VUs 02m35.1s/10m0s 496 | 497 | running (02m36.1s), 6000/6000 VUs, 76587 complete and 0 interrupted iterations 498 | default [ 26% ] 6000 VUs 02m36.1s/10m0s 499 | 500 | running (02m37.1s), 6000/6000 VUs, 76826 complete and 0 interrupted iterations 501 | default [ 26% ] 6000 VUs 02m37.1s/10m0s 502 | 503 | running (02m38.1s), 6000/6000 VUs, 77101 complete and 0 interrupted iterations 504 | default [ 26% ] 6000 VUs 02m38.1s/10m0s 505 | 506 | running (02m39.1s), 6000/6000 VUs, 77329 complete and 0 interrupted iterations 507 | default [ 27% ] 6000 VUs 02m39.1s/10m0s 508 | 509 | running (02m40.1s), 6000/6000 VUs, 77329 complete and 0 interrupted iterations 510 | default [ 27% ] 6000 VUs 02m40.1s/10m0s 511 | 512 | running (02m41.1s), 6000/6000 VUs, 77329 complete and 0 interrupted iterations 513 | default [ 27% ] 6000 VUs 02m41.1s/10m0s 514 | 515 | running (02m42.1s), 6000/6000 VUs, 77406 complete and 0 interrupted iterations 516 | default [ 27% ] 6000 VUs 02m42.1s/10m0s 517 | 518 | running (02m43.1s), 6000/6000 VUs, 79227 complete and 0 interrupted iterations 519 | default [ 27% ] 6000 VUs 02m43.1s/10m0s 520 | 521 | running (02m44.1s), 6000/6000 VUs, 80287 complete and 0 interrupted iterations 522 | default [ 27% ] 6000 VUs 02m44.1s/10m0s 523 | 524 | running (02m45.1s), 6000/6000 VUs, 80488 complete and 0 interrupted iterations 525 | default [ 28% ] 6000 VUs 02m45.1s/10m0s 526 | 527 | running (02m46.1s), 6000/6000 VUs, 80677 complete and 0 interrupted iterations 528 | default [ 28% ] 6000 VUs 02m46.1s/10m0s 529 | 530 | running (02m47.1s), 6000/6000 VUs, 81133 complete and 0 interrupted iterations 531 | default [ 28% ] 6000 VUs 02m47.1s/10m0s 532 | 533 | running (02m48.1s), 6000/6000 VUs, 82082 complete and 0 interrupted iterations 534 | default [ 28% ] 6000 VUs 02m48.1s/10m0s 535 | 536 | running (02m49.2s), 6000/6000 VUs, 83148 complete and 0 interrupted iterations 537 | default [ 28% ] 6000 VUs 02m49.2s/10m0s 538 | 539 | running (02m50.1s), 6000/6000 VUs, 83205 complete and 0 interrupted iterations 540 | default [ 28% ] 6000 VUs 02m50.1s/10m0s 541 | 542 | running (02m51.1s), 6000/6000 VUs, 83329 complete and 0 interrupted iterations 543 | default [ 29% ] 6000 VUs 02m51.1s/10m0s 544 | 545 | running (02m52.1s), 6000/6000 VUs, 83377 complete and 0 interrupted iterations 546 | default [ 29% ] 6000 VUs 02m52.1s/10m0s 547 | 548 | running (02m53.1s), 6000/6000 VUs, 83599 complete and 0 interrupted iterations 549 | default [ 29% ] 6000 VUs 02m53.1s/10m0s 550 | 551 | running (02m54.1s), 6000/6000 VUs, 84106 complete and 0 interrupted iterations 552 | default [ 29% ] 6000 VUs 02m54.1s/10m0s 553 | 554 | running (02m55.1s), 6000/6000 VUs, 84372 complete and 0 interrupted iterations 555 | default [ 29% ] 6000 VUs 02m55.1s/10m0s 556 | 557 | running (02m56.1s), 6000/6000 VUs, 86041 complete and 0 interrupted iterations 558 | default [ 29% ] 6000 VUs 02m56.1s/10m0s 559 | 560 | running (02m57.1s), 6000/6000 VUs, 87065 complete and 0 interrupted iterations 561 | default [ 30% ] 6000 VUs 02m57.1s/10m0s 562 | 563 | running (02m58.1s), 6000/6000 VUs, 88070 complete and 0 interrupted iterations 564 | default [ 30% ] 6000 VUs 02m58.1s/10m0s 565 | 566 | running (02m59.1s), 6000/6000 VUs, 88260 complete and 0 interrupted iterations 567 | default [ 30% ] 6000 VUs 02m59.1s/10m0s 568 | 569 | running (03m00.1s), 6000/6000 VUs, 88288 complete and 0 interrupted iterations 570 | default [ 30% ] 6000 VUs 03m00.1s/10m0s 571 | 572 | running (03m01.1s), 6000/6000 VUs, 88850 complete and 0 interrupted iterations 573 | default [ 30% ] 6000 VUs 03m01.1s/10m0s 574 | 575 | running (03m02.1s), 6000/6000 VUs, 89329 complete and 0 interrupted iterations 576 | default [ 30% ] 6000 VUs 03m02.1s/10m0s 577 | 578 | running (03m03.1s), 6000/6000 VUs, 89539 complete and 0 interrupted iterations 579 | default [ 31% ] 6000 VUs 03m03.1s/10m0s 580 | 581 | running (03m04.1s), 6000/6000 VUs, 90089 complete and 0 interrupted iterations 582 | default [ 31% ] 6000 VUs 03m04.1s/10m0s 583 | 584 | running (03m05.1s), 6000/6000 VUs, 90372 complete and 0 interrupted iterations 585 | default [ 31% ] 6000 VUs 03m05.1s/10m0s 586 | 587 | running (03m06.1s), 6000/6000 VUs, 91128 complete and 0 interrupted iterations 588 | default [ 31% ] 6000 VUs 03m06.1s/10m0s 589 | 590 | running (03m07.1s), 6000/6000 VUs, 92875 complete and 0 interrupted iterations 591 | default [ 31% ] 6000 VUs 03m07.1s/10m0s 592 | 593 | running (03m08.1s), 6000/6000 VUs, 94040 complete and 0 interrupted iterations 594 | default [ 31% ] 6000 VUs 03m08.1s/10m0s 595 | 596 | running (03m09.1s), 6000/6000 VUs, 94207 complete and 0 interrupted iterations 597 | default [ 32% ] 6000 VUs 03m09.1s/10m0s 598 | 599 | running (03m10.1s), 6000/6000 VUs, 94288 complete and 0 interrupted iterations 600 | default [ 32% ] 6000 VUs 03m10.1s/10m0s 601 | 602 | running (03m11.1s), 6000/6000 VUs, 94831 complete and 0 interrupted iterations 603 | default [ 32% ] 6000 VUs 03m11.1s/10m0s 604 | 605 | running (03m12.1s), 6000/6000 VUs, 95148 complete and 0 interrupted iterations 606 | default [ 32% ] 6000 VUs 03m12.1s/10m0s 607 | 608 | running (03m13.1s), 6000/6000 VUs, 95527 complete and 0 interrupted iterations 609 | default [ 32% ] 6000 VUs 03m13.1s/10m0s 610 | 611 | running (03m14.1s), 6000/6000 VUs, 95977 complete and 0 interrupted iterations 612 | default [ 32% ] 6000 VUs 03m14.1s/10m0s 613 | 614 | running (03m15.1s), 6000/6000 VUs, 96368 complete and 0 interrupted iterations 615 | default [ 33% ] 6000 VUs 03m15.1s/10m0s 616 | 617 | running (03m16.1s), 6000/6000 VUs, 96909 complete and 0 interrupted iterations 618 | default [ 33% ] 6000 VUs 03m16.1s/10m0s 619 | 620 | running (03m17.2s), 6000/6000 VUs, 98068 complete and 0 interrupted iterations 621 | default [ 33% ] 6000 VUs 03m17.2s/10m0s 622 | 623 | running (03m18.1s), 6000/6000 VUs, 99951 complete and 0 interrupted iterations 624 | default [ 33% ] 6000 VUs 03m18.1s/10m0s 625 | 626 | running (03m19.1s), 6000/6000 VUs, 100194 complete and 0 interrupted iterations 627 | default [ 33% ] 6000 VUs 03m19.1s/10m0s 628 | 629 | running (03m20.1s), 6000/6000 VUs, 100286 complete and 0 interrupted iterations 630 | default [ 33% ] 6000 VUs 03m20.1s/10m0s 631 | 632 | running (03m21.1s), 6000/6000 VUs, 100489 complete and 0 interrupted iterations 633 | default [ 34% ] 6000 VUs 03m21.1s/10m0s 634 | 635 | running (03m22.1s), 6000/6000 VUs, 101103 complete and 0 interrupted iterations 636 | default [ 34% ] 6000 VUs 03m22.1s/10m0s 637 | 638 | running (03m23.1s), 6000/6000 VUs, 101107 complete and 0 interrupted iterations 639 | default [ 34% ] 6000 VUs 03m23.1s/10m0s 640 | 641 | running (03m24.1s), 6000/6000 VUs, 101133 complete and 0 interrupted iterations 642 | default [ 34% ] 6000 VUs 03m24.1s/10m0s 643 | 644 | running (03m25.1s), 6000/6000 VUs, 101159 complete and 0 interrupted iterations 645 | default [ 34% ] 6000 VUs 03m25.1s/10m0s 646 | 647 | running (03m26.1s), 6000/6000 VUs, 102849 complete and 0 interrupted iterations 648 | default [ 34% ] 6000 VUs 03m26.1s/10m0s 649 | 650 | running (03m27.1s), 6000/6000 VUs, 103648 complete and 0 interrupted iterations 651 | default [ 35% ] 6000 VUs 03m27.1s/10m0s 652 | 653 | running (03m28.1s), 6000/6000 VUs, 103901 complete and 0 interrupted iterations 654 | default [ 35% ] 6000 VUs 03m28.1s/10m0s 655 | 656 | running (03m29.1s), 6000/6000 VUs, 104089 complete and 0 interrupted iterations 657 | default [ 35% ] 6000 VUs 03m29.1s/10m0s 658 | 659 | running (03m30.1s), 6000/6000 VUs, 104486 complete and 0 interrupted iterations 660 | default [ 35% ] 6000 VUs 03m30.1s/10m0s 661 | 662 | running (03m31.1s), 6000/6000 VUs, 106156 complete and 0 interrupted iterations 663 | default [ 35% ] 6000 VUs 03m31.1s/10m0s 664 | 665 | running (03m32.1s), 6000/6000 VUs, 106547 complete and 0 interrupted iterations 666 | default [ 35% ] 6000 VUs 03m32.1s/10m0s 667 | 668 | running (03m33.1s), 6000/6000 VUs, 107107 complete and 0 interrupted iterations 669 | default [ 36% ] 6000 VUs 03m33.1s/10m0s 670 | 671 | running (03m34.1s), 6000/6000 VUs, 107133 complete and 0 interrupted iterations 672 | default [ 36% ] 6000 VUs 03m34.1s/10m0s 673 | 674 | running (03m35.1s), 6000/6000 VUs, 107148 complete and 0 interrupted iterations 675 | default [ 36% ] 6000 VUs 03m35.1s/10m0s 676 | 677 | running (03m36.1s), 6000/6000 VUs, 107229 complete and 0 interrupted iterations 678 | default [ 36% ] 6000 VUs 03m36.1s/10m0s 679 | 680 | running (03m37.1s), 6000/6000 VUs, 107372 complete and 0 interrupted iterations 681 | default [ 36% ] 6000 VUs 03m37.1s/10m0s 682 | 683 | running (03m38.1s), 6000/6000 VUs, 107631 complete and 0 interrupted iterations 684 | default [ 36% ] 6000 VUs 03m38.1s/10m0s 685 | 686 | running (03m39.1s), 6000/6000 VUs, 110076 complete and 0 interrupted iterations 687 | default [ 37% ] 6000 VUs 03m39.1s/10m0s 688 | 689 | running (03m40.1s), 6000/6000 VUs, 110223 complete and 0 interrupted iterations 690 | default [ 37% ] 6000 VUs 03m40.1s/10m0s 691 | 692 | running (03m41.1s), 6000/6000 VUs, 111604 complete and 0 interrupted iterations 693 | default [ 37% ] 6000 VUs 03m41.1s/10m0s 694 | 695 | running (03m42.1s), 6000/6000 VUs, 111960 complete and 0 interrupted iterations 696 | default [ 37% ] 6000 VUs 03m42.1s/10m0s 697 | 698 | running (03m43.1s), 6000/6000 VUs, 112320 complete and 0 interrupted iterations 699 | default [ 37% ] 6000 VUs 03m43.1s/10m0s 700 | 701 | running (03m44.1s), 6000/6000 VUs, 112540 complete and 0 interrupted iterations 702 | default [ 37% ] 6000 VUs 03m44.1s/10m0s 703 | 704 | running (03m45.1s), 6000/6000 VUs, 113148 complete and 0 interrupted iterations 705 | default [ 38% ] 6000 VUs 03m45.1s/10m0s 706 | 707 | running (03m46.1s), 6000/6000 VUs, 113207 complete and 0 interrupted iterations 708 | default [ 38% ] 6000 VUs 03m46.1s/10m0s 709 | 710 | running (03m47.1s), 6000/6000 VUs, 113361 complete and 0 interrupted iterations 711 | default [ 38% ] 6000 VUs 03m47.1s/10m0s 712 | 713 | running (03m48.1s), 6000/6000 VUs, 113622 complete and 0 interrupted iterations 714 | default [ 38% ] 6000 VUs 03m48.1s/10m0s 715 | 716 | running (03m49.1s), 6000/6000 VUs, 114592 complete and 0 interrupted iterations 717 | default [ 38% ] 6000 VUs 03m49.1s/10m0s 718 | 719 | running (03m50.1s), 6000/6000 VUs, 116185 complete and 0 interrupted iterations 720 | default [ 38% ] 6000 VUs 03m50.1s/10m0s 721 | 722 | running (03m51.1s), 6000/6000 VUs, 117046 complete and 0 interrupted iterations 723 | default [ 39% ] 6000 VUs 03m51.1s/10m0s 724 | 725 | running (03m52.1s), 6000/6000 VUs, 117951 complete and 0 interrupted iterations 726 | default [ 39% ] 6000 VUs 03m52.1s/10m0s 727 | 728 | running (03m53.1s), 6000/6000 VUs, 118218 complete and 0 interrupted iterations 729 | default [ 39% ] 6000 VUs 03m53.1s/10m0s 730 | 731 | running (03m54.1s), 6000/6000 VUs, 118525 complete and 0 interrupted iterations 732 | default [ 39% ] 6000 VUs 03m54.1s/10m0s 733 | 734 | running (03m55.1s), 6000/6000 VUs, 118605 complete and 0 interrupted iterations 735 | default [ 39% ] 6000 VUs 03m55.1s/10m0s 736 | 737 | running (03m56.1s), 6000/6000 VUs, 119159 complete and 0 interrupted iterations 738 | default [ 39% ] 6000 VUs 03m56.1s/10m0s 739 | 740 | running (03m57.1s), 6000/6000 VUs, 119361 complete and 0 interrupted iterations 741 | default [ 40% ] 6000 VUs 03m57.1s/10m0s 742 | 743 | running (03m58.1s), 6000/6000 VUs, 119616 complete and 0 interrupted iterations 744 | default [ 40% ] 6000 VUs 03m58.1s/10m0s 745 | 746 | running (03m59.1s), 6000/6000 VUs, 120390 complete and 0 interrupted iterations 747 | default [ 40% ] 6000 VUs 03m59.1s/10m0s 748 | 749 | running (04m00.1s), 6000/6000 VUs, 121324 complete and 0 interrupted iterations 750 | default [ 40% ] 6000 VUs 04m00.1s/10m0s 751 | 752 | running (04m01.1s), 6000/6000 VUs, 122533 complete and 0 interrupted iterations 753 | default [ 40% ] 6000 VUs 04m01.1s/10m0s 754 | 755 | running (04m02.1s), 6000/6000 VUs, 123635 complete and 0 interrupted iterations 756 | default [ 40% ] 6000 VUs 04m02.1s/10m0s 757 | 758 | running (04m03.1s), 6000/6000 VUs, 124123 complete and 0 interrupted iterations 759 | default [ 41% ] 6000 VUs 04m03.1s/10m0s 760 | 761 | running (04m04.1s), 6000/6000 VUs, 124474 complete and 0 interrupted iterations 762 | default [ 41% ] 6000 VUs 04m04.1s/10m0s 763 | 764 | running (04m05.1s), 6000/6000 VUs, 124539 complete and 0 interrupted iterations 765 | default [ 41% ] 6000 VUs 04m05.1s/10m0s 766 | 767 | running (04m06.1s), 6000/6000 VUs, 124572 complete and 0 interrupted iterations 768 | default [ 41% ] 6000 VUs 04m06.1s/10m0s 769 | 770 | running (04m07.1s), 6000/6000 VUs, 124628 complete and 0 interrupted iterations 771 | default [ 41% ] 6000 VUs 04m07.1s/10m0s 772 | 773 | running (04m08.1s), 6000/6000 VUs, 125228 complete and 0 interrupted iterations 774 | default [ 41% ] 6000 VUs 04m08.1s/10m0s 775 | 776 | running (04m09.1s), 6000/6000 VUs, 126019 complete and 0 interrupted iterations 777 | default [ 42% ] 6000 VUs 04m09.1s/10m0s 778 | 779 | running (04m10.1s), 6000/6000 VUs, 126695 complete and 0 interrupted iterations 780 | default [ 42% ] 6000 VUs 04m10.1s/10m0s 781 | 782 | running (04m11.1s), 6000/6000 VUs, 127328 complete and 0 interrupted iterations 783 | default [ 42% ] 6000 VUs 04m11.1s/10m0s 784 | 785 | running (04m12.1s), 6000/6000 VUs, 127537 complete and 0 interrupted iterations 786 | default [ 42% ] 6000 VUs 04m12.1s/10m0s 787 | 788 | running (04m13.1s), 6000/6000 VUs, 128566 complete and 0 interrupted iterations 789 | default [ 42% ] 6000 VUs 04m13.1s/10m0s 790 | 791 | running (04m14.1s), 6000/6000 VUs, 130037 complete and 0 interrupted iterations 792 | default [ 42% ] 6000 VUs 04m14.1s/10m0s 793 | 794 | running (04m15.1s), 6000/6000 VUs, 130537 complete and 0 interrupted iterations 795 | default [ 43% ] 6000 VUs 04m15.1s/10m0s 796 | 797 | running (04m16.1s), 6000/6000 VUs, 130572 complete and 0 interrupted iterations 798 | default [ 43% ] 6000 VUs 04m16.1s/10m0s 799 | 800 | running (04m17.1s), 6000/6000 VUs, 130624 complete and 0 interrupted iterations 801 | default [ 43% ] 6000 VUs 04m17.1s/10m0s 802 | 803 | running (04m18.1s), 6000/6000 VUs, 130768 complete and 0 interrupted iterations 804 | default [ 43% ] 6000 VUs 04m18.1s/10m0s 805 | 806 | running (04m19.1s), 6000/6000 VUs, 131046 complete and 0 interrupted iterations 807 | default [ 43% ] 6000 VUs 04m19.1s/10m0s 808 | 809 | running (04m20.1s), 6000/6000 VUs, 131097 complete and 0 interrupted iterations 810 | default [ 43% ] 6000 VUs 04m20.1s/10m0s 811 | 812 | running (04m21.1s), 6000/6000 VUs, 131146 complete and 0 interrupted iterations 813 | default [ 44% ] 6000 VUs 04m21.1s/10m0s 814 | 815 | running (04m22.1s), 6000/6000 VUs, 133387 complete and 0 interrupted iterations 816 | default [ 44% ] 6000 VUs 04m22.1s/10m0s 817 | 818 | running (04m23.1s), 6000/6000 VUs, 134457 complete and 0 interrupted iterations 819 | default [ 44% ] 6000 VUs 04m23.1s/10m0s 820 | 821 | running (04m24.1s), 6000/6000 VUs, 134970 complete and 0 interrupted iterations 822 | default [ 44% ] 6000 VUs 04m24.1s/10m0s 823 | 824 | running (04m25.1s), 6000/6000 VUs, 135048 complete and 0 interrupted iterations 825 | default [ 44% ] 6000 VUs 04m25.1s/10m0s 826 | 827 | running (04m26.1s), 6000/6000 VUs, 135734 complete and 0 interrupted iterations 828 | default [ 44% ] 6000 VUs 04m26.1s/10m0s 829 | 830 | running (04m27.1s), 6000/6000 VUs, 136336 complete and 0 interrupted iterations 831 | default [ 45% ] 6000 VUs 04m27.1s/10m0s 832 | 833 | running (04m28.1s), 6000/6000 VUs, 136628 complete and 0 interrupted iterations 834 | default [ 45% ] 6000 VUs 04m28.1s/10m0s 835 | 836 | running (04m29.1s), 6000/6000 VUs, 137037 complete and 0 interrupted iterations 837 | default [ 45% ] 6000 VUs 04m29.1s/10m0s 838 | 839 | running (04m30.1s), 6000/6000 VUs, 137061 complete and 0 interrupted iterations 840 | default [ 45% ] 6000 VUs 04m30.1s/10m0s 841 | 842 | running (04m31.1s), 6000/6000 VUs, 137110 complete and 0 interrupted iterations 843 | default [ 45% ] 6000 VUs 04m31.1s/10m0s 844 | 845 | running (04m32.1s), 6000/6000 VUs, 137558 complete and 0 interrupted iterations 846 | default [ 45% ] 6000 VUs 04m32.1s/10m0s 847 | 848 | running (04m33.1s), 6000/6000 VUs, 139831 complete and 0 interrupted iterations 849 | default [ 46% ] 6000 VUs 04m33.1s/10m0s 850 | 851 | running (04m34.1s), 6000/6000 VUs, 140968 complete and 0 interrupted iterations 852 | default [ 46% ] 6000 VUs 04m34.1s/10m0s 853 | 854 | running (04m35.1s), 6000/6000 VUs, 141006 complete and 0 interrupted iterations 855 | default [ 46% ] 6000 VUs 04m35.1s/10m0s 856 | 857 | running (04m36.1s), 6000/6000 VUs, 141387 complete and 0 interrupted iterations 858 | default [ 46% ] 6000 VUs 04m36.1s/10m0s 859 | 860 | running (04m37.1s), 6000/6000 VUs, 142333 complete and 0 interrupted iterations 861 | default [ 46% ] 6000 VUs 04m37.1s/10m0s 862 | 863 | running (04m38.1s), 6000/6000 VUs, 142512 complete and 0 interrupted iterations 864 | default [ 46% ] 6000 VUs 04m38.1s/10m0s 865 | 866 | running (04m39.1s), 6000/6000 VUs, 142849 complete and 0 interrupted iterations 867 | default [ 47% ] 6000 VUs 04m39.1s/10m0s 868 | 869 | running (04m40.1s), 6000/6000 VUs, 143060 complete and 0 interrupted iterations 870 | default [ 47% ] 6000 VUs 04m40.1s/10m0s 871 | 872 | running (04m41.1s), 6000/6000 VUs, 143108 complete and 0 interrupted iterations 873 | default [ 47% ] 6000 VUs 04m41.1s/10m0s 874 | 875 | running (04m42.1s), 6000/6000 VUs, 143520 complete and 0 interrupted iterations 876 | default [ 47% ] 6000 VUs 04m42.1s/10m0s 877 | 878 | running (04m43.1s), 6000/6000 VUs, 144422 complete and 0 interrupted iterations 879 | default [ 47% ] 6000 VUs 04m43.1s/10m0s 880 | 881 | running (04m44.1s), 6000/6000 VUs, 146069 complete and 0 interrupted iterations 882 | default [ 47% ] 6000 VUs 04m44.1s/10m0s 883 | 884 | running (04m45.1s), 6000/6000 VUs, 147006 complete and 0 interrupted iterations 885 | default [ 48% ] 6000 VUs 04m45.1s/10m0s 886 | 887 | running (04m46.1s), 6000/6000 VUs, 147262 complete and 0 interrupted iterations 888 | default [ 48% ] 6000 VUs 04m46.1s/10m0s 889 | 890 | running (04m47.1s), 6000/6000 VUs, 148331 complete and 0 interrupted iterations 891 | default [ 48% ] 6000 VUs 04m47.1s/10m0s 892 | 893 | running (04m48.1s), 6000/6000 VUs, 148376 complete and 0 interrupted iterations 894 | default [ 48% ] 6000 VUs 04m48.1s/10m0s 895 | 896 | running (04m49.1s), 6000/6000 VUs, 148545 complete and 0 interrupted iterations 897 | default [ 48% ] 6000 VUs 04m49.1s/10m0s 898 | 899 | running (04m50.1s), 6000/6000 VUs, 149059 complete and 0 interrupted iterations 900 | default [ 48% ] 6000 VUs 04m50.1s/10m0s 901 | 902 | running (04m51.1s), 6000/6000 VUs, 149108 complete and 0 interrupted iterations 903 | default [ 49% ] 6000 VUs 04m51.1s/10m0s 904 | 905 | running (04m52.1s), 6000/6000 VUs, 149443 complete and 0 interrupted iterations 906 | default [ 49% ] 6000 VUs 04m52.1s/10m0s 907 | 908 | running (04m53.1s), 6000/6000 VUs, 149865 complete and 0 interrupted iterations 909 | default [ 49% ] 6000 VUs 04m53.1s/10m0s 910 | 911 | running (04m54.1s), 6000/6000 VUs, 151640 complete and 0 interrupted iterations 912 | default [ 49% ] 6000 VUs 04m54.1s/10m0s 913 | 914 | running (04m55.1s), 6000/6000 VUs, 153006 complete and 0 interrupted iterations 915 | default [ 49% ] 6000 VUs 04m55.1s/10m0s 916 | 917 | running (04m56.1s), 6000/6000 VUs, 153237 complete and 0 interrupted iterations 918 | default [ 49% ] 6000 VUs 04m56.1s/10m0s 919 | 920 | running (04m57.1s), 6000/6000 VUs, 154245 complete and 0 interrupted iterations 921 | default [ 50% ] 6000 VUs 04m57.1s/10m0s 922 | 923 | running (04m58.1s), 6000/6000 VUs, 154372 complete and 0 interrupted iterations 924 | default [ 50% ] 6000 VUs 04m58.1s/10m0s 925 | 926 | running (04m59.1s), 6000/6000 VUs, 154538 complete and 0 interrupted iterations 927 | default [ 50% ] 6000 VUs 04m59.1s/10m0s 928 | 929 | running (05m00.1s), 6000/6000 VUs, 154802 complete and 0 interrupted iterations 930 | default [ 50% ] 6000 VUs 05m00.1s/10m0s 931 | 932 | running (05m01.1s), 6000/6000 VUs, 155108 complete and 0 interrupted iterations 933 | default [ 50% ] 6000 VUs 05m01.1s/10m0s 934 | 935 | running (05m02.1s), 6000/6000 VUs, 155306 complete and 0 interrupted iterations 936 | default [ 50% ] 6000 VUs 05m02.1s/10m0s 937 | 938 | running (05m03.1s), 6000/6000 VUs, 155704 complete and 0 interrupted iterations 939 | default [ 51% ] 6000 VUs 05m03.1s/10m0s 940 | 941 | running (05m04.2s), 6000/6000 VUs, 157060 complete and 0 interrupted iterations 942 | default [ 51% ] 6000 VUs 05m04.2s/10m0s 943 | 944 | running (05m05.1s), 6000/6000 VUs, 158722 complete and 0 interrupted iterations 945 | default [ 51% ] 6000 VUs 05m05.1s/10m0s 946 | 947 | running (05m06.1s), 6000/6000 VUs, 159045 complete and 0 interrupted iterations 948 | default [ 51% ] 6000 VUs 05m06.1s/10m0s 949 | 950 | running (05m07.1s), 6000/6000 VUs, 160032 complete and 0 interrupted iterations 951 | default [ 51% ] 6000 VUs 05m07.1s/10m0s 952 | 953 | running (05m08.1s), 6000/6000 VUs, 160368 complete and 0 interrupted iterations 954 | default [ 51% ] 6000 VUs 05m08.1s/10m0s 955 | 956 | running (05m09.1s), 6000/6000 VUs, 160373 complete and 0 interrupted iterations 957 | default [ 52% ] 6000 VUs 05m09.1s/10m0s 958 | 959 | running (05m10.1s), 6000/6000 VUs, 160376 complete and 0 interrupted iterations 960 | default [ 52% ] 6000 VUs 05m10.1s/10m0s 961 | 962 | running (05m11.1s), 6000/6000 VUs, 160379 complete and 0 interrupted iterations 963 | default [ 52% ] 6000 VUs 05m11.1s/10m0s 964 | 965 | running (05m12.1s), 6000/6000 VUs, 160465 complete and 0 interrupted iterations 966 | default [ 52% ] 6000 VUs 05m12.1s/10m0s 967 | 968 | running (05m13.1s), 6000/6000 VUs, 161671 complete and 0 interrupted iterations 969 | default [ 52% ] 6000 VUs 05m13.1s/10m0s 970 | 971 | running (05m14.1s), 6000/6000 VUs, 161877 complete and 0 interrupted iterations 972 | default [ 52% ] 6000 VUs 05m14.1s/10m0s 973 | 974 | running (05m15.1s), 6000/6000 VUs, 161966 complete and 0 interrupted iterations 975 | default [ 53% ] 6000 VUs 05m15.1s/10m0s 976 | 977 | running (05m16.1s), 6000/6000 VUs, 162116 complete and 0 interrupted iterations 978 | default [ 53% ] 6000 VUs 05m16.1s/10m0s 979 | 980 | running (05m17.1s), 6000/6000 VUs, 163521 complete and 0 interrupted iterations 981 | default [ 53% ] 6000 VUs 05m17.1s/10m0s 982 | 983 | running (05m18.1s), 6000/6000 VUs, 165174 complete and 0 interrupted iterations 984 | default [ 53% ] 6000 VUs 05m18.1s/10m0s 985 | 986 | running (05m19.1s), 6000/6000 VUs, 166371 complete and 0 interrupted iterations 987 | default [ 53% ] 6000 VUs 05m19.1s/10m0s 988 | 989 | running (05m20.1s), 6000/6000 VUs, 166374 complete and 0 interrupted iterations 990 | default [ 53% ] 6000 VUs 05m20.1s/10m0s 991 | 992 | running (05m21.1s), 6000/6000 VUs, 166376 complete and 0 interrupted iterations 993 | default [ 54% ] 6000 VUs 05m21.1s/10m0s 994 | 995 | running (05m22.1s), 6000/6000 VUs, 166405 complete and 0 interrupted iterations 996 | default [ 54% ] 6000 VUs 05m22.1s/10m0s 997 | 998 | running (05m23.1s), 6000/6000 VUs, 166469 complete and 0 interrupted iterations 999 | default [ 54% ] 6000 VUs 05m23.1s/10m0s 1000 | 1001 | running (05m24.1s), 6000/6000 VUs, 166475 complete and 0 interrupted iterations 1002 | default [ 54% ] 6000 VUs 05m24.1s/10m0s 1003 | 1004 | running (05m25.1s), 6000/6000 VUs, 166500 complete and 0 interrupted iterations 1005 | default [ 54% ] 6000 VUs 05m25.1s/10m0s 1006 | 1007 | running (05m26.1s), 6000/6000 VUs, 167862 complete and 0 interrupted iterations 1008 | default [ 54% ] 6000 VUs 05m26.1s/10m0s 1009 | 1010 | running (05m27.1s), 6000/6000 VUs, 168914 complete and 0 interrupted iterations 1011 | default [ 55% ] 6000 VUs 05m27.1s/10m0s 1012 | 1013 | running (05m28.1s), 6000/6000 VUs, 170120 complete and 0 interrupted iterations 1014 | default [ 55% ] 6000 VUs 05m28.1s/10m0s 1015 | 1016 | running (05m29.1s), 6000/6000 VUs, 170233 complete and 0 interrupted iterations 1017 | default [ 55% ] 6000 VUs 05m29.1s/10m0s 1018 | 1019 | running (05m30.1s), 6000/6000 VUs, 170658 complete and 0 interrupted iterations 1020 | default [ 55% ] 6000 VUs 05m30.1s/10m0s 1021 | 1022 | running (05m31.1s), 6000/6000 VUs, 171609 complete and 0 interrupted iterations 1023 | default [ 55% ] 6000 VUs 05m31.1s/10m0s 1024 | 1025 | running (05m32.1s), 6000/6000 VUs, 172380 complete and 0 interrupted iterations 1026 | default [ 55% ] 6000 VUs 05m32.1s/10m0s 1027 | 1028 | running (05m33.1s), 6000/6000 VUs, 172468 complete and 0 interrupted iterations 1029 | default [ 56% ] 6000 VUs 05m33.1s/10m0s 1030 | 1031 | running (05m34.1s), 6000/6000 VUs, 172475 complete and 0 interrupted iterations 1032 | default [ 56% ] 6000 VUs 05m34.1s/10m0s 1033 | 1034 | running (05m35.1s), 6000/6000 VUs, 172497 complete and 0 interrupted iterations 1035 | default [ 56% ] 6000 VUs 05m35.1s/10m0s 1036 | 1037 | running (05m36.1s), 6000/6000 VUs, 172555 complete and 0 interrupted iterations 1038 | default [ 56% ] 6000 VUs 05m36.1s/10m0s 1039 | 1040 | running (05m37.1s), 6000/6000 VUs, 173723 complete and 0 interrupted iterations 1041 | default [ 56% ] 6000 VUs 05m37.1s/10m0s 1042 | 1043 | running (05m38.1s), 6000/6000 VUs, 175478 complete and 0 interrupted iterations 1044 | default [ 56% ] 6000 VUs 05m38.1s/10m0s 1045 | 1046 | running (05m39.1s), 6000/6000 VUs, 176230 complete and 0 interrupted iterations 1047 | default [ 57% ] 6000 VUs 05m39.1s/10m0s 1048 | 1049 | running (05m40.1s), 6000/6000 VUs, 176587 complete and 0 interrupted iterations 1050 | default [ 57% ] 6000 VUs 05m40.1s/10m0s 1051 | 1052 | running (05m41.1s), 6000/6000 VUs, 177591 complete and 0 interrupted iterations 1053 | default [ 57% ] 6000 VUs 05m41.1s/10m0s 1054 | 1055 | running (05m42.1s), 6000/6000 VUs, 177770 complete and 0 interrupted iterations 1056 | default [ 57% ] 6000 VUs 05m42.1s/10m0s 1057 | 1058 | running (05m43.1s), 6000/6000 VUs, 178407 complete and 0 interrupted iterations 1059 | default [ 57% ] 6000 VUs 05m43.1s/10m0s 1060 | 1061 | running (05m44.1s), 6000/6000 VUs, 178475 complete and 0 interrupted iterations 1062 | default [ 57% ] 6000 VUs 05m44.1s/10m0s 1063 | 1064 | running (05m45.1s), 6000/6000 VUs, 178496 complete and 0 interrupted iterations 1065 | default [ 58% ] 6000 VUs 05m45.1s/10m0s 1066 | 1067 | running (05m46.1s), 6000/6000 VUs, 178531 complete and 0 interrupted iterations 1068 | default [ 58% ] 6000 VUs 05m46.1s/10m0s 1069 | 1070 | running (05m47.1s), 6000/6000 VUs, 179229 complete and 0 interrupted iterations 1071 | default [ 58% ] 6000 VUs 05m47.1s/10m0s 1072 | 1073 | running (05m48.1s), 6000/6000 VUs, 180411 complete and 0 interrupted iterations 1074 | default [ 58% ] 6000 VUs 05m48.1s/10m0s 1075 | 1076 | running (05m49.1s), 6000/6000 VUs, 181580 complete and 0 interrupted iterations 1077 | default [ 58% ] 6000 VUs 05m49.1s/10m0s 1078 | 1079 | running (05m50.1s), 6000/6000 VUs, 182355 complete and 0 interrupted iterations 1080 | default [ 58% ] 6000 VUs 05m50.1s/10m0s 1081 | 1082 | running (05m51.1s), 6000/6000 VUs, 183040 complete and 0 interrupted iterations 1083 | default [ 59% ] 6000 VUs 05m51.1s/10m0s 1084 | 1085 | running (05m52.1s), 6000/6000 VUs, 183725 complete and 0 interrupted iterations 1086 | default [ 59% ] 6000 VUs 05m52.1s/10m0s 1087 | 1088 | running (05m53.1s), 6000/6000 VUs, 183733 complete and 0 interrupted iterations 1089 | default [ 59% ] 6000 VUs 05m53.1s/10m0s 1090 | 1091 | running (05m54.1s), 6000/6000 VUs, 183733 complete and 0 interrupted iterations 1092 | default [ 59% ] 6000 VUs 05m54.1s/10m0s 1093 | 1094 | running (05m55.1s), 6000/6000 VUs, 184474 complete and 0 interrupted iterations 1095 | default [ 59% ] 6000 VUs 05m55.1s/10m0s 1096 | 1097 | running (05m56.1s), 6000/6000 VUs, 184510 complete and 0 interrupted iterations 1098 | default [ 59% ] 6000 VUs 05m56.1s/10m0s 1099 | 1100 | running (05m57.1s), 6000/6000 VUs, 184699 complete and 0 interrupted iterations 1101 | default [ 60% ] 6000 VUs 05m57.1s/10m0s 1102 | 1103 | running (05m58.1s), 6000/6000 VUs, 185001 complete and 0 interrupted iterations 1104 | default [ 60% ] 6000 VUs 05m58.1s/10m0s 1105 | 1106 | running (05m59.1s), 6000/6000 VUs, 185082 complete and 0 interrupted iterations 1107 | default [ 60% ] 6000 VUs 05m59.1s/10m0s 1108 | 1109 | running (06m00.1s), 6000/6000 VUs, 186762 complete and 0 interrupted iterations 1110 | default [ 60% ] 6000 VUs 06m00.1s/10m0s 1111 | 1112 | running (06m01.1s), 6000/6000 VUs, 188096 complete and 0 interrupted iterations 1113 | default [ 60% ] 6000 VUs 06m01.1s/10m0s 1114 | 1115 | running (06m02.1s), 6000/6000 VUs, 189594 complete and 0 interrupted iterations 1116 | default [ 60% ] 6000 VUs 06m02.1s/10m0s 1117 | 1118 | running (06m03.1s), 6000/6000 VUs, 189696 complete and 0 interrupted iterations 1119 | default [ 61% ] 6000 VUs 06m03.1s/10m0s 1120 | 1121 | running (06m04.1s), 6000/6000 VUs, 189733 complete and 0 interrupted iterations 1122 | default [ 61% ] 6000 VUs 06m04.1s/10m0s 1123 | 1124 | running (06m05.1s), 6000/6000 VUs, 189778 complete and 0 interrupted iterations 1125 | default [ 61% ] 6000 VUs 06m05.1s/10m0s 1126 | 1127 | running (06m06.1s), 6000/6000 VUs, 189873 complete and 0 interrupted iterations 1128 | default [ 61% ] 6000 VUs 06m06.1s/10m0s 1129 | 1130 | running (06m07.1s), 6000/6000 VUs, 189881 complete and 0 interrupted iterations 1131 | default [ 61% ] 6000 VUs 06m07.1s/10m0s 1132 | 1133 | running (06m08.1s), 6000/6000 VUs, 189964 complete and 0 interrupted iterations 1134 | default [ 61% ] 6000 VUs 06m08.1s/10m0s 1135 | 1136 | running (06m09.1s), 6000/6000 VUs, 191032 complete and 0 interrupted iterations 1137 | default [ 62% ] 6000 VUs 06m09.1s/10m0s 1138 | 1139 | running (06m10.1s), 6000/6000 VUs, 192136 complete and 0 interrupted iterations 1140 | default [ 62% ] 6000 VUs 06m10.1s/10m0s 1141 | 1142 | running (06m11.1s), 6000/6000 VUs, 192683 complete and 0 interrupted iterations 1143 | default [ 62% ] 6000 VUs 06m11.1s/10m0s 1144 | 1145 | running (06m12.1s), 6000/6000 VUs, 192709 complete and 0 interrupted iterations 1146 | default [ 62% ] 6000 VUs 06m12.1s/10m0s 1147 | 1148 | running (06m13.1s), 6000/6000 VUs, 192901 complete and 0 interrupted iterations 1149 | default [ 62% ] 6000 VUs 06m13.1s/10m0s 1150 | 1151 | running (06m14.1s), 6000/6000 VUs, 194053 complete and 0 interrupted iterations 1152 | default [ 62% ] 6000 VUs 06m14.1s/10m0s 1153 | 1154 | running (06m15.1s), 6000/6000 VUs, 195748 complete and 0 interrupted iterations 1155 | default [ 63% ] 6000 VUs 06m15.1s/10m0s 1156 | 1157 | running (06m16.1s), 6000/6000 VUs, 195797 complete and 0 interrupted iterations 1158 | default [ 63% ] 6000 VUs 06m16.1s/10m0s 1159 | 1160 | running (06m17.1s), 6000/6000 VUs, 195881 complete and 0 interrupted iterations 1161 | default [ 63% ] 6000 VUs 06m17.1s/10m0s 1162 | 1163 | running (06m18.1s), 6000/6000 VUs, 195954 complete and 0 interrupted iterations 1164 | default [ 63% ] 6000 VUs 06m18.1s/10m0s 1165 | 1166 | running (06m19.1s), 6000/6000 VUs, 195992 complete and 0 interrupted iterations 1167 | default [ 63% ] 6000 VUs 06m19.1s/10m0s 1168 | 1169 | running (06m20.1s), 6000/6000 VUs, 196269 complete and 0 interrupted iterations 1170 | default [ 63% ] 6000 VUs 06m20.1s/10m0s 1171 | 1172 | running (06m21.1s), 6000/6000 VUs, 196331 complete and 0 interrupted iterations 1173 | default [ 64% ] 6000 VUs 06m21.1s/10m0s 1174 | 1175 | running (06m22.1s), 6000/6000 VUs, 196600 complete and 0 interrupted iterations 1176 | default [ 64% ] 6000 VUs 06m22.1s/10m0s 1177 | 1178 | running (06m23.1s), 6000/6000 VUs, 198844 complete and 0 interrupted iterations 1179 | default [ 64% ] 6000 VUs 06m23.1s/10m0s 1180 | 1181 | running (06m24.1s), 6000/6000 VUs, 200011 complete and 0 interrupted iterations 1182 | default [ 64% ] 6000 VUs 06m24.1s/10m0s 1183 | 1184 | running (06m25.1s), 6000/6000 VUs, 200540 complete and 0 interrupted iterations 1185 | default [ 64% ] 6000 VUs 06m25.1s/10m0s 1186 | 1187 | running (06m26.1s), 6000/6000 VUs, 200649 complete and 0 interrupted iterations 1188 | default [ 64% ] 6000 VUs 06m26.1s/10m0s 1189 | 1190 | running (06m27.1s), 6000/6000 VUs, 201032 complete and 0 interrupted iterations 1191 | default [ 65% ] 6000 VUs 06m27.1s/10m0s 1192 | 1193 | running (06m28.1s), 6000/6000 VUs, 201442 complete and 0 interrupted iterations 1194 | default [ 65% ] 6000 VUs 06m28.1s/10m0s 1195 | 1196 | running (06m29.1s), 6000/6000 VUs, 201973 complete and 0 interrupted iterations 1197 | default [ 65% ] 6000 VUs 06m29.1s/10m0s 1198 | 1199 | running (06m30.1s), 6000/6000 VUs, 202268 complete and 0 interrupted iterations 1200 | default [ 65% ] 6000 VUs 06m30.1s/10m0s 1201 | 1202 | running (06m31.1s), 6000/6000 VUs, 202322 complete and 0 interrupted iterations 1203 | default [ 65% ] 6000 VUs 06m31.1s/10m0s 1204 | 1205 | running (06m32.1s), 6000/6000 VUs, 202584 complete and 0 interrupted iterations 1206 | default [ 65% ] 6000 VUs 06m32.1s/10m0s 1207 | 1208 | running (06m33.1s), 6000/6000 VUs, 202876 complete and 0 interrupted iterations 1209 | default [ 66% ] 6000 VUs 06m33.1s/10m0s 1210 | 1211 | running (06m34.1s), 6000/6000 VUs, 204966 complete and 0 interrupted iterations 1212 | default [ 66% ] 6000 VUs 06m34.1s/10m0s 1213 | 1214 | running (06m35.1s), 6000/6000 VUs, 206503 complete and 0 interrupted iterations 1215 | default [ 66% ] 6000 VUs 06m35.1s/10m0s 1216 | 1217 | running (06m36.1s), 6000/6000 VUs, 206614 complete and 0 interrupted iterations 1218 | default [ 66% ] 6000 VUs 06m36.1s/10m0s 1219 | 1220 | running (06m37.1s), 6000/6000 VUs, 206883 complete and 0 interrupted iterations 1221 | default [ 66% ] 6000 VUs 06m37.1s/10m0s 1222 | 1223 | running (06m38.1s), 6000/6000 VUs, 207371 complete and 0 interrupted iterations 1224 | default [ 66% ] 6000 VUs 06m38.1s/10m0s 1225 | 1226 | running (06m39.1s), 6000/6000 VUs, 207619 complete and 0 interrupted iterations 1227 | default [ 67% ] 6000 VUs 06m39.1s/10m0s 1228 | 1229 | running (06m40.1s), 6000/6000 VUs, 207766 complete and 0 interrupted iterations 1230 | default [ 67% ] 6000 VUs 06m40.1s/10m0s 1231 | 1232 | running (06m41.1s), 6000/6000 VUs, 208300 complete and 0 interrupted iterations 1233 | default [ 67% ] 6000 VUs 06m41.1s/10m0s 1234 | 1235 | running (06m42.1s), 6000/6000 VUs, 208454 complete and 0 interrupted iterations 1236 | default [ 67% ] 6000 VUs 06m42.1s/10m0s 1237 | 1238 | running (06m43.1s), 6000/6000 VUs, 208851 complete and 0 interrupted iterations 1239 | default [ 67% ] 6000 VUs 06m43.1s/10m0s 1240 | 1241 | running (06m44.1s), 6000/6000 VUs, 209855 complete and 0 interrupted iterations 1242 | default [ 67% ] 6000 VUs 06m44.1s/10m0s 1243 | 1244 | running (06m45.1s), 6000/6000 VUs, 210732 complete and 0 interrupted iterations 1245 | default [ 68% ] 6000 VUs 06m45.1s/10m0s 1246 | 1247 | running (06m46.1s), 6000/6000 VUs, 211844 complete and 0 interrupted iterations 1248 | default [ 68% ] 6000 VUs 06m46.1s/10m0s 1249 | 1250 | running (06m47.1s), 6000/6000 VUs, 212855 complete and 0 interrupted iterations 1251 | default [ 68% ] 6000 VUs 06m47.1s/10m0s 1252 | 1253 | running (06m48.1s), 6000/6000 VUs, 213331 complete and 0 interrupted iterations 1254 | default [ 68% ] 6000 VUs 06m48.1s/10m0s 1255 | 1256 | running (06m49.1s), 6000/6000 VUs, 213612 complete and 0 interrupted iterations 1257 | default [ 68% ] 6000 VUs 06m49.1s/10m0s 1258 | 1259 | running (06m50.1s), 6000/6000 VUs, 213668 complete and 0 interrupted iterations 1260 | default [ 68% ] 6000 VUs 06m50.1s/10m0s 1261 | 1262 | running (06m51.1s), 6000/6000 VUs, 213673 complete and 0 interrupted iterations 1263 | default [ 69% ] 6000 VUs 06m51.1s/10m0s 1264 | 1265 | running (06m52.1s), 6000/6000 VUs, 213675 complete and 0 interrupted iterations 1266 | default [ 69% ] 6000 VUs 06m52.1s/10m0s 1267 | 1268 | running (06m53.1s), 6000/6000 VUs, 213831 complete and 0 interrupted iterations 1269 | default [ 69% ] 6000 VUs 06m53.1s/10m0s 1270 | 1271 | running (06m54.1s), 6000/6000 VUs, 215721 complete and 0 interrupted iterations 1272 | default [ 69% ] 6000 VUs 06m54.1s/10m0s 1273 | 1274 | running (06m55.1s), 6000/6000 VUs, 216150 complete and 0 interrupted iterations 1275 | default [ 69% ] 6000 VUs 06m55.1s/10m0s 1276 | 1277 | running (06m56.1s), 6000/6000 VUs, 216222 complete and 0 interrupted iterations 1278 | default [ 69% ] 6000 VUs 06m56.1s/10m0s 1279 | 1280 | running (06m57.1s), 6000/6000 VUs, 216349 complete and 0 interrupted iterations 1281 | default [ 70% ] 6000 VUs 06m57.1s/10m0s 1282 | 1283 | running (06m58.1s), 6000/6000 VUs, 217259 complete and 0 interrupted iterations 1284 | default [ 70% ] 6000 VUs 06m58.1s/10m0s 1285 | 1286 | running (06m59.1s), 6000/6000 VUs, 218410 complete and 0 interrupted iterations 1287 | default [ 70% ] 6000 VUs 06m59.1s/10m0s 1288 | 1289 | running (07m00.1s), 6000/6000 VUs, 219092 complete and 0 interrupted iterations 1290 | default [ 70% ] 6000 VUs 07m00.1s/10m0s 1291 | 1292 | running (07m01.1s), 6000/6000 VUs, 219669 complete and 0 interrupted iterations 1293 | default [ 70% ] 6000 VUs 07m01.1s/10m0s 1294 | 1295 | running (07m02.1s), 6000/6000 VUs, 219674 complete and 0 interrupted iterations 1296 | default [ 70% ] 6000 VUs 07m02.1s/10m0s 1297 | 1298 | running (07m03.1s), 6000/6000 VUs, 219692 complete and 0 interrupted iterations 1299 | default [ 71% ] 6000 VUs 07m03.1s/10m0s 1300 | 1301 | running (07m04.1s), 6000/6000 VUs, 219697 complete and 0 interrupted iterations 1302 | default [ 71% ] 6000 VUs 07m04.1s/10m0s 1303 | 1304 | running (07m05.1s), 6000/6000 VUs, 219715 complete and 0 interrupted iterations 1305 | default [ 71% ] 6000 VUs 07m05.1s/10m0s 1306 | 1307 | running (07m06.1s), 6000/6000 VUs, 219748 complete and 0 interrupted iterations 1308 | default [ 71% ] 6000 VUs 07m06.1s/10m0s 1309 | 1310 | running (07m07.1s), 6000/6000 VUs, 222075 complete and 0 interrupted iterations 1311 | default [ 71% ] 6000 VUs 07m07.1s/10m0s 1312 | 1313 | running (07m08.1s), 6000/6000 VUs, 222842 complete and 0 interrupted iterations 1314 | default [ 71% ] 6000 VUs 07m08.1s/10m0s 1315 | 1316 | running (07m09.1s), 6000/6000 VUs, 223264 complete and 0 interrupted iterations 1317 | default [ 72% ] 6000 VUs 07m09.1s/10m0s 1318 | 1319 | running (07m10.1s), 6000/6000 VUs, 223347 complete and 0 interrupted iterations 1320 | default [ 72% ] 6000 VUs 07m10.1s/10m0s 1321 | 1322 | running (07m11.1s), 6000/6000 VUs, 223601 complete and 0 interrupted iterations 1323 | default [ 72% ] 6000 VUs 07m11.1s/10m0s 1324 | 1325 | running (07m12.1s), 6000/6000 VUs, 224286 complete and 0 interrupted iterations 1326 | default [ 72% ] 6000 VUs 07m12.1s/10m0s 1327 | 1328 | running (07m13.1s), 6000/6000 VUs, 224648 complete and 0 interrupted iterations 1329 | default [ 72% ] 6000 VUs 07m13.1s/10m0s 1330 | 1331 | running (07m14.1s), 6000/6000 VUs, 225639 complete and 0 interrupted iterations 1332 | default [ 72% ] 6000 VUs 07m14.1s/10m0s 1333 | 1334 | running (07m15.1s), 6000/6000 VUs, 225709 complete and 0 interrupted iterations 1335 | default [ 73% ] 6000 VUs 07m15.1s/10m0s 1336 | 1337 | running (07m16.1s), 6000/6000 VUs, 225748 complete and 0 interrupted iterations 1338 | default [ 73% ] 6000 VUs 07m16.1s/10m0s 1339 | 1340 | running (07m17.1s), 6000/6000 VUs, 225850 complete and 0 interrupted iterations 1341 | default [ 73% ] 6000 VUs 07m17.1s/10m0s 1342 | 1343 | running (07m18.1s), 6000/6000 VUs, 226804 complete and 0 interrupted iterations 1344 | default [ 73% ] 6000 VUs 07m18.1s/10m0s 1345 | 1346 | running (07m19.1s), 6000/6000 VUs, 227708 complete and 0 interrupted iterations 1347 | default [ 73% ] 6000 VUs 07m19.1s/10m0s 1348 | 1349 | running (07m20.1s), 6000/6000 VUs, 228064 complete and 0 interrupted iterations 1350 | default [ 73% ] 6000 VUs 07m20.1s/10m0s 1351 | 1352 | running (07m21.1s), 6000/6000 VUs, 229502 complete and 0 interrupted iterations 1353 | default [ 74% ] 6000 VUs 07m21.1s/10m0s 1354 | 1355 | running (07m22.1s), 6000/6000 VUs, 230222 complete and 0 interrupted iterations 1356 | default [ 74% ] 6000 VUs 07m22.1s/10m0s 1357 | 1358 | running (07m23.1s), 6000/6000 VUs, 230569 complete and 0 interrupted iterations 1359 | default [ 74% ] 6000 VUs 07m23.1s/10m0s 1360 | 1361 | running (07m24.1s), 6000/6000 VUs, 230889 complete and 0 interrupted iterations 1362 | default [ 74% ] 6000 VUs 07m24.1s/10m0s 1363 | 1364 | running (07m25.1s), 6000/6000 VUs, 231250 complete and 0 interrupted iterations 1365 | default [ 74% ] 6000 VUs 07m25.1s/10m0s 1366 | 1367 | running (07m26.1s), 6000/6000 VUs, 231747 complete and 0 interrupted iterations 1368 | default [ 74% ] 6000 VUs 07m26.1s/10m0s 1369 | 1370 | running (07m27.1s), 6000/6000 VUs, 231850 complete and 0 interrupted iterations 1371 | default [ 75% ] 6000 VUs 07m27.1s/10m0s 1372 | 1373 | running (07m28.1s), 6000/6000 VUs, 232332 complete and 0 interrupted iterations 1374 | default [ 75% ] 6000 VUs 07m28.1s/10m0s 1375 | 1376 | running (07m29.1s), 6000/6000 VUs, 233537 complete and 0 interrupted iterations 1377 | default [ 75% ] 6000 VUs 07m29.1s/10m0s 1378 | 1379 | running (07m30.1s), 6000/6000 VUs, 233912 complete and 0 interrupted iterations 1380 | default [ 75% ] 6000 VUs 07m30.1s/10m0s 1381 | 1382 | running (07m31.1s), 6000/6000 VUs, 234795 complete and 0 interrupted iterations 1383 | default [ 75% ] 6000 VUs 07m31.1s/10m0s 1384 | 1385 | running (07m32.4s), 6000/6000 VUs, 236321 complete and 0 interrupted iterations 1386 | default [ 75% ] 6000 VUs 07m32.4s/10m0s 1387 | 1388 | running (07m33.1s), 6000/6000 VUs, 236536 complete and 0 interrupted iterations 1389 | default [ 76% ] 6000 VUs 07m33.1s/10m0s 1390 | 1391 | running (07m34.1s), 6000/6000 VUs, 236615 complete and 0 interrupted iterations 1392 | default [ 76% ] 6000 VUs 07m34.1s/10m0s 1393 | 1394 | running (07m35.1s), 6000/6000 VUs, 236622 complete and 0 interrupted iterations 1395 | default [ 76% ] 6000 VUs 07m35.1s/10m0s 1396 | 1397 | running (07m36.1s), 6000/6000 VUs, 237072 complete and 0 interrupted iterations 1398 | default [ 76% ] 6000 VUs 07m36.1s/10m0s 1399 | 1400 | running (07m37.1s), 6000/6000 VUs, 237537 complete and 0 interrupted iterations 1401 | default [ 76% ] 6000 VUs 07m37.1s/10m0s 1402 | 1403 | running (07m38.1s), 6000/6000 VUs, 238214 complete and 0 interrupted iterations 1404 | default [ 76% ] 6000 VUs 07m38.1s/10m0s 1405 | 1406 | running (07m39.1s), 6000/6000 VUs, 238635 complete and 0 interrupted iterations 1407 | default [ 77% ] 6000 VUs 07m39.1s/10m0s 1408 | 1409 | running (07m40.1s), 6000/6000 VUs, 238838 complete and 0 interrupted iterations 1410 | default [ 77% ] 6000 VUs 07m40.1s/10m0s 1411 | 1412 | running (07m41.1s), 6000/6000 VUs, 239893 complete and 0 interrupted iterations 1413 | default [ 77% ] 6000 VUs 07m41.1s/10m0s 1414 | 1415 | running (07m42.1s), 6000/6000 VUs, 240177 complete and 0 interrupted iterations 1416 | default [ 77% ] 6000 VUs 07m42.1s/10m0s 1417 | 1418 | running (07m43.1s), 6000/6000 VUs, 242259 complete and 0 interrupted iterations 1419 | default [ 77% ] 6000 VUs 07m43.1s/10m0s 1420 | 1421 | running (07m44.1s), 6000/6000 VUs, 242568 complete and 0 interrupted iterations 1422 | default [ 77% ] 6000 VUs 07m44.1s/10m0s 1423 | 1424 | running (07m45.1s), 6000/6000 VUs, 242621 complete and 0 interrupted iterations 1425 | default [ 78% ] 6000 VUs 07m45.1s/10m0s 1426 | 1427 | running (07m46.1s), 6000/6000 VUs, 243027 complete and 0 interrupted iterations 1428 | default [ 78% ] 6000 VUs 07m46.1s/10m0s 1429 | 1430 | running (07m47.1s), 6000/6000 VUs, 243315 complete and 0 interrupted iterations 1431 | default [ 78% ] 6000 VUs 07m47.1s/10m0s 1432 | 1433 | running (07m48.1s), 6000/6000 VUs, 243680 complete and 0 interrupted iterations 1434 | default [ 78% ] 6000 VUs 07m48.1s/10m0s 1435 | 1436 | running (07m49.1s), 6000/6000 VUs, 243699 complete and 0 interrupted iterations 1437 | default [ 78% ] 6000 VUs 07m49.1s/10m0s 1438 | 1439 | running (07m50.1s), 6000/6000 VUs, 244645 complete and 0 interrupted iterations 1440 | default [ 78% ] 6000 VUs 07m50.1s/10m0s 1441 | 1442 | running (07m51.1s), 6000/6000 VUs, 245718 complete and 0 interrupted iterations 1443 | default [ 79% ] 6000 VUs 07m51.1s/10m0s 1444 | 1445 | running (07m52.1s), 6000/6000 VUs, 246174 complete and 0 interrupted iterations 1446 | default [ 79% ] 6000 VUs 07m52.1s/10m0s 1447 | 1448 | running (07m53.1s), 6000/6000 VUs, 247314 complete and 0 interrupted iterations 1449 | default [ 79% ] 6000 VUs 07m53.1s/10m0s 1450 | 1451 | running (07m54.1s), 6000/6000 VUs, 247477 complete and 0 interrupted iterations 1452 | default [ 79% ] 6000 VUs 07m54.1s/10m0s 1453 | 1454 | running (07m55.1s), 6000/6000 VUs, 248531 complete and 0 interrupted iterations 1455 | default [ 79% ] 6000 VUs 07m55.1s/10m0s 1456 | 1457 | running (07m56.1s), 6000/6000 VUs, 248710 complete and 0 interrupted iterations 1458 | default [ 79% ] 6000 VUs 07m56.1s/10m0s 1459 | 1460 | running (07m57.1s), 6000/6000 VUs, 249265 complete and 0 interrupted iterations 1461 | default [ 80% ] 6000 VUs 07m57.1s/10m0s 1462 | 1463 | running (07m58.1s), 6000/6000 VUs, 249675 complete and 0 interrupted iterations 1464 | default [ 80% ] 6000 VUs 07m58.1s/10m0s 1465 | 1466 | running (07m59.1s), 6000/6000 VUs, 249698 complete and 0 interrupted iterations 1467 | default [ 80% ] 6000 VUs 07m59.1s/10m0s 1468 | 1469 | running (08m00.1s), 6000/6000 VUs, 250005 complete and 0 interrupted iterations 1470 | default [ 80% ] 6000 VUs 08m00.1s/10m0s 1471 | 1472 | running (08m01.1s), 6000/6000 VUs, 251267 complete and 0 interrupted iterations 1473 | default [ 80% ] 6000 VUs 08m01.1s/10m0s 1474 | 1475 | running (08m02.1s), 6000/6000 VUs, 252138 complete and 0 interrupted iterations 1476 | default [ 80% ] 6000 VUs 08m02.1s/10m0s 1477 | 1478 | running (08m03.1s), 6000/6000 VUs, 253235 complete and 0 interrupted iterations 1479 | default [ 81% ] 6000 VUs 08m03.1s/10m0s 1480 | 1481 | running (08m04.1s), 6000/6000 VUs, 253435 complete and 0 interrupted iterations 1482 | default [ 81% ] 6000 VUs 08m04.1s/10m0s 1483 | 1484 | running (08m05.1s), 6000/6000 VUs, 254220 complete and 0 interrupted iterations 1485 | default [ 81% ] 6000 VUs 08m05.1s/10m0s 1486 | 1487 | running (08m06.1s), 6000/6000 VUs, 254259 complete and 0 interrupted iterations 1488 | default [ 81% ] 6000 VUs 08m06.1s/10m0s 1489 | 1490 | running (08m07.1s), 6000/6000 VUs, 254478 complete and 0 interrupted iterations 1491 | default [ 81% ] 6000 VUs 08m07.1s/10m0s 1492 | 1493 | running (08m08.1s), 6000/6000 VUs, 254492 complete and 0 interrupted iterations 1494 | default [ 81% ] 6000 VUs 08m08.1s/10m0s 1495 | 1496 | running (08m09.1s), 6000/6000 VUs, 255688 complete and 0 interrupted iterations 1497 | default [ 82% ] 6000 VUs 08m09.1s/10m0s 1498 | 1499 | running (08m10.1s), 6000/6000 VUs, 255798 complete and 0 interrupted iterations 1500 | default [ 82% ] 6000 VUs 08m10.1s/10m0s 1501 | 1502 | running (08m11.1s), 6000/6000 VUs, 255826 complete and 0 interrupted iterations 1503 | default [ 82% ] 6000 VUs 08m11.1s/10m0s 1504 | 1505 | running (08m12.1s), 6000/6000 VUs, 256023 complete and 0 interrupted iterations 1506 | default [ 82% ] 6000 VUs 08m12.1s/10m0s 1507 | 1508 | running (08m13.1s), 6000/6000 VUs, 256629 complete and 0 interrupted iterations 1509 | default [ 82% ] 6000 VUs 08m13.1s/10m0s 1510 | 1511 | running (08m14.1s), 6000/6000 VUs, 257899 complete and 0 interrupted iterations 1512 | default [ 82% ] 6000 VUs 08m14.1s/10m0s 1513 | 1514 | running (08m15.1s), 6000/6000 VUs, 259762 complete and 0 interrupted iterations 1515 | default [ 83% ] 6000 VUs 08m15.1s/10m0s 1516 | 1517 | running (08m16.1s), 6000/6000 VUs, 259956 complete and 0 interrupted iterations 1518 | default [ 83% ] 6000 VUs 08m16.1s/10m0s 1519 | 1520 | running (08m17.1s), 6000/6000 VUs, 260468 complete and 0 interrupted iterations 1521 | default [ 83% ] 6000 VUs 08m17.1s/10m0s 1522 | 1523 | running (08m18.1s), 6000/6000 VUs, 260479 complete and 0 interrupted iterations 1524 | default [ 83% ] 6000 VUs 08m18.1s/10m0s 1525 | 1526 | running (08m19.1s), 6000/6000 VUs, 260624 complete and 0 interrupted iterations 1527 | default [ 83% ] 6000 VUs 08m19.1s/10m0s 1528 | 1529 | running (08m20.1s), 6000/6000 VUs, 260974 complete and 0 interrupted iterations 1530 | default [ 83% ] 6000 VUs 08m20.1s/10m0s 1531 | 1532 | running (08m21.1s), 6000/6000 VUs, 261070 complete and 0 interrupted iterations 1533 | default [ 84% ] 6000 VUs 08m21.1s/10m0s 1534 | 1535 | running (08m22.1s), 6000/6000 VUs, 261220 complete and 0 interrupted iterations 1536 | default [ 84% ] 6000 VUs 08m22.1s/10m0s 1537 | 1538 | running (08m23.1s), 6000/6000 VUs, 261918 complete and 0 interrupted iterations 1539 | default [ 84% ] 6000 VUs 08m23.1s/10m0s 1540 | 1541 | running (08m24.1s), 6000/6000 VUs, 263872 complete and 0 interrupted iterations 1542 | default [ 84% ] 6000 VUs 08m24.1s/10m0s 1543 | 1544 | running (08m25.1s), 6000/6000 VUs, 264133 complete and 0 interrupted iterations 1545 | default [ 84% ] 6000 VUs 08m25.1s/10m0s 1546 | 1547 | running (08m26.1s), 6000/6000 VUs, 264271 complete and 0 interrupted iterations 1548 | default [ 84% ] 6000 VUs 08m26.1s/10m0s 1549 | 1550 | running (08m27.1s), 6000/6000 VUs, 264764 complete and 0 interrupted iterations 1551 | default [ 85% ] 6000 VUs 08m27.1s/10m0s 1552 | 1553 | running (08m28.1s), 6000/6000 VUs, 266223 complete and 0 interrupted iterations 1554 | default [ 85% ] 6000 VUs 08m28.1s/10m0s 1555 | 1556 | running (08m29.1s), 6000/6000 VUs, 266576 complete and 0 interrupted iterations 1557 | default [ 85% ] 6000 VUs 08m29.1s/10m0s 1558 | 1559 | running (08m30.1s), 6000/6000 VUs, 266974 complete and 0 interrupted iterations 1560 | default [ 85% ] 6000 VUs 08m30.1s/10m0s 1561 | 1562 | running (08m31.1s), 6000/6000 VUs, 267017 complete and 0 interrupted iterations 1563 | default [ 85% ] 6000 VUs 08m31.1s/10m0s 1564 | 1565 | running (08m32.1s), 6000/6000 VUs, 267206 complete and 0 interrupted iterations 1566 | default [ 85% ] 6000 VUs 08m32.1s/10m0s 1567 | 1568 | running (08m33.1s), 6000/6000 VUs, 267513 complete and 0 interrupted iterations 1569 | default [ 86% ] 6000 VUs 08m33.1s/10m0s 1570 | 1571 | running (08m34.1s), 6000/6000 VUs, 269342 complete and 0 interrupted iterations 1572 | default [ 86% ] 6000 VUs 08m34.1s/10m0s 1573 | 1574 | running (08m35.1s), 6000/6000 VUs, 270132 complete and 0 interrupted iterations 1575 | default [ 86% ] 6000 VUs 08m35.1s/10m0s 1576 | 1577 | running (08m36.1s), 6000/6000 VUs, 270237 complete and 0 interrupted iterations 1578 | default [ 86% ] 6000 VUs 08m36.1s/10m0s 1579 | 1580 | running (08m37.1s), 6000/6000 VUs, 270392 complete and 0 interrupted iterations 1581 | default [ 86% ] 6000 VUs 08m37.1s/10m0s 1582 | 1583 | running (08m38.1s), 6000/6000 VUs, 271697 complete and 0 interrupted iterations 1584 | default [ 86% ] 6000 VUs 08m38.1s/10m0s 1585 | 1586 | running (08m39.1s), 6000/6000 VUs, 272303 complete and 0 interrupted iterations 1587 | default [ 87% ] 6000 VUs 08m39.1s/10m0s 1588 | 1589 | running (08m40.1s), 6000/6000 VUs, 272460 complete and 0 interrupted iterations 1590 | default [ 87% ] 6000 VUs 08m40.1s/10m0s 1591 | 1592 | running (08m41.1s), 6000/6000 VUs, 273000 complete and 0 interrupted iterations 1593 | default [ 87% ] 6000 VUs 08m41.1s/10m0s 1594 | 1595 | running (08m42.1s), 6000/6000 VUs, 273155 complete and 0 interrupted iterations 1596 | default [ 87% ] 6000 VUs 08m42.1s/10m0s 1597 | 1598 | running (08m43.1s), 6000/6000 VUs, 273282 complete and 0 interrupted iterations 1599 | default [ 87% ] 6000 VUs 08m43.1s/10m0s 1600 | 1601 | running (08m44.1s), 6000/6000 VUs, 273965 complete and 0 interrupted iterations 1602 | default [ 87% ] 6000 VUs 08m44.1s/10m0s 1603 | 1604 | running (08m45.1s), 6000/6000 VUs, 274720 complete and 0 interrupted iterations 1605 | default [ 88% ] 6000 VUs 08m45.1s/10m0s 1606 | 1607 | running (08m46.1s), 6000/6000 VUs, 276134 complete and 0 interrupted iterations 1608 | default [ 88% ] 6000 VUs 08m46.1s/10m0s 1609 | 1610 | running (08m47.1s), 6000/6000 VUs, 276364 complete and 0 interrupted iterations 1611 | default [ 88% ] 6000 VUs 08m47.1s/10m0s 1612 | 1613 | running (08m48.1s), 6000/6000 VUs, 277593 complete and 0 interrupted iterations 1614 | default [ 88% ] 6000 VUs 08m48.1s/10m0s 1615 | 1616 | running (08m49.1s), 6000/6000 VUs, 278287 complete and 0 interrupted iterations 1617 | default [ 88% ] 6000 VUs 08m49.1s/10m0s 1618 | 1619 | running (08m50.1s), 6000/6000 VUs, 278405 complete and 0 interrupted iterations 1620 | default [ 88% ] 6000 VUs 08m50.1s/10m0s 1621 | 1622 | running (08m51.1s), 6000/6000 VUs, 278476 complete and 0 interrupted iterations 1623 | default [ 89% ] 6000 VUs 08m51.1s/10m0s 1624 | 1625 | running (08m52.1s), 6000/6000 VUs, 278717 complete and 0 interrupted iterations 1626 | default [ 89% ] 6000 VUs 08m52.1s/10m0s 1627 | 1628 | running (08m53.1s), 6000/6000 VUs, 279193 complete and 0 interrupted iterations 1629 | default [ 89% ] 6000 VUs 08m53.1s/10m0s 1630 | 1631 | running (08m54.1s), 6000/6000 VUs, 279212 complete and 0 interrupted iterations 1632 | default [ 89% ] 6000 VUs 08m54.1s/10m0s 1633 | 1634 | running (08m55.1s), 6000/6000 VUs, 280453 complete and 0 interrupted iterations 1635 | default [ 89% ] 6000 VUs 08m55.1s/10m0s 1636 | 1637 | running (08m56.1s), 6000/6000 VUs, 281354 complete and 0 interrupted iterations 1638 | default [ 89% ] 6000 VUs 08m56.1s/10m0s 1639 | 1640 | running (08m57.1s), 6000/6000 VUs, 281876 complete and 0 interrupted iterations 1641 | default [ 90% ] 6000 VUs 08m57.1s/10m0s 1642 | 1643 | running (08m58.1s), 6000/6000 VUs, 282522 complete and 0 interrupted iterations 1644 | default [ 90% ] 6000 VUs 08m58.1s/10m0s 1645 | 1646 | running (08m59.1s), 6000/6000 VUs, 283013 complete and 0 interrupted iterations 1647 | default [ 90% ] 6000 VUs 08m59.1s/10m0s 1648 | 1649 | running (09m00.1s), 6000/6000 VUs, 284320 complete and 0 interrupted iterations 1650 | default [ 90% ] 6000 VUs 09m00.1s/10m0s 1651 | 1652 | running (09m01.1s), 6000/6000 VUs, 284475 complete and 0 interrupted iterations 1653 | default [ 90% ] 6000 VUs 09m01.1s/10m0s 1654 | 1655 | running (09m02.1s), 6000/6000 VUs, 284599 complete and 0 interrupted iterations 1656 | default [ 90% ] 6000 VUs 09m02.1s/10m0s 1657 | 1658 | running (09m03.1s), 6000/6000 VUs, 285179 complete and 0 interrupted iterations 1659 | default [ 91% ] 6000 VUs 09m03.1s/10m0s 1660 | 1661 | running (09m04.1s), 6000/6000 VUs, 285210 complete and 0 interrupted iterations 1662 | default [ 91% ] 6000 VUs 09m04.1s/10m0s 1663 | 1664 | running (09m05.1s), 6000/6000 VUs, 285369 complete and 0 interrupted iterations 1665 | default [ 91% ] 6000 VUs 09m05.1s/10m0s 1666 | 1667 | running (09m06.1s), 6000/6000 VUs, 286852 complete and 0 interrupted iterations 1668 | default [ 91% ] 6000 VUs 09m06.1s/10m0s 1669 | 1670 | running (09m07.1s), 6000/6000 VUs, 287622 complete and 0 interrupted iterations 1671 | default [ 91% ] 6000 VUs 09m07.1s/10m0s 1672 | 1673 | running (09m08.1s), 6000/6000 VUs, 288383 complete and 0 interrupted iterations 1674 | default [ 91% ] 6000 VUs 09m08.1s/10m0s 1675 | 1676 | running (09m09.1s), 6000/6000 VUs, 288857 complete and 0 interrupted iterations 1677 | default [ 92% ] 6000 VUs 09m09.1s/10m0s 1678 | 1679 | running (09m10.1s), 6000/6000 VUs, 290006 complete and 0 interrupted iterations 1680 | default [ 92% ] 6000 VUs 09m10.1s/10m0s 1681 | 1682 | running (09m11.1s), 6000/6000 VUs, 290439 complete and 0 interrupted iterations 1683 | default [ 92% ] 6000 VUs 09m11.1s/10m0s 1684 | 1685 | running (09m12.1s), 6000/6000 VUs, 290534 complete and 0 interrupted iterations 1686 | default [ 92% ] 6000 VUs 09m12.1s/10m0s 1687 | 1688 | running (09m13.1s), 6000/6000 VUs, 291085 complete and 0 interrupted iterations 1689 | default [ 92% ] 6000 VUs 09m13.1s/10m0s 1690 | 1691 | running (09m14.1s), 6000/6000 VUs, 291210 complete and 0 interrupted iterations 1692 | default [ 92% ] 6000 VUs 09m14.1s/10m0s 1693 | 1694 | running (09m15.1s), 6000/6000 VUs, 291276 complete and 0 interrupted iterations 1695 | default [ 93% ] 6000 VUs 09m15.1s/10m0s 1696 | 1697 | running (09m16.1s), 6000/6000 VUs, 292699 complete and 0 interrupted iterations 1698 | default [ 93% ] 6000 VUs 09m16.1s/10m0s 1699 | 1700 | running (09m17.1s), 6000/6000 VUs, 293517 complete and 0 interrupted iterations 1701 | default [ 93% ] 6000 VUs 09m17.1s/10m0s 1702 | 1703 | running (09m18.1s), 6000/6000 VUs, 294199 complete and 0 interrupted iterations 1704 | default [ 93% ] 6000 VUs 09m18.1s/10m0s 1705 | 1706 | running (09m19.1s), 6000/6000 VUs, 294823 complete and 0 interrupted iterations 1707 | default [ 93% ] 6000 VUs 09m19.1s/10m0s 1708 | 1709 | running (09m20.1s), 6000/6000 VUs, 295874 complete and 0 interrupted iterations 1710 | default [ 93% ] 6000 VUs 09m20.1s/10m0s 1711 | 1712 | running (09m21.1s), 6000/6000 VUs, 296309 complete and 0 interrupted iterations 1713 | default [ 94% ] 6000 VUs 09m21.1s/10m0s 1714 | 1715 | running (09m22.1s), 6000/6000 VUs, 296531 complete and 0 interrupted iterations 1716 | default [ 94% ] 6000 VUs 09m22.1s/10m0s 1717 | 1718 | running (09m23.1s), 6000/6000 VUs, 296753 complete and 0 interrupted iterations 1719 | default [ 94% ] 6000 VUs 09m23.1s/10m0s 1720 | 1721 | running (09m24.1s), 6000/6000 VUs, 296783 complete and 0 interrupted iterations 1722 | default [ 94% ] 6000 VUs 09m24.1s/10m0s 1723 | 1724 | running (09m25.1s), 6000/6000 VUs, 297153 complete and 0 interrupted iterations 1725 | default [ 94% ] 6000 VUs 09m25.1s/10m0s 1726 | 1727 | running (09m26.1s), 6000/6000 VUs, 297217 complete and 0 interrupted iterations 1728 | default [ 94% ] 6000 VUs 09m26.1s/10m0s 1729 | 1730 | running (09m27.1s), 6000/6000 VUs, 299426 complete and 0 interrupted iterations 1731 | default [ 95% ] 6000 VUs 09m27.1s/10m0s 1732 | 1733 | running (09m28.1s), 6000/6000 VUs, 300018 complete and 0 interrupted iterations 1734 | default [ 95% ] 6000 VUs 09m28.1s/10m0s 1735 | 1736 | running (09m29.1s), 6000/6000 VUs, 300143 complete and 0 interrupted iterations 1737 | default [ 95% ] 6000 VUs 09m29.1s/10m0s 1738 | 1739 | running (09m30.1s), 6000/6000 VUs, 300658 complete and 0 interrupted iterations 1740 | default [ 95% ] 6000 VUs 09m30.1s/10m0s 1741 | 1742 | running (09m31.1s), 6000/6000 VUs, 301522 complete and 0 interrupted iterations 1743 | default [ 95% ] 6000 VUs 09m31.1s/10m0s 1744 | 1745 | running (09m32.1s), 6000/6000 VUs, 302297 complete and 0 interrupted iterations 1746 | default [ 95% ] 6000 VUs 09m32.1s/10m0s 1747 | 1748 | running (09m33.1s), 6000/6000 VUs, 302703 complete and 0 interrupted iterations 1749 | default [ 96% ] 6000 VUs 09m33.1s/10m0s 1750 | 1751 | running (09m34.1s), 6000/6000 VUs, 302778 complete and 0 interrupted iterations 1752 | default [ 96% ] 6000 VUs 09m34.1s/10m0s 1753 | 1754 | running (09m35.1s), 6000/6000 VUs, 303137 complete and 0 interrupted iterations 1755 | default [ 96% ] 6000 VUs 09m35.1s/10m0s 1756 | 1757 | running (09m36.1s), 6000/6000 VUs, 303209 complete and 0 interrupted iterations 1758 | default [ 96% ] 6000 VUs 09m36.1s/10m0s 1759 | 1760 | running (09m37.1s), 6000/6000 VUs, 303408 complete and 0 interrupted iterations 1761 | default [ 96% ] 6000 VUs 09m37.1s/10m0s 1762 | 1763 | running (09m38.1s), 6000/6000 VUs, 303491 complete and 0 interrupted iterations 1764 | default [ 96% ] 6000 VUs 09m38.1s/10m0s 1765 | 1766 | running (09m39.1s), 6000/6000 VUs, 305236 complete and 0 interrupted iterations 1767 | default [ 97% ] 6000 VUs 09m39.1s/10m0s 1768 | 1769 | running (09m40.1s), 6000/6000 VUs, 306469 complete and 0 interrupted iterations 1770 | default [ 97% ] 6000 VUs 09m40.1s/10m0s 1771 | 1772 | running (09m41.1s), 6000/6000 VUs, 307191 complete and 0 interrupted iterations 1773 | default [ 97% ] 6000 VUs 09m41.1s/10m0s 1774 | 1775 | running (09m42.1s), 6000/6000 VUs, 308160 complete and 0 interrupted iterations 1776 | default [ 97% ] 6000 VUs 09m42.1s/10m0s 1777 | 1778 | running (09m43.1s), 6000/6000 VUs, 308192 complete and 0 interrupted iterations 1779 | default [ 97% ] 6000 VUs 09m43.1s/10m0s 1780 | 1781 | running (09m44.1s), 6000/6000 VUs, 308528 complete and 0 interrupted iterations 1782 | default [ 97% ] 6000 VUs 09m44.1s/10m0s 1783 | 1784 | running (09m45.1s), 6000/6000 VUs, 308688 complete and 0 interrupted iterations 1785 | default [ 98% ] 6000 VUs 09m45.1s/10m0s 1786 | 1787 | running (09m46.1s), 6000/6000 VUs, 309206 complete and 0 interrupted iterations 1788 | default [ 98% ] 6000 VUs 09m46.1s/10m0s 1789 | 1790 | running (09m47.1s), 6000/6000 VUs, 309382 complete and 0 interrupted iterations 1791 | default [ 98% ] 6000 VUs 09m47.1s/10m0s 1792 | 1793 | running (09m48.1s), 6000/6000 VUs, 309491 complete and 0 interrupted iterations 1794 | default [ 98% ] 6000 VUs 09m48.1s/10m0s 1795 | 1796 | running (09m49.1s), 6000/6000 VUs, 310004 complete and 0 interrupted iterations 1797 | default [ 98% ] 6000 VUs 09m49.1s/10m0s 1798 | 1799 | running (09m50.1s), 6000/6000 VUs, 311251 complete and 0 interrupted iterations 1800 | default [ 98% ] 6000 VUs 09m50.1s/10m0s 1801 | 1802 | running (09m51.1s), 6000/6000 VUs, 312912 complete and 0 interrupted iterations 1803 | default [ 99% ] 6000 VUs 09m51.1s/10m0s 1804 | 1805 | running (09m52.1s), 6000/6000 VUs, 314115 complete and 0 interrupted iterations 1806 | default [ 99% ] 6000 VUs 09m52.1s/10m0s 1807 | 1808 | running (09m53.1s), 6000/6000 VUs, 314192 complete and 0 interrupted iterations 1809 | default [ 99% ] 6000 VUs 09m53.1s/10m0s 1810 | 1811 | running (09m54.1s), 6000/6000 VUs, 314515 complete and 0 interrupted iterations 1812 | default [ 99% ] 6000 VUs 09m54.1s/10m0s 1813 | 1814 | running (09m55.1s), 6000/6000 VUs, 314575 complete and 0 interrupted iterations 1815 | default [ 99% ] 6000 VUs 09m55.1s/10m0s 1816 | 1817 | running (09m56.1s), 6000/6000 VUs, 314674 complete and 0 interrupted iterations 1818 | default [ 99% ] 6000 VUs 09m56.1s/10m0s 1819 | 1820 | running (09m57.1s), 6000/6000 VUs, 314684 complete and 0 interrupted iterations 1821 | default [ 100% ] 6000 VUs 09m57.1s/10m0s 1822 | 1823 | running (09m58.1s), 6000/6000 VUs, 314710 complete and 0 interrupted iterations 1824 | default [ 100% ] 6000 VUs 09m58.1s/10m0s 1825 | 1826 | running (09m59.1s), 6000/6000 VUs, 315816 complete and 0 interrupted iterations 1827 | default [ 100% ] 6000 VUs 09m59.1s/10m0s 1828 | 1829 | running (10m00.1s), 5981/6000 VUs, 316455 complete and 0 interrupted iterations 1830 | default ↓ [ 100% ] 6000 VUs 10m0s 1831 | 1832 | running (10m01.1s), 4792/6000 VUs, 317644 complete and 0 interrupted iterations 1833 | default ↓ [ 100% ] 6000 VUs 10m0s 1834 | 1835 | running (10m02.1s), 4470/6000 VUs, 317966 complete and 0 interrupted iterations 1836 | default ↓ [ 100% ] 6000 VUs 10m0s 1837 | 1838 | running (10m03.1s), 4114/6000 VUs, 318322 complete and 0 interrupted iterations 1839 | default ↓ [ 100% ] 6000 VUs 10m0s 1840 | 1841 | running (10m04.1s), 3504/6000 VUs, 318932 complete and 0 interrupted iterations 1842 | default ↓ [ 100% ] 6000 VUs 10m0s 1843 | 1844 | running (10m05.1s), 1864/6000 VUs, 320572 complete and 0 interrupted iterations 1845 | default ↓ [ 100% ] 6000 VUs 10m0s 1846 | 1847 | running (10m06.1s), 1766/6000 VUs, 320670 complete and 0 interrupted iterations 1848 | default ↓ [ 100% ] 6000 VUs 10m0s 1849 | 1850 | running (10m07.1s), 1754/6000 VUs, 320682 complete and 0 interrupted iterations 1851 | default ↓ [ 100% ] 6000 VUs 10m0s 1852 | 1853 | running (10m08.1s), 1727/6000 VUs, 320709 complete and 0 interrupted iterations 1854 | default ↓ [ 100% ] 6000 VUs 10m0s 1855 | 1856 | running (10m09.1s), 1579/6000 VUs, 320857 complete and 0 interrupted iterations 1857 | default ↓ [ 100% ] 6000 VUs 10m0s 1858 | 1859 | running (10m10.1s), 0023/6000 VUs, 322413 complete and 0 interrupted iterations 1860 | default ↓ [ 100% ] 6000 VUs 10m0s 1861 | 1862 | running (10m10.1s), 0000/6000 VUs, 322436 complete and 0 interrupted iterations 1863 | default ✓ [ 100% ] 6000 VUs 10m0s 1864 | 1865 | █ Front page 1866 | 1867 | ✓ Homepage body size is 11278 bytes 1868 | ✓ Homepage welcome header present 1869 | 1870 | █ Static assets 1871 | 1872 | ✓ Is stylesheet 4859 bytes? 1873 | 1874 | █ Login 1875 | 1876 | ✓ Users should not be auth'd. Is unauthorized header present? 1877 | ✗ is logged in welcome header present 1878 | ↳ 33% — ✓ 107602 / ✗ 214834 1879 | 1880 | ✓ check_failure_rate.............: 16.65% ✓ 214834 ✗ 1074910 1881 | checks.........................: 86.67% ✓ 1397346 ✗ 214834 1882 | data_received..................: 9.7 GB 16 MB/s 1883 | data_sent......................: 325 MB 532 kB/s 1884 | group_duration.................: avg=512.27ms min=21.92ms med=153.85ms max=6.95s p(90)=1.54s p(95)=2.23s 1885 | http_req_blocked...............: avg=11.05ms min=652ns med=2.27µs max=3.27s p(90)=3.59µs p(95)=7.73µs 1886 | http_req_connecting............: avg=3.47ms min=0s med=0s max=3.27s p(90)=0s p(95)=0s 1887 | ✗ http_req_duration..............: avg=210.76ms min=21.37ms med=57.33ms max=4.62s p(90)=610.16ms p(95)=869.44ms 1888 | { expected_response:true }...: avg=210.76ms min=21.37ms med=57.33ms max=4.62s p(90)=610.16ms p(95)=869.44ms 1889 | ✗ { staticAsset:yes }..........: avg=267.94ms min=21.37ms med=106.72ms max=3.79s p(90)=706.7ms p(95)=990.53ms 1890 | http_req_failed................: 0.00% ✓ 0 ✗ 1934616 1891 | http_req_receiving.............: avg=1.55ms min=13.33µs med=41.97µs max=1.64s p(90)=130.21µs p(95)=450.87µs 1892 | http_req_sending...............: avg=4.05ms min=0s med=12.46µs max=1.94s p(90)=171.51µs p(95)=5.8ms 1893 | http_req_tls_handshaking.......: avg=0s min=0s med=0s max=0s p(90)=0s p(95)=0s 1894 | http_req_waiting...............: avg=205.15ms min=0s med=55.67ms max=3.77s p(90)=598.8ms p(95)=846.67ms 1895 | http_reqs......................: 1934616 3170.798263/s 1896 | iteration_duration.............: avg=11.21s min=10.11s med=10.69s max=18.31s p(90)=12.91s p(95)=13.41s 1897 | iterations.....................: 322436 528.466377/s 1898 | successful_logins..............: 107602 176.3576/s 1899 | time_to_first_byte.............: avg=230.04ms min=0s med=74.94ms max=3.77s p(90)=634.48ms p(95)=893.6ms 1900 | vus............................: 23 min=0 max=6000 1901 | vus_max........................: 6000 min=1379 max=6000 1902 | 1903 | time="2023-02-01T10:55:31Z" level=error msg="some thresholds have failed" 1904 | -------------------------------------------------------------------------------- /screenshots/3-terminals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k6-benchmarks/be555f196c0161ef517972a0646dd365ba8a4578/screenshots/3-terminals.png -------------------------------------------------------------------------------- /scripts/RPS-optimized.js: -------------------------------------------------------------------------------- 1 | /* 2 | Note: this is not a real-life example unless you want to test for the absolute RPS limit of your system. 3 | This is extremely aggressive test. 4 | */ 5 | 6 | import http from "k6/http"; 7 | 8 | export let options = { 9 | discardResponseBodies: true, 10 | ext: { 11 | loadimpact: { 12 | name: `${__ENV.TEST_NAME}` || "RPS hammering test", 13 | projectID: 3478725, 14 | } 15 | } 16 | }; 17 | 18 | export default function() { 19 | http.get('http://test.staging.k6.io/static/logo.svg'); 20 | } 21 | -------------------------------------------------------------------------------- /scripts/file-upload.js: -------------------------------------------------------------------------------- 1 | import http from "k6/http"; 2 | import { sleep } from "k6"; 3 | 4 | var data = { 5 | file: http.file(open("./26MB.zip", "b"), "26MB.zip") 6 | }; 7 | 8 | export let options = { 9 | discardResponseBodies: true, 10 | ext: { 11 | loadimpact: { 12 | name: `${__ENV.TEST_NAME}` || "Data transfer test", 13 | projectID: 3478725, 14 | } 15 | } 16 | }; 17 | 18 | export default function() { 19 | var res = http.post("http://test.staging.k6.io/my_messages.php", data); 20 | sleep(1); 21 | } 22 | -------------------------------------------------------------------------------- /scripts/website.js: -------------------------------------------------------------------------------- 1 | /* real-life website test script */ 2 | 3 | import http from "k6/http"; 4 | import { check, group, sleep } from "k6"; 5 | import { Counter, Rate, Trend } from "k6/metrics"; 6 | 7 | const baseURL = 'http://test.staging.k6.io'; 8 | const sleepTime = __ENV.SLEEP || 3; 9 | 10 | let successfulLogins = new Counter("successful_logins"); 11 | let checkFailureRate = new Rate("check_failure_rate"); 12 | let timeToFirstByte = new Trend("time_to_first_byte", true); 13 | 14 | export let options = { 15 | thresholds: { 16 | "http_req_duration": ["p(95)<500"], 17 | "http_req_duration{staticAsset:yes}": ["p(95)<100"], 18 | "check_failure_rate": ["rate<0.3"] 19 | }, 20 | ext: { 21 | loadimpact: { 22 | name: `${__ENV.TEST_NAME}` || "AWS EC2 Hardware Testing", 23 | projectID: 3478725, 24 | } 25 | } 26 | }; 27 | 28 | function randomIntBetween(min, max) { // min and max included 29 | return Math.floor(Math.random() * (max - min + 1) + min); 30 | } 31 | 32 | let loginData = { 33 | 34 | "users": [ 35 | { "username": "admin", "password": "123" }, 36 | { "username": "test_user", "password": "1234" }, 37 | { "username": "invaliduser", "password": "password"} 38 | ] 39 | }; 40 | 41 | export default function() { 42 | group("Front page", function() { 43 | let res = http.get(http.url`${baseURL}/?ts=${Math.round(randomIntBetween(1,2000))}`, { tags: { name: `${baseURL}/?ts=*`}}); 44 | 45 | let checkRes = check(res, { 46 | "Homepage body size is 11278 bytes": (r) => r.status === 200 && r.body.length === 11278, 47 | "Homepage welcome header present": (r) => r.status === 200 && r.body.indexOf("Welcome to the k6.io demo site!") !== -1 48 | }); 49 | 50 | checkFailureRate.add(!checkRes); 51 | 52 | timeToFirstByte.add(res.timings.waiting, { ttfbURL: res.url }); 53 | 54 | group("Static assets", function() { 55 | let res = http.batch([ 56 | ["GET", `${baseURL}/static/css/site.css`, {}, { tags: { staticAsset: "yes" } }], 57 | ["GET", `${baseURL}/static/js/prisms.js`, {}, { tags: { staticAsset: "yes" } }] 58 | ]); 59 | checkRes = check(res[0], { 60 | "Is stylesheet 4859 bytes?": (r) => r.status === 200 && r.body.length === 4859, 61 | }); 62 | 63 | // Record check failures 64 | checkFailureRate.add(!checkRes); 65 | 66 | // Record time to first byte and tag it with the URL to be able to filter the results in Insights 67 | timeToFirstByte.add(res[0].timings.waiting, { ttfbURL: res[0].url, staticAsset: "yes" }); 68 | timeToFirstByte.add(res[1].timings.waiting, { ttfbURL: res[1].url, staticAsset: "yes" }); 69 | }); 70 | 71 | }); 72 | 73 | sleep(sleepTime); 74 | 75 | group("Login", function() { 76 | let res = http.get(`${baseURL}/my_messages.php`); 77 | let checkRes = check(res, { 78 | "Users should not be auth'd. Is unauthorized header present?": (r) => r.status === 200 && r.body.indexOf("Unauthorized") !== -1 79 | }); 80 | 81 | // Record check failures 82 | checkFailureRate.add(!checkRes); 83 | 84 | let position = Math.floor(Math.random()*loginData.users.length); 85 | let credentials = loginData.users[position]; 86 | const csrftoken = res.cookies.csrf && res.cookies.csrf.length && res.cookies.csrf[0].value; 87 | 88 | res = http.post(`${baseURL}/login.php`, { 89 | login: credentials.username, 90 | password: credentials.password, 91 | csrftoken: csrftoken, 92 | redir: '1', 93 | }); 94 | checkRes = check(res, { 95 | "is logged in welcome header present": (r) => r.status === 200 && r.body.indexOf("Welcome, admin!") !== -1 96 | }); 97 | 98 | // Record successful logins 99 | if (checkRes) { 100 | successfulLogins.add(1); 101 | } 102 | 103 | // Record check failures 104 | checkFailureRate.add(!checkRes, { page: "login" }); 105 | 106 | // Record time to first byte and tag it with the URL to be able to filter the results in Insights 107 | timeToFirstByte.add(res.timings.waiting, { ttfbURL: res.url }); 108 | }); 109 | 110 | sleep(sleepTime); 111 | } 112 | --------------------------------------------------------------------------------