Last active
May 9, 2020 20:38
-
-
Save ppcano/14d66b7b3ec6993ed63eaed8f2ebecae to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import http from "k6/http"; | |
import {group} from "k6"; | |
import { Counter } from "k6/metrics"; | |
//adding these metrics to count each group execution | |
var group1Counter = new Counter("counter_group1"); | |
var group2Counter = new Counter("counter_group2"); | |
export let options = { | |
vus: 20, | |
duration: "10s" | |
}; | |
export default function() { | |
const totalIterationID = __VU*10000 + __ITER; | |
// first group executes 33% | |
if (totalIterationID % 3 == 0) { | |
group1Counter.add(1); | |
group("read particular new", function() { | |
http.get("http://test.loadimpact.com/"); | |
}); | |
} else { | |
group2Counter.add(1); | |
group("navigate sport news", function() { | |
http.get("https://loadimpact.com/"); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@pawanshinha0612
This solution was discussed at https://community.k6.io/t/how-to-distribute-vus-across-different-scenarios-with-k6/49/2?u=ppcano
You cannot configure multiple scenarios with different load configurations at this moment, but grafana/k6#1007 will support it.