Skip to content
Snippets Groups Projects
Commit 63b5476d authored by David Georg Reichelt's avatar David Georg Reichelt
Browse files

Add script for different call tree depths to Kieker

parent 213060e2
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
RESULTS_DIR=results-kieker/
mkdir -p $RESULTS_DIR
for depth in 2 4 8 16 32 64 128
do
export RECURSION_DEPTH=$depth
echo "Running $depth"
./benchmark.sh &> results-opentelemetry/$depth.txt
mv $RESULTS_DIR/results.zip $RESULTS_DIR/results-$RECURSION_DEPTH.zip
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment