Explorar el Código

adjust req counts based on app responsiveness

Grega Bremec hace 7 meses
padre
commit
1e475650d6
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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