Telemetry system

This commit is contained in:
2026-06-02 19:27:09 +02:00
parent 6799e63993
commit e265e2d303
2 changed files with 113 additions and 0 deletions

12
k6.js Normal file
View File

@@ -0,0 +1,12 @@
import http from "k6/http";
import { sleep } from "k6";
export const options = {
iterations: 100,
};
export default function () {
http.get("http://localhost:3001/abcdefghij");
sleep(0.2);
}