浏览代码

adjust req counts based on app responsiveness

Grega Bremec 7 月之前
父节点
当前提交
1e475650d6
共有 1 个文件被更改,包括 2 次插入2 次删除
  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