I have this links.csv file:
METHOD,HOST,PATH,HITS
GET,google.com,/,7
GET,facebook.com,/,3
I want to create a JMeter test plan using Ultimate Thread Group (UTG) that randomize the hits based on the last column in the CSV above (HITS).
When viewing the results tree, I want to see something like this:
1. google.com
2. google.com
3. facebook.com
4. google.com
5. google.com
6. google.com
7. google.com
8. google.com
9. facebook.com
10. facebook.com
Ideally, I want to set the UTG to use the following settings:
- Start Threads Count = sum of all hits in the CSV file (e.g. 7 + 3)
- Initial Delay = 0
- Startup Time = 60
- Hold Load For = 30
- Shutdown Time = 0
How to achieve this? I appreciate code samples and screenshots since I'm still new to JMeter.