Reputation: 2697
I am doing load testing using locust. I write a script and set up everything for load testing.
Only two points I do not understand actually,
What is the meaning of the below numbers? e.g
Number of total users to simulate
Hatch rate (users spawned/second)
What will be the appropriate value for these two options?
Upvotes: 13
Views: 13527
Reputation: 7401
for example:
Each second 10 users added to current users starting from 0 so in 100 seconds you will have 1000 users. When it reaches to the number of users, the statistic will be reset.
Upvotes: 18