From zero to your first load test in about 5 minutes. No framework knowledge required.
Hit Get started free on the homepage and sign in with Google. You'll land on your dashboard with a default org already set up. No credit card, no trial timer.
Before you can test a domain, you need to prove you own it. Go to Settings → Domains and add your domain (e.g. api.yourapp.com).
LoadBolt will give you a DNS TXT record to add. Once the record propagates (usually a few minutes), click verify. That's it — you can now run load tests against that domain.
From your dashboard, create a new project (think of it as a folder for related tests). Then create a test inside that project.
For your first test, keep it simple:
https://api.yourapp.com/health)LoadBolt auto-generates a k6 script for you based on these settings. You don't need to write any code.
Hit Run test. Your test gets queued, a worker picks it up (usually within 30 seconds), and you'll see live metrics start streaming in: requests per second, latency percentiles, error rates — all updating in real-time.
Once the test finishes, you get a full results page with:
If your p95 latency is under 500ms and your error rate is near zero, your app is handling the load fine. If not, you've found something worth investigating before real users hit it.
The auto-generated script just hits a single URL. For more realistic tests, you can write custom k6 scripts in JavaScript. Here's a simple example that tests a login flow:
import http from "k6/http";
import { check, sleep } from "k6";
export default function () {
// Hit the homepage
const home = http.get("https://yourapp.com");
check(home, { "homepage 200": (r) => r.status === 200 });
// Log in
const login = http.post("https://yourapp.com/api/login", JSON.stringify({
email: "loadtest@yourapp.com",
password: "test-password",
}), { headers: { "Content-Type": "application/json" } });
check(login, { "login 200": (r) => r.status === 200 });
// Simulate think time between actions
sleep(1);
// Hit an authenticated endpoint
const token = login.json("token");
const dashboard = http.get("https://yourapp.com/api/dashboard", {
headers: { Authorization: `Bearer ${token}` },
});
check(dashboard, { "dashboard 200": (r) => r.status === 200 });
}Paste this into the script editor, adjust the URLs and credentials, and run it. Each virtual user will execute this entire flow in a loop for the duration of the test.
k6 has great docs if you want to go deeper — grafana.com/docs/k6. Everything you can do in k6, you can do in LoadBolt.