Documents

Introduce your web application URL

This is the URL that will be targeted during the performance

Select Performance Test Parameters

The performance test parameters define the load test execution. Learn more

This is the number of users simulating the load during the test

This is the duration of the test in seconds.

Review & Start Performance Test

The performance test parameters define the load test execution. Learn more about load testing strategieshere.

Below is the script that will be executed for the performance test, using k6 load testing tool.

JavaScriptdefault-load-test.js
import http from 'k6/http';import { sleep } from 'k6';export const options = {  vus: 1000,  duration: "10s",};export default function () {  http.get("https://www.example.com");  sleep(1);}