GCS SRE TEAM

GCS Service Blog

If you can DREAM it, You can DO it!

K6.io-Stress Tool Introduction

K6.io-Stress Tool Introduction

GCS SRE Team

1 minute read

Sometimes, before we go online, we will hope that the server is stress tested, instead of being pressure tested on the first day of opening, we need to prepare some tools to use… here is a K6.io, Https://www.loadimpact.com The underlying pressure measurement tool.

Official website: https://k6.io/

Using this tool is very simple, the specified number of people / time / script can work The problem will be in how the script is written. (The number of people is related to the memory, depending on the machine of the tool)

Here is a simple scripting

  • Create a test.js
  • Enter the following content and then archive

    import http from "k6/http";
    import { check } from "k6";
    
    export default function() {
      check(http.get("www.targetweb.com"), {
        "status is 200": (r) => r.status == 200,
      });
    }
  • Use the following instructions to operate the tool
    K6 --vus=10 --duration=300s test.js
  • Will use 10 people to continuously connect to the website for 300 seconds
  • Finally count the data of the connection time

Recent posts

Categories

About

GCS SRE TEAM