Browse Source

adjust req counts based on app responsiveness

Grega Bremec 7 tháng trước cách đây
mục cha
commit
1e475650d6
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      labs/monitoring/apps/traffic-simulator.sh

+ 2 - 2
labs/monitoring/apps/traffic-simulator.sh

@@ -2,7 +2,7 @@
 
 while true;
 do
-    siege -c20 -r100 http://frontend-monitoring-apps.apps.ocp4.example.com/ > /dev/null &
-    siege -c20 -r100 http://exoplanets-monitor.apps.ocp4.example.com/ > /dev/null &
+    siege -c20 -r1000 http://frontend-monitoring-apps.apps.ocp4.example.com/ > /dev/null &
+    siege -c20 -r20 http://exoplanets-monitor.apps.ocp4.example.com/ > /dev/null &
     sleep 30
 done