I have a plan that looks like the following:
- thread group
- throughput controller for homepage (40%)
- sampler A
- throughput controller for page 1 (20%)
- sampler B
- throughput controller for signup and page view (40%)
- sampler C (for signup)
- sampler D (for https(logged in) page view 1)
- sampler E (for https(logged in) page view 2)
- throughput controller for homepage (40%)
Let's assume that the logged in page view 1 and 2 have to happen right after signup. Due to multiple samplers in the third throughput controller, it's not really possible to achieve the 40% (for that whole group).
For 10 threads, 1 loop, I expect to see the following counts:
- Sampler A: 4
- Sampler B: 2
- Sampler C + D + E: 4
but that's not happening. Any idea how I can achieve that?