mirror of
https://github.com/turbot/steampipe.git
synced 2026-05-11 09:03:13 -04:00
14 lines
497 B
Bash
Executable File
14 lines
497 B
Bash
Executable File
for i in {1..10}; do
|
|
echo "############################################################### STARTING"
|
|
STEAMPIPE_LOG=trace steampipe service start
|
|
ps -ef | grep steampipe
|
|
STEAMPIPE_LOG=trace steampipe query "select pg_sleep(10)" &
|
|
|
|
echo "############################################################### KILLING"
|
|
pkill -9 steampipe
|
|
ps -ef | grep steampipe
|
|
pkill -9 postgres
|
|
ps -ef | grep steampipe
|
|
echo "############################################################### DONE"
|
|
done
|