-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.sh
executable file
·132 lines (95 loc) · 6.38 KB
/
script.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#!/bin/bash
# Verifique se os parâmetros foram fornecidos
if [ $# -ne 2 ]; then
echo "Uso: $0 <TEMPO_EXECUCAO_LOCUST> <users>"
exit 1
fi
# Atribua os parâmetros de entrada às variáveis
TEMPO_EXECUCAO_LOCUST=$1
users=$2
# Convertendo minutos para segundos
segundos=$((TEMPO_EXECUCAO_LOCUST * 60))
# Acrescentando 60 segundos ao tempo total
segundos=$((segundos + 40))
# Número total de iterações
TOTAL_ITERACOES=10
diretorio_atual=$(pwd)
for ((iteracao=1; iteracao<=$TOTAL_ITERACOES; iteracao++)); do
echo "Iniciando iteração $iteracao"
# Verifica se há contêineres Docker em execução e os para e remove
CONTAINER_ID=$(docker ps -q)
if [ -n "$CONTAINER_ID" ]; then
echo "Parando e removendo contêiner Docker em execução..."
docker stop $CONTAINER_ID
docker rm $CONTAINER_ID
fi
# Inicia a API em um terminal separado (background)
gnome-terminal -- bash -c "python3 ${diretorio_atual}/receive_teste2.py $iteracao; exec bash"
# Aguarda um breve momento antes de iniciar o cliente (ajuste conforme necessário)
sleep 10
# Inicia o cliente em um terminal separado (background)
gnome-terminal -- bash -c "python3 ${diretorio_atual}/client_app/app_client1_client.py --n $iteracao; exec bash"
# Aguarda um breve momento antes de iniciar o Locust (ajuste conforme necessário)
sleep 1
# Inicia o cliente em um terminal separado (background)
gnome-terminal -- bash -c "python3 ${diretorio_atual}/client_app/app_client2_client.py --n $iteracao; exec bash"
# Aguarda um breve momento antes de iniciar o Locust (ajuste conforme necessário)
sleep 1
# Inicia o cliente em um terminal separado (background)
gnome-terminal -- bash -c "python3 ${diretorio_atual}/client_app/app_client3_client.py --n $iteracao; exec bash"
# Aguarda um breve momento antes de iniciar o Locust (ajuste conforme necessário)
sleep 1
# Inicia o cliente em um terminal separado (background)
gnome-terminal -- bash -c "python3 ${diretorio_atual}/client_app/app_client4_client.py --n $iteracao; exec bash"
# Aguarda um breve momento antes de iniciar o Locust (ajuste conforme necessário)
sleep 1
# Inicia o cliente em um terminal separado (background)
gnome-terminal -- bash -c "python3 ${diretorio_atual}/client_app/app_client5_client.py --n $iteracao; exec bash"
# Aguarda um breve momento antes de iniciar o Locust (ajuste conforme necessário)
sleep 1
# Inicia o cliente em um terminal separado (background)
gnome-terminal -- bash -c "python3 ${diretorio_atual}/client_app/app_client6_client.py --n $iteracao; exec bash"
# Aguarda um breve momento antes de iniciar o Locust (ajuste conforme necessário)
sleep 1
# Inicia o cliente em um terminal separado (background)
gnome-terminal -- bash -c "python3 ${diretorio_atual}/client_app/app_client7_client.py --n $iteracao; exec bash"
# Aguarda um breve momento antes de iniciar o Locust (ajuste conforme necessário)
sleep 1
# Inicia o cliente em um terminal separado (background)
gnome-terminal -- bash -c "python3 ${diretorio_atual}/client_app/app_client8_client.py --n $iteracao; exec bash"
# Aguarda um breve momento antes de iniciar o Locust (ajuste conforme necessário)
#sleep 1
# Inicia o cliente em um terminal separado (background)
#gnome-terminal -- bash -c "python3 ${diretorio_atual}/client_app/app_client9_client.py --n $iteracao; exec bash"
# Aguarda um breve momento antes de iniciar o Locust (ajuste conforme necessário)
#sleep 1
# Inicia o cliente em um terminal separado (background)
#gnome-terminal -- bash -c "python3 ${diretorio_atual}/client_app/app_client10_client.py --n $iteracao; exec bash"
# Aguarda um breve momento antes de iniciar o Locust (ajuste conforme necessário)
sleep 2
# Inicia o Locust em um terminal separado (background)
#gnome-terminal -- bash -c "locust -f ${diretorio_atual}/Dataset_flexran/locustfile_2.py --host=http://127.0.0.1:5000 --web-host=0.0.0.0 --autostart --run-time ${TEMPO_EXECUCAO_LOCUST}m -u ${users} -r ${users} --html=${diretorio_atual}/locust/${TEMPO_EXECUCAO_LOCUST}_minutos_client_${users}users_1s_2_mec_apps/time_${TEMPO_EXECUCAO_LOCUST}m_client_${iteracao}_${users}.html --autoquit ${TEMPO_EXECUCAO_LOCUST}; exec bash"
# Inicia o Locust em um terminal separado (background)
gnome-terminal -- bash -c "locust -f ${diretorio_atual}/Dataset_flexran/locustfile_2.py --host=http://127.0.0.1:5000 --web-host=0.0.0.0 --autostart --run-time ${TEMPO_EXECUCAO_LOCUST}m -u ${users} -r ${users} --html=${diretorio_atual}/locust/${TEMPO_EXECUCAO_LOCUST}_minutos_client_${users}users_1s_8_mec_apps_Threads/time_${TEMPO_EXECUCAO_LOCUST}m_client_${iteracao}_${users}.html --autoquit ${TEMPO_EXECUCAO_LOCUST} && sleep 2"
# Aguardando o tempo em segundos
sleep $segundos
pkill -f "locust -f ${diretorio_atual}/Dataset_flexran/locustfile_2.py"
#wait
# Finaliza os processos da API e do Cliente (ajuste conforme necessário)
pkill -f "python3 ${diretorio_atual}/receive_teste2.py"
pkill -f "python3 ${diretorio_atual}/client_app/app_client1_client.py"
pkill -f "python3 ${diretorio_atual}/client_app/app_client2_client.py"
pkill -f "python3 ${diretorio_atual}/client_app/app_client3_client.py"
pkill -f "python3 ${diretorio_atual}/client_app/app_client4_client.py"
pkill -f "python3 ${diretorio_atual}/client_app/app_client5_client.py"
pkill -f "python3 ${diretorio_atual}/client_app/app_client6_client.py"
pkill -f "python3 ${diretorio_atual}/client_app/app_client7_client.py"
pkill -f "python3 ${diretorio_atual}/client_app/app_client8_client.py"
#pkill -f "python3 ${diretorio_atual}/client_app/app_client10_client.py"
#pkill -f "locust -f ${diretorio_atual}/Dataset_flexran/locustfile_2.py --host=http://127.0.0.1:5000 --web-host=0.0.0.0 --autostart --run-time ${TEMPO_EXECUCAO_LOCUST}m -u ${users} -r ${users} --html=${diretorio_atual}/locust/${TEMPO_EXECUCAO_LOCUST}_minutos_client_${users}users_1s_2_mec_apps/time_${TEMPO_EXECUCAO_LOCUST}m_client_${iteracao}_${users}.html --autoquit ${TEMPO_EXECUCAO_LOCUST}"
rm -f "/l/disk0/mcunha/Documentos/ufg/MEC_RNIS/applications.db"
echo "Iteração $iteracao concluída. Aguardando próxima iteração."
# Aguarda um intervalo entre as iterações (ajuste conforme necessário)
sleep 10
done
echo "Todas as iterações concluídas."