Skip to content

Commit a5823bc

Browse files
committed
Fix k6 activity-ramp defaults and run_id tagging
1 parent 1c64321 commit a5823bc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

benchmarks/k6/activity-ramp.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export function teardown(data: { runId: string }) {
139139

140140
function loadConfig(): Config {
141141
const baseUrl = trimRight(requiredEnv('HYPEMAN_BASE_URL', 'http://127.0.0.1:8080'), '/');
142-
const ingressHostPort = intEnv('HYPEMAN_INGRESS_HOST_PORT', 8081);
142+
const ingressHostPort = intEnv('HYPEMAN_INGRESS_HOST_PORT', 80);
143143

144144
return {
145145
baseUrl,
@@ -297,7 +297,7 @@ function createInstance(name: string, tags: Tags): boolean {
297297
tags: {
298298
benchmark: 'activity-ramp',
299299
hypervisor: config.hypervisor || 'server-default',
300-
run_id: config.runId,
300+
run_id: tags.run_id,
301301
},
302302
skip_kernel_headers: true,
303303
};

0 commit comments

Comments
 (0)