diff --git a/frameworks/Kieker/scripts/runExponentialSizes.sh b/frameworks/Kieker/scripts/runExponentialSizes.sh
new file mode 100755
index 0000000000000000000000000000000000000000..fb9fa117724068fda7dd948dddb5b84cb7cb9b68
--- /dev/null
+++ b/frameworks/Kieker/scripts/runExponentialSizes.sh
@@ -0,0 +1,12 @@
+#!/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