text-generation-inference/load_tests/benchmarks/templates/k6_constant_vus.js.j2

14 lines
307 B
Plaintext
Raw Normal View History

2024-07-11 09:45:24 +00:00
{% include 'main.js.j2' %}
export function get_options() {
return {
scenarios: {
load_test: {
executor: 'constant-vus',
gracefulStop: '0s',
duration: '{{ duration }}',
vus: {{ vus }},
},
},
};
}