perf-test-default-settings.rc 611 B

1234567891011121314151617
  1. # Default settings for running performance tests.
  2. # To customize, copy this file to perf-test-settings.rc and change desired settings.
  3. # wrk settings
  4. test_warmup_seconds=30
  5. test_time_seconds=90
  6. test_num_connections=5
  7. test_num_threads=5
  8. # endpoionts to test
  9. declare -A endpoints
  10. endpoints['<1MS']='http://localhost:8080/work'
  11. endpoints['1MS']='http://localhost:8080/work?workTimeMS=1'
  12. endpoints['2MS']='http://localhost:8080/work?workTimeMS=2'
  13. endpoints['5MS']='http://localhost:8080/work?workTimeMS=5'
  14. endpoints['10MS']='http://localhost:8080/work?workTimeMS=10'
  15. test_order=( '<1MS' '1MS' '2MS' '5MS' '10MS' )