-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathendpoint_test.txt
19 lines (11 loc) · 1.3 KB
/
endpoint_test.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
cd && echo "GET https://tmm.azure.blu-beyond.com/translations/api_performance_test/en" | vegeta attack -duration=5s -rate=1 -output=results-veg-httpbin-get.bin && cat results-veg-httpbin-get.bin | vegeta plot --title="HTTP Bin GET 10 rps for 30 seconds" > http-bin-get-10rps-30seconds.html
ODER:
https://tmm.azure.blu-beyond.com/translations/performance_test_no_nesting/en
echo "GET https://tmm.azure.blu-beyond.com/translations/performance_test/en" | vegeta attack -name=50qps -rate=1 -duration=10s -connections=1 > results.50qps.bin
+
cat results.50qps.bin | vegeta plot > plot.50qps.html
Rate: Number of requests per time unit [0 = infinity] (default 50/1s)
No Nesting call:
cd && echo "GET https://tmm.azure.blu-beyond.com/translations/performance_test_no_nesting/en/?format=json" | vegeta attack -duration=30s -rate=1 -output=results-veg-httpbin-get.bin && cat results-veg-httpbin-get.bin | vegeta plot --title="HTTP Bin GET 1 rps for 30 seconds (no nesting)" > http-bin-get-1rps-30seconds.html
With Nesting:
cd && echo "GET https://tmm.azure.blu-beyond.com/translations/performance_test/en/?format=json" | vegeta attack -duration=30s -rate=1 -output=results-veg-httpbin-get.bin && cat results-veg-httpbin-get.bin | vegeta plot --title="HTTP Bin GET 1 rps for 30 seconds" > http-bin-get-1rps-30seconds_with_nesting.html