Skip to content

Commit

Permalink
Add logging to log-analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
vagos committed Oct 22, 2024
1 parent 9392cfd commit 42b5115
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions log-analysis/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ if [[ "$@" == *"--small"* ]]; then
suffix=".small"
fi

$scripts_dir/nginx.sh $nginx_input $results_dir/nginx$suffix
$scripts_dir/pcaps.sh $pcaps_input $results_dir/pcaps$suffix
echo "nginx"
time $scripts_dir/nginx.sh $nginx_input $results_dir/nginx$suffix
echo $?

echo "pcaps"
time $scripts_dir/pcaps.sh $pcaps_input $results_dir/pcaps$suffix
echo $?

0 comments on commit 42b5115

Please sign in to comment.