-
Notifications
You must be signed in to change notification settings - Fork 1
0. Checklist of load testing metrics
Rajendra Prasad Reddy Penumalli edited this page Sep 29, 2019
·
1 revision
- Web Server Metrics
- Busy and idle threads - Do you need more web servers or works?
- Throughput - How many transactions per second can you handle?
- Bandwidth Requirements - Is the network creating a bottleneck?
- App Server Metrics
- Load distribution - Do you need more application servers?
- CPU usage - How much CPU usage do you need for each load?
- Memory usage - Are there any memory leaks?
- Worker threads - Are workers correctly configured?
- Host Metrics
- CPU, memory, disk - Are there problems with network interfaces?
- Key processes - What processes are running on the host?
- App Metrics
- Time spent in logic layer - What layer slows down with an increased load?
- Number of calls in logic layer - How often are you calling internal web services?
- API Metrics
- Transactions per second - How much throughput can you handle?
- Bits per second - Is data a bottleneck?