From 946c26fd86b31db817653d68c120cffc050e91ae Mon Sep 17 00:00:00 2001 From: Ilyass bougati Date: Sun, 11 Jan 2026 23:02:12 +0100 Subject: [PATCH] Added controller config --- k6/loadtest.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/k6/loadtest.js b/k6/loadtest.js index 72ece10..2684faa 100644 --- a/k6/loadtest.js +++ b/k6/loadtest.js @@ -4,8 +4,8 @@ import { check, sleep } from 'k6'; import { randomString } from 'https://jslib.k6.io/k6-utils/1.2.0/index.js'; import { Counter, Trend } from 'k6/metrics'; -const BASE_URL = `https://ubuntu-server.tail2081a0.ts.net`; -const WS_URL = `wss://ubuntu-server.tail2081a0.ts.net/ws/websocket`; +const BASE_URL = `http://localhost:8080`; +const WS_URL = `ws://localhost:8080/ws/websocket`; const registrationDuration = new Trend('auth_register_duration'); // Track time to register const loginDuration = new Trend('auth_login_duration'); // Track time to login