From 77e399fcc11f45abb9cc6c0edc7e5d3c216fa606 Mon Sep 17 00:00:00 2001
From: Reiner Jung <reiner.jung@email.uni-kiel.de>
Date: Wed, 22 Jun 2022 16:17:54 +0200
Subject: [PATCH] Fixed MORE_PARAMS and RECURSION_DEPTH

---
 bin/2012-msept/run-benchmark-cycle-async.sh   | 32 ++++++++---------
 bin/2012-msept/run-benchmark-cycle-sync.sh    |  8 ++---
 .../run-benchmark-recursive-linear.sh         | 34 +++++++++---------
 bin/2012-msept/run-benchmark-recursive.sh     | 32 ++++++++---------
 .../benchmark-kieker-days-ffi-remote.sh       | 36 +++++++++----------
 .../benchmark-kieker-days-ffi.sh              | 36 +++++++++----------
 .../benchmark-kieker-days-kieker.sh           | 36 +++++++++----------
 .../benchmark-kieker-days-ffi-remote.sh       | 28 +++++++--------
 .../benchmark-kieker-days-ffi.sh              | 36 +++++++++----------
 .../benchmark-kieker-days-kieker-remote.sh    | 28 +++++++--------
 .../benchmark-kieker-days-kieker.sh           | 36 +++++++++----------
 bin/2013-kieker-days/only_r.sh                | 10 +++---
 bin/2014-icpe/benchmark-disk-writer.sh        | 36 +++++++++----------
 bin/2014-icpe/benchmark-tcp-kieker.sh         | 10 +++---
 frameworks/OpenTelemetry/benchmark.sh         |  2 +-
 frameworks/SPASSmeter/benchmark-causes.sh     |  4 +--
 frameworks/SPASSmeter/benchmark-tcp.sh        | 10 +++---
 frameworks/SPASSmeter/benchmark.sh            |  4 +--
 18 files changed, 210 insertions(+), 208 deletions(-)

diff --git a/bin/2012-msept/run-benchmark-cycle-async.sh b/bin/2012-msept/run-benchmark-cycle-async.sh
index ed5b6f0..ab6b636 100644
--- a/bin/2012-msept/run-benchmark-cycle-async.sh
+++ b/bin/2012-msept/run-benchmark-cycle-async.sh
@@ -64,10 +64,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-1.txt &
         ${BINDJAVA} java  ${JAVA_ARGS_NOINSTR} ${JAR} \
             --output-filename ${RESULTSFN}-${i}-${j}-1.csv \
-            --totalcalls ${TOTAL_CALLS} \
-            --methodtime ${METHOD_TIME} \
-            --totalthreads ${THREADS} \
-            --recursiondepth ${j}
+            --total-calls ${TOTAL_CALLS} \
+            --method-time ${METHOD_TIME} \
+            --total-threads ${THREADS} \
+            --recursion-depth ${j}
         kill %mpstat
         kill %vmstat
         kill %iostat
@@ -82,10 +82,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-2.txt &
         ${BINDJAVA} java  ${JAVA_ARGS_KIEKER_DEACTV} ${JAR} \
             --output-filename ${RESULTSFN}-${i}-${j}-2.csv \
-            --totalcalls ${TOTAL_CALLS} \
-            --methodtime ${METHOD_TIME} \
-            --totalthreads ${THREADS} \
-            --recursiondepth ${j}
+            --total-calls ${TOTAL_CALLS} \
+            --method-time ${METHOD_TIME} \
+            --total-threads ${THREADS} \
+            --recursion-depth ${j}
         kill %mpstat
         kill %vmstat
         kill %iostat
@@ -102,10 +102,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-3.txt &
         ${BINDJAVA} java  ${JAVA_ARGS_KIEKER_NOLOGGING} ${JAR} \
             --output-filename ${RESULTSFN}-${i}-${j}-3.csv \
-            --totalcalls ${TOTAL_CALLS} \
-            --methodtime ${METHOD_TIME} \
-            --totalthreads ${THREADS} \
-            --recursiondepth ${j}
+            --total-calls ${TOTAL_CALLS} \
+            --method-time ${METHOD_TIME} \
+            --total-threads ${THREADS} \
+            --recursion-depth ${j}
         kill %mpstat
         kill %vmstat
         kill %iostat
@@ -122,10 +122,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-4.txt &
         ${BINDJAVA} java  ${JAVA_ARGS_KIEKER_LOGGING} ${JAR} \
             --output-filename ${RESULTSFN}-${i}-${j}-4.csv \
-            --totalcalls ${TOTAL_CALLS} \
-            --methodtime ${METHOD_TIME} \
-            --totalthreads ${THREADS} \
-            --recursiondepth ${j}
+            --total-calls ${TOTAL_CALLS} \
+            --method-time ${METHOD_TIME} \
+            --total-threads ${THREADS} \
+            --recursion-depth ${j}
         kill %mpstat
         kill %vmstat
         kill %iostat
diff --git a/bin/2012-msept/run-benchmark-cycle-sync.sh b/bin/2012-msept/run-benchmark-cycle-sync.sh
index 5a7b338..b6d73b0 100644
--- a/bin/2012-msept/run-benchmark-cycle-sync.sh
+++ b/bin/2012-msept/run-benchmark-cycle-sync.sh
@@ -122,10 +122,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-4.txt &
         ${BINDJAVA} java  ${JAVA_ARGS_KIEKER_LOGGING} ${JAR} \
             --output-filename ${RESULTSFN}-${i}-${j}-4.csv \
-            --totalcalls ${TOTAL_CALLS} \
-            --methodtime ${METHOD_TIME} \
-            --totalthreads ${THREADS} \
-            --recursiondepth ${j}
+            --total-calls ${TOTAL_CALLS} \
+            --method-time ${METHOD_TIME} \
+            --total-threads ${THREADS} \
+            --recursion-depth ${j}
         kill %mpstat
         kill %vmstat
         kill %iostat
diff --git a/bin/2012-msept/run-benchmark-recursive-linear.sh b/bin/2012-msept/run-benchmark-recursive-linear.sh
index 0f0d898..5bc6256 100644
--- a/bin/2012-msept/run-benchmark-recursive-linear.sh
+++ b/bin/2012-msept/run-benchmark-recursive-linear.sh
@@ -81,10 +81,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-1.txt &
         ${BINDJAVA} java  ${JAVA_ARGS_NOINSTR} ${JAR} \
             --output-filename ${RESULTSFN}-${i}-${j}-1.csv \
-            --totalcalls ${TOTAL_CALLS} \
-            --methodtime ${METHOD_TIME} \
-            --totalthreads ${THREADS} \
-            --recursiondepth ${RECDEPTH}
+            --total-calls ${TOTAL_CALLS} \
+            --method-time ${METHOD_TIME} \
+            --total-threads ${THREADS} \
+            --recursion-depth ${RECDEPTH}
         kill %mpstat
         kill %vmstat
         kill %iostat
@@ -99,10 +99,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-2.txt &
         ${BINDJAVA} java  ${JAVA_ARGS_KIEKER_DEACTV} ${JAR} \
             --output-filename ${RESULTSFN}-${i}-${j}-2.csv \
-            --totalcalls ${TOTAL_CALLS} \
-            --methodtime ${METHOD_TIME} \
-            --totalthreads ${THREADS} \
-            --recursiondepth ${RECDEPTH}
+            --total-calls ${TOTAL_CALLS} \
+            --method-time ${METHOD_TIME} \
+            --total-threads ${THREADS} \
+            --recursion-depth ${RECDEPTH}
         kill %mpstat
         kill %vmstat
         kill %iostat
@@ -119,10 +119,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-3.txt &
         ${BINDJAVA} java  ${JAVA_ARGS_KIEKER_NOLOGGING} ${JAR} \
             --output-filename ${RESULTSFN}-${i}-${j}-3.csv \
-            --totalcalls ${TOTAL_CALLS} \
-            --methodtime ${METHOD_TIME} \
-            --totalthreads ${THREADS} \
-            --recursiondepth ${RECDEPTH}
+            --total-calls ${TOTAL_CALLS} \
+            --method-time ${METHOD_TIME} \
+            --total-threads ${THREADS} \
+            --recursion-depth ${RECDEPTH}
         kill %mpstat
         kill %vmstat
         kill %iostat
@@ -139,10 +139,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-4.txt &
         ${BINDJAVA} java  ${JAVA_ARGS_KIEKER_LOGGING} ${JAR} \
             --output-filename ${RESULTSFN}-${i}-${j}-4.csv \
-            --totalcalls ${TOTAL_CALLS} \
-            --methodtime ${METHOD_TIME} \
-            --totalthreads ${THREADS} \
-            --recursiondepth ${RECDEPTH}
+            --total-calls ${TOTAL_CALLS} \
+            --method-time ${METHOD_TIME} \
+            --total-threads ${THREADS} \
+            --recursion-depth ${RECDEPTH}
         kill %mpstat
         kill %vmstat
         kill %iostat
@@ -167,3 +167,5 @@ mv ${BASE_DIR}/kieker.log ${RESULTS_DIR}/kieker.log
 [ -f ${RESULTS_DIR}/hotspot-1-1-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
 [ -f ${BASE_DIR}/nohup.out ] && mv ${BASE_DIR}/nohup.out ${RESULTS_DIR}
 [ -f ${BASE_DIR}/errorlog.txt ] && mv ${BASE_DIR}/errorlog.txt ${RESULTS_DIR}
+
+# end
diff --git a/bin/2012-msept/run-benchmark-recursive.sh b/bin/2012-msept/run-benchmark-recursive.sh
index 49d4530..d35445d 100644
--- a/bin/2012-msept/run-benchmark-recursive.sh
+++ b/bin/2012-msept/run-benchmark-recursive.sh
@@ -80,10 +80,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-1.txt &
         ${BINDJAVA} java  ${JAVA_ARGS_NOINSTR} ${JAR} \
             --output-filename ${RESULTSFN}-${i}-${j}-1.csv \
-            --totalcalls ${TOTAL_CALLS} \
-            --methodtime ${METHOD_TIME} \
-            --totalthreads ${THREADS} \
-            --recursiondepth ${j}
+            --total-calls ${TOTAL_CALLS} \
+            --method-time ${METHOD_TIME} \
+            --total-threads ${THREADS} \
+            --recursion-depth ${j}
         kill %mpstat
         kill %vmstat
         kill %iostat
@@ -98,10 +98,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-2.txt &
         ${BINDJAVA} java  ${JAVA_ARGS_KIEKER_DEACTV} ${JAR} \
             --output-filename ${RESULTSFN}-${i}-${j}-2.csv \
-            --totalcalls ${TOTAL_CALLS} \
-            --methodtime ${METHOD_TIME} \
-            --totalthreads ${THREADS} \
-            --recursiondepth ${j}
+            --total-calls ${TOTAL_CALLS} \
+            --method-time ${METHOD_TIME} \
+            --total-threads ${THREADS} \
+            --recursion-depth ${j}
         kill %mpstat
         kill %vmstat
         kill %iostat
@@ -118,10 +118,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-3.txt &
         ${BINDJAVA} java  ${JAVA_ARGS_KIEKER_NOLOGGING} ${JAR} \
             --output-filename ${RESULTSFN}-${i}-${j}-3.csv \
-            --totalcalls ${TOTAL_CALLS} \
-            --methodtime ${METHOD_TIME} \
-            --totalthreads ${THREADS} \
-            --recursiondepth ${j}
+            --total-calls ${TOTAL_CALLS} \
+            --method-time ${METHOD_TIME} \
+            --total-threads ${THREADS} \
+            --recursion-depth ${j}
         kill %mpstat
         kill %vmstat
         kill %iostat
@@ -138,10 +138,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-4.txt &
         ${BINDJAVA} java  ${JAVA_ARGS_KIEKER_LOGGING} ${JAR} \
             --output-filename ${RESULTSFN}-${i}-${j}-4.csv \
-            --totalcalls ${TOTAL_CALLS} \
-            --methodtime ${METHOD_TIME} \
-            --totalthreads ${THREADS} \
-            --recursiondepth ${j}
+            --total-calls ${TOTAL_CALLS} \
+            --method-time ${METHOD_TIME} \
+            --total-threads ${THREADS} \
+            --recursion-depth ${j}
         kill %mpstat
         kill %vmstat
         kill %iostat
diff --git a/bin/2013-kieker-days-ffi/benchmark-kieker-days-ffi-remote.sh b/bin/2013-kieker-days-ffi/benchmark-kieker-days-ffi-remote.sh
index 0119207..1c92f08 100644
--- a/bin/2013-kieker-days-ffi/benchmark-kieker-days-ffi-remote.sh
+++ b/bin/2013-kieker-days-ffi/benchmark-kieker-days-ffi-remote.sh
@@ -12,14 +12,14 @@ REMOTERESULTS_DIR="${REMOTEBASE_DIR}/tmp/results-benchmark-kieker-days-ffi/"
 SLEEP_TIME=1            ## 30
 NUM_LOOPS=1            ## 10
 THREADS=1               ## 1
-RECURSIONDEPTH=10       ## 10
+RECURSION_DEPTH=10       ## 10
 TOTAL_CALLS=2000000     ## 20000000
 METHOD_TIME=0            ## 0
 
-#MOREPARAMS=""
-MOREPARAMS="--quickstart"
+#MORE_PARAMS=""
+MORE_PARAMS="--quickstart"
 
-TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSIONDEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} `
+TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSION_DEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} `
 echo "Experiment will take circa ${TIME} seconds."
 
 echo "Removing and recreating '${RESULTS_DIR}'"
@@ -58,13 +58,13 @@ echo "NUM_LOOPS=${NUM_LOOPS}" >>${RESULTS_DIR}/configuration.txt
 echo "TOTAL_CALLS=${TOTAL_CALLS}" >>${RESULTS_DIR}/configuration.txt
 echo "METHOD_TIME=${METHOD_TIME}" >>${RESULTS_DIR}/configuration.txt
 echo "THREADS=${THREADS}" >>${RESULTS_DIR}/configuration.txt
-echo "RECURSIONDEPTH=${RECURSIONDEPTH}" >>${RESULTS_DIR}/configuration.txt
+echo "RECURSION_DEPTH=${RECURSION_DEPTH}" >>${RESULTS_DIR}/configuration.txt
 sync
 
 ## Execute Benchmark
 
 for ((i=1;i<=${NUM_LOOPS};i+=1)); do
-    j=${RECURSIONDEPTH}
+    j=${RECURSION_DEPTH}
     k=0
     echo "## Starting iteration ${i}/${NUM_LOOPS}"
 
@@ -78,7 +78,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
     sync
@@ -96,7 +96,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
 	ssh ${REMOTEHOST} "pkill -f 'java -jar'"
@@ -116,7 +116,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
 	ssh ${REMOTEHOST} "pkill -f 'java -jar'"
@@ -136,7 +136,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
 	ssh ${REMOTEHOST} "pkill -f 'java -jar'"
@@ -156,7 +156,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
 	ssh ${REMOTEHOST} "pkill -f 'java -jar'"
@@ -176,7 +176,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
 	ssh ${REMOTEHOST} "pkill -f 'java -jar'"
@@ -187,7 +187,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
 done
 zip -jqr ${RESULTS_DIR}/stat.zip ${RESULTS_DIR}/stat
 rm -rf ${RESULTS_DIR}/stat/
-[ -f ${RESULTS_DIR}/hotspot-1-${RECURSIONDEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
+[ -f ${RESULTS_DIR}/hotspot-1-${RECURSION_DEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
 [ -f ${BASE_DIR}/errorlog.txt ] && mv ${BASE_DIR}/errorlog.txt ${RESULTS_DIR}
 
 ## Generate Results file
@@ -196,7 +196,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -209,7 +209,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -222,7 +222,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -233,7 +233,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -245,7 +245,7 @@ results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-bars.pdf"
 outtxt_fn="${RESULTS_DIR}/results-text.txt"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 results.count=${TOTAL_CALLS}
 results.skip=${TOTAL_CALLS}/2
diff --git a/bin/2013-kieker-days-ffi/benchmark-kieker-days-ffi.sh b/bin/2013-kieker-days-ffi/benchmark-kieker-days-ffi.sh
index 3d4dd78..dbc3393 100644
--- a/bin/2013-kieker-days-ffi/benchmark-kieker-days-ffi.sh
+++ b/bin/2013-kieker-days-ffi/benchmark-kieker-days-ffi.sh
@@ -9,14 +9,14 @@ RESULTS_DIR="${BASE_DIR}/tmp/results-benchmark-kieker-days-ffi/"
 SLEEP_TIME=30            ## 30
 NUM_LOOPS=1            ## 10
 THREADS=1               ## 1
-RECURSIONDEPTH=10       ## 10
+RECURSION_DEPTH=10       ## 10
 TOTAL_CALLS=20000000     ## 20000000
 METHOD_TIME=0            ## 0
 
-MOREPARAMS=""
-#MOREPARAMS="--quickstart"
+MORE_PARAMS=""
+#MORE_PARAMS="--quickstart"
 
-TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSIONDEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} `
+TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSION_DEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} `
 echo "Experiment will take circa ${TIME} seconds."
 
 echo "Removing and recreating '${RESULTS_DIR}'"
@@ -52,13 +52,13 @@ echo "NUM_LOOPS=${NUM_LOOPS}" >>${RESULTS_DIR}/configuration.txt
 echo "TOTAL_CALLS=${TOTAL_CALLS}" >>${RESULTS_DIR}/configuration.txt
 echo "METHOD_TIME=${METHOD_TIME}" >>${RESULTS_DIR}/configuration.txt
 echo "THREADS=${THREADS}" >>${RESULTS_DIR}/configuration.txt
-echo "RECURSIONDEPTH=${RECURSIONDEPTH}" >>${RESULTS_DIR}/configuration.txt
+echo "RECURSION_DEPTH=${RECURSION_DEPTH}" >>${RESULTS_DIR}/configuration.txt
 sync
 
 ## Execute Benchmark
 
 for ((i=1;i<=${NUM_LOOPS};i+=1)); do
-    j=${RECURSIONDEPTH}
+    j=${RECURSION_DEPTH}
     k=0
     echo "## Starting iteration ${i}/${NUM_LOOPS}"
 
@@ -72,7 +72,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
     sync
@@ -90,7 +90,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
@@ -109,7 +109,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
@@ -128,7 +128,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
@@ -147,7 +147,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
@@ -166,7 +166,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
@@ -176,7 +176,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
 done
 zip -jqr ${RESULTS_DIR}/stat.zip ${RESULTS_DIR}/stat
 rm -rf ${RESULTS_DIR}/stat/
-[ -f ${RESULTS_DIR}/hotspot-1-${RECURSIONDEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
+[ -f ${RESULTS_DIR}/hotspot-1-${RECURSION_DEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
 [ -f ${BASE_DIR}/errorlog.txt ] && mv ${BASE_DIR}/errorlog.txt ${RESULTS_DIR}
 
 ## Generate Results file
@@ -185,7 +185,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -198,7 +198,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -211,7 +211,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -222,7 +222,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -234,7 +234,7 @@ results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-bars.pdf"
 outtxt_fn="${RESULTS_DIR}/results-text.txt"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 results.count=${TOTAL_CALLS}
 results.skip=${TOTAL_CALLS}/2
diff --git a/bin/2013-kieker-days-ffi/benchmark-kieker-days-kieker.sh b/bin/2013-kieker-days-ffi/benchmark-kieker-days-kieker.sh
index 2e534dc..39b84d3 100644
--- a/bin/2013-kieker-days-ffi/benchmark-kieker-days-kieker.sh
+++ b/bin/2013-kieker-days-ffi/benchmark-kieker-days-kieker.sh
@@ -9,14 +9,14 @@ RESULTS_DIR="${BASE_DIR}/tmp/results-benchmark-kieker-days-kieker/"
 SLEEP_TIME=30            ## 30
 NUM_LOOPS=1            ## 10
 THREADS=1               ## 1
-RECURSIONDEPTH=10       ## 10
+RECURSION_DEPTH=10       ## 10
 TOTAL_CALLS=2000000     ## 20000000
 METHOD_TIME=0            ## 0
 
-#MOREPARAMS=""
-MOREPARAMS="--quickstart"
+#MORE_PARAMS=""
+MORE_PARAMS="--quickstart"
 
-TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSIONDEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} `
+TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSION_DEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} `
 echo "Experiment will take circa ${TIME} seconds."
 
 echo "Removing and recreating '${RESULTS_DIR}'"
@@ -56,12 +56,12 @@ echo "NUM_LOOPS=${NUM_LOOPS}" >>${RESULTS_DIR}/configuration.txt
 echo "TOTAL_CALLS=${TOTAL_CALLS}" >>${RESULTS_DIR}/configuration.txt
 echo "METHOD_TIME=${METHOD_TIME}" >>${RESULTS_DIR}/configuration.txt
 echo "THREADS=${THREADS}" >>${RESULTS_DIR}/configuration.txt
-echo "RECURSIONDEPTH=${RECURSIONDEPTH}" >>${RESULTS_DIR}/configuration.txt
+echo "RECURSION_DEPTH=${RECURSION_DEPTH}" >>${RESULTS_DIR}/configuration.txt
 sync
 
 ## Execute Benchmark
 for ((i=1;i<=${NUM_LOOPS};i+=1)); do
-    j=${RECURSIONDEPTH}
+    j=${RECURSION_DEPTH}
     k=0
     echo "## Starting iteration ${i}/${NUM_LOOPS}"
     echo "## Starting iteration ${i}/${NUM_LOOPS}" >>${BASE_DIR}/kieker.log
@@ -79,7 +79,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -102,7 +102,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -125,7 +125,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -150,7 +150,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -177,7 +177,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -204,7 +204,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -220,7 +220,7 @@ done
 zip -jqr ${RESULTS_DIR}/stat.zip ${RESULTS_DIR}/stat
 rm -rf ${RESULTS_DIR}/stat/
 mv ${BASE_DIR}/kieker.log ${RESULTS_DIR}/kieker.log
-[ -f ${RESULTS_DIR}/hotspot-1-${RECURSIONDEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
+[ -f ${RESULTS_DIR}/hotspot-1-${RECURSION_DEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
 [ -f ${BASE_DIR}/errorlog.txt ] && mv ${BASE_DIR}/errorlog.txt ${RESULTS_DIR}
 
 ## Generate Results file
@@ -229,7 +229,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -242,7 +242,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -255,7 +255,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -266,7 +266,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -278,7 +278,7 @@ results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-bars.pdf"
 outtxt_fn="${RESULTS_DIR}/results-text.txt"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 results.count=${TOTAL_CALLS}
 results.skip=${TOTAL_CALLS}/2
diff --git a/bin/2013-kieker-days/benchmark-kieker-days-ffi-remote.sh b/bin/2013-kieker-days/benchmark-kieker-days-ffi-remote.sh
index f9cec2f..69ba00d 100644
--- a/bin/2013-kieker-days/benchmark-kieker-days-ffi-remote.sh
+++ b/bin/2013-kieker-days/benchmark-kieker-days-ffi-remote.sh
@@ -12,14 +12,14 @@ REMOTERESULTS_DIR="${REMOTEBASE_DIR}/tmp/results-benchmark-kieker-days-ffi/"
 SLEEP_TIME=30            ## 30
 NUM_LOOPS=10            ## 10
 THREADS=1               ## 1
-RECURSIONDEPTH=10       ## 10
+RECURSION_DEPTH=10       ## 10
 TOTAL_CALLS=100000000     ## 20000000
 METHOD_TIME=0            ## 0
 
-MOREPARAMS=""
-#MOREPARAMS="--quickstart"
+MORE_PARAMS=""
+#MORE_PARAMS="--quickstart"
 
-TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSIONDEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} `
+TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSION_DEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} `
 echo "Experiment will take circa ${TIME} seconds."
 
 echo "Removing and recreating '${RESULTS_DIR}'"
@@ -58,13 +58,13 @@ echo "NUM_LOOPS=${NUM_LOOPS}" >>${RESULTS_DIR}/configuration.txt
 echo "TOTAL_CALLS=${TOTAL_CALLS}" >>${RESULTS_DIR}/configuration.txt
 echo "METHOD_TIME=${METHOD_TIME}" >>${RESULTS_DIR}/configuration.txt
 echo "THREADS=${THREADS}" >>${RESULTS_DIR}/configuration.txt
-echo "RECURSIONDEPTH=${RECURSIONDEPTH}" >>${RESULTS_DIR}/configuration.txt
+echo "RECURSION_DEPTH=${RECURSION_DEPTH}" >>${RESULTS_DIR}/configuration.txt
 sync
 
 ## Execute Benchmark
 
 for ((i=1;i<=${NUM_LOOPS};i+=1)); do
-    j=${RECURSIONDEPTH}
+    j=${RECURSION_DEPTH}
     k=0
     echo "## Starting iteration ${i}/${NUM_LOOPS}"
     # No instrumentation
@@ -77,7 +77,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     #kill %sar
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
     sync
@@ -95,7 +95,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     #kill %sar
     killall java
 	ssh ${REMOTEHOST} "killall java"
@@ -115,7 +115,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     #kill %sar
     killall java
 	ssh ${REMOTEHOST} "killall java"
@@ -135,7 +135,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     #kill %sar
     killall java
 	ssh ${REMOTEHOST} "killall java"
@@ -155,7 +155,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     #kill %sar
     killall java
 	ssh ${REMOTEHOST} "killall java"
@@ -175,7 +175,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     #kill %sar
     killall java
 	ssh ${REMOTEHOST} "killall java"
@@ -186,7 +186,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
 done
 zip -jqr ${RESULTS_DIR}/stat.zip ${RESULTS_DIR}/stat
 rm -rf ${RESULTS_DIR}/stat/
-[ -f ${RESULTS_DIR}/hotspot-1-${RECURSIONDEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
+[ -f ${RESULTS_DIR}/hotspot-1-${RECURSION_DEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
 [ -f ${BASE_DIR}/errorlog.txt ] && mv ${BASE_DIR}/errorlog.txt ${RESULTS_DIR}
 
 ## Generate Results file
@@ -196,7 +196,7 @@ results_fn="${RAWFN}"
 outtxt_fn="${RESULTS_DIR}/results-text.txt"
 configs.threads=${THREADS}
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 results.count=${TOTAL_CALLS}
 results.skip=${TOTAL_CALLS}/2
diff --git a/bin/2013-kieker-days/benchmark-kieker-days-ffi.sh b/bin/2013-kieker-days/benchmark-kieker-days-ffi.sh
index 3d4dd78..dbc3393 100644
--- a/bin/2013-kieker-days/benchmark-kieker-days-ffi.sh
+++ b/bin/2013-kieker-days/benchmark-kieker-days-ffi.sh
@@ -9,14 +9,14 @@ RESULTS_DIR="${BASE_DIR}/tmp/results-benchmark-kieker-days-ffi/"
 SLEEP_TIME=30            ## 30
 NUM_LOOPS=1            ## 10
 THREADS=1               ## 1
-RECURSIONDEPTH=10       ## 10
+RECURSION_DEPTH=10       ## 10
 TOTAL_CALLS=20000000     ## 20000000
 METHOD_TIME=0            ## 0
 
-MOREPARAMS=""
-#MOREPARAMS="--quickstart"
+MORE_PARAMS=""
+#MORE_PARAMS="--quickstart"
 
-TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSIONDEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} `
+TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSION_DEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} `
 echo "Experiment will take circa ${TIME} seconds."
 
 echo "Removing and recreating '${RESULTS_DIR}'"
@@ -52,13 +52,13 @@ echo "NUM_LOOPS=${NUM_LOOPS}" >>${RESULTS_DIR}/configuration.txt
 echo "TOTAL_CALLS=${TOTAL_CALLS}" >>${RESULTS_DIR}/configuration.txt
 echo "METHOD_TIME=${METHOD_TIME}" >>${RESULTS_DIR}/configuration.txt
 echo "THREADS=${THREADS}" >>${RESULTS_DIR}/configuration.txt
-echo "RECURSIONDEPTH=${RECURSIONDEPTH}" >>${RESULTS_DIR}/configuration.txt
+echo "RECURSION_DEPTH=${RECURSION_DEPTH}" >>${RESULTS_DIR}/configuration.txt
 sync
 
 ## Execute Benchmark
 
 for ((i=1;i<=${NUM_LOOPS};i+=1)); do
-    j=${RECURSIONDEPTH}
+    j=${RECURSION_DEPTH}
     k=0
     echo "## Starting iteration ${i}/${NUM_LOOPS}"
 
@@ -72,7 +72,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
     sync
@@ -90,7 +90,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
@@ -109,7 +109,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
@@ -128,7 +128,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
@@ -147,7 +147,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
@@ -166,7 +166,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %sar
     pkill -f 'java -jar'
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
@@ -176,7 +176,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
 done
 zip -jqr ${RESULTS_DIR}/stat.zip ${RESULTS_DIR}/stat
 rm -rf ${RESULTS_DIR}/stat/
-[ -f ${RESULTS_DIR}/hotspot-1-${RECURSIONDEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
+[ -f ${RESULTS_DIR}/hotspot-1-${RECURSION_DEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
 [ -f ${BASE_DIR}/errorlog.txt ] && mv ${BASE_DIR}/errorlog.txt ${RESULTS_DIR}
 
 ## Generate Results file
@@ -185,7 +185,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -198,7 +198,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -211,7 +211,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -222,7 +222,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -234,7 +234,7 @@ results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-bars.pdf"
 outtxt_fn="${RESULTS_DIR}/results-text.txt"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 results.count=${TOTAL_CALLS}
 results.skip=${TOTAL_CALLS}/2
diff --git a/bin/2013-kieker-days/benchmark-kieker-days-kieker-remote.sh b/bin/2013-kieker-days/benchmark-kieker-days-kieker-remote.sh
index 3f8ed5b..e80bce0 100644
--- a/bin/2013-kieker-days/benchmark-kieker-days-kieker-remote.sh
+++ b/bin/2013-kieker-days/benchmark-kieker-days-kieker-remote.sh
@@ -12,14 +12,14 @@ REMOTERESULTS_DIR="${REMOTEBASE_DIR}/tmp/results-benchmark-kieker-days-kieker/"
 SLEEP_TIME=30            ## 30
 NUM_LOOPS=10            ## 10
 THREADS=1               ## 1
-RECURSIONDEPTH=10       ## 10
+RECURSION_DEPTH=10       ## 10
 TOTAL_CALLS=4000000     ## 20000000
 METHOD_TIME=0            ## 0
 
-MOREPARAMS=""
-#MOREPARAMS="--quickstart"
+MORE_PARAMS=""
+#MORE_PARAMS="--quickstart"
 
-TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSIONDEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} `
+TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSION_DEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} `
 echo "Experiment will take circa ${TIME} seconds."
 
 echo "Removing and recreating '${RESULTS_DIR}'"
@@ -62,12 +62,12 @@ echo "NUM_LOOPS=${NUM_LOOPS}" >>${RESULTS_DIR}/configuration.txt
 echo "TOTAL_CALLS=${TOTAL_CALLS}" >>${RESULTS_DIR}/configuration.txt
 echo "METHOD_TIME=${METHOD_TIME}" >>${RESULTS_DIR}/configuration.txt
 echo "THREADS=${THREADS}" >>${RESULTS_DIR}/configuration.txt
-echo "RECURSIONDEPTH=${RECURSIONDEPTH}" >>${RESULTS_DIR}/configuration.txt
+echo "RECURSION_DEPTH=${RECURSION_DEPTH}" >>${RESULTS_DIR}/configuration.txt
 sync
 
 ## Execute Benchmark
 for ((i=1;i<=${NUM_LOOPS};i+=1)); do
-    j=${RECURSIONDEPTH}
+    j=${RECURSION_DEPTH}
     k=0
     echo "## Starting iteration ${i}/${NUM_LOOPS}"
     echo "## Starting iteration ${i}/${NUM_LOOPS}" >>${BASE_DIR}/kieker.log
@@ -83,7 +83,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     #kill %sar
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
     echo >>${BASE_DIR}/kieker.log
@@ -102,7 +102,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     #kill %sar
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
     echo >>${BASE_DIR}/kieker.log
@@ -121,7 +121,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     #kill %sar
     [ -f ${BASE_DIR}/hotspot.log ] && mv ${BASE_DIR}/hotspot.log ${RESULTS_DIR}/hotspot-${i}-${j}-${k}.log
     echo >>${BASE_DIR}/kieker.log
@@ -142,7 +142,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     #kill %sar
     killall java
 	ssh ${REMOTEHOST} "killall java"
@@ -166,7 +166,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
 	#kill %sar
     killall java
 	ssh ${REMOTEHOST} "killall java"
@@ -190,7 +190,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
 	#kill %sar
     killall java
 	ssh ${REMOTEHOST} "killall java"
@@ -205,7 +205,7 @@ done
 zip -jqr ${RESULTS_DIR}/stat.zip ${RESULTS_DIR}/stat
 rm -rf ${RESULTS_DIR}/stat/
 mv ${BASE_DIR}/kieker.log ${RESULTS_DIR}/kieker.log
-[ -f ${RESULTS_DIR}/hotspot-1-${RECURSIONDEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
+[ -f ${RESULTS_DIR}/hotspot-1-${RECURSION_DEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
 [ -f ${BASE_DIR}/errorlog.txt ] && mv ${BASE_DIR}/errorlog.txt ${RESULTS_DIR}
 
 ## Generate Results file
@@ -215,7 +215,7 @@ results_fn="${RAWFN}"
 outtxt_fn="${RESULTS_DIR}/results-text.txt"
 configs.threads=${THREADS}
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 results.count=${TOTAL_CALLS}
 results.skip=${TOTAL_CALLS}/2
diff --git a/bin/2013-kieker-days/benchmark-kieker-days-kieker.sh b/bin/2013-kieker-days/benchmark-kieker-days-kieker.sh
index 2e534dc..39b84d3 100644
--- a/bin/2013-kieker-days/benchmark-kieker-days-kieker.sh
+++ b/bin/2013-kieker-days/benchmark-kieker-days-kieker.sh
@@ -9,14 +9,14 @@ RESULTS_DIR="${BASE_DIR}/tmp/results-benchmark-kieker-days-kieker/"
 SLEEP_TIME=30            ## 30
 NUM_LOOPS=1            ## 10
 THREADS=1               ## 1
-RECURSIONDEPTH=10       ## 10
+RECURSION_DEPTH=10       ## 10
 TOTAL_CALLS=2000000     ## 20000000
 METHOD_TIME=0            ## 0
 
-#MOREPARAMS=""
-MOREPARAMS="--quickstart"
+#MORE_PARAMS=""
+MORE_PARAMS="--quickstart"
 
-TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSIONDEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} `
+TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSION_DEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} `
 echo "Experiment will take circa ${TIME} seconds."
 
 echo "Removing and recreating '${RESULTS_DIR}'"
@@ -56,12 +56,12 @@ echo "NUM_LOOPS=${NUM_LOOPS}" >>${RESULTS_DIR}/configuration.txt
 echo "TOTAL_CALLS=${TOTAL_CALLS}" >>${RESULTS_DIR}/configuration.txt
 echo "METHOD_TIME=${METHOD_TIME}" >>${RESULTS_DIR}/configuration.txt
 echo "THREADS=${THREADS}" >>${RESULTS_DIR}/configuration.txt
-echo "RECURSIONDEPTH=${RECURSIONDEPTH}" >>${RESULTS_DIR}/configuration.txt
+echo "RECURSION_DEPTH=${RECURSION_DEPTH}" >>${RESULTS_DIR}/configuration.txt
 sync
 
 ## Execute Benchmark
 for ((i=1;i<=${NUM_LOOPS};i+=1)); do
-    j=${RECURSIONDEPTH}
+    j=${RECURSION_DEPTH}
     k=0
     echo "## Starting iteration ${i}/${NUM_LOOPS}"
     echo "## Starting iteration ${i}/${NUM_LOOPS}" >>${BASE_DIR}/kieker.log
@@ -79,7 +79,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -102,7 +102,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -125,7 +125,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -150,7 +150,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -177,7 +177,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -204,7 +204,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -220,7 +220,7 @@ done
 zip -jqr ${RESULTS_DIR}/stat.zip ${RESULTS_DIR}/stat
 rm -rf ${RESULTS_DIR}/stat/
 mv ${BASE_DIR}/kieker.log ${RESULTS_DIR}/kieker.log
-[ -f ${RESULTS_DIR}/hotspot-1-${RECURSIONDEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
+[ -f ${RESULTS_DIR}/hotspot-1-${RECURSION_DEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
 [ -f ${BASE_DIR}/errorlog.txt ] && mv ${BASE_DIR}/errorlog.txt ${RESULTS_DIR}
 
 ## Generate Results file
@@ -229,7 +229,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -242,7 +242,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -255,7 +255,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -266,7 +266,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -278,7 +278,7 @@ results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-bars.pdf"
 outtxt_fn="${RESULTS_DIR}/results-text.txt"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 results.count=${TOTAL_CALLS}
 results.skip=${TOTAL_CALLS}/2
diff --git a/bin/2013-kieker-days/only_r.sh b/bin/2013-kieker-days/only_r.sh
index cdbc31c..635775b 100644
--- a/bin/2013-kieker-days/only_r.sh
+++ b/bin/2013-kieker-days/only_r.sh
@@ -9,7 +9,7 @@ RESULTS_DIR="${BASE_DIR}/tmp/ffi-exp/"
 SLEEP_TIME=30            ## 30
 NUM_LOOPS=10            ## 10
 THREADS=1               ## 1
-RECURSIONDEPTH=10       ## 10
+RECURSION_DEPTH=10       ## 10
 TOTAL_CALLS=20000000     ## 20000000
 METHOD_TIME=0            ## 0
 
@@ -20,7 +20,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -33,7 +33,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -46,7 +46,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
@@ -57,7 +57,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","TCP Writer","Reconstruction","Reduction")
 configs.colors=c("black","red","blue","green","yellow","purple")
 results.count=${TOTAL_CALLS}
diff --git a/bin/2014-icpe/benchmark-disk-writer.sh b/bin/2014-icpe/benchmark-disk-writer.sh
index 511a977..3d41c38 100644
--- a/bin/2014-icpe/benchmark-disk-writer.sh
+++ b/bin/2014-icpe/benchmark-disk-writer.sh
@@ -9,14 +9,14 @@ RESULTS_DIR="${BASE_DIR}/tmp/results-benchmark-disk/"
 SLEEP_TIME=30            ## 30
 NUM_LOOPS=10            ## 10
 THREADS=1               ## 1
-RECURSIONDEPTH=10       ## 10
+RECURSION_DEPTH=10       ## 10
 TOTAL_CALLS=2000000      ## 2000000
 METHOD_TIME=0            ## 0
 
-MOREPARAMS=""
-#MOREPARAMS="--quickstart"
+MORE_PARAMS=""
+#MORE_PARAMS="--quickstart"
 
-TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSIONDEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} `
+TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSION_DEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} `
 echo "Experiment will take circa ${TIME} seconds."
 
 echo "Removing and recreating '${RESULTS_DIR}'"
@@ -58,12 +58,12 @@ echo "NUM_LOOPS=${NUM_LOOPS}" >>${RESULTS_DIR}/configuration.txt
 echo "TOTAL_CALLS=${TOTAL_CALLS}" >>${RESULTS_DIR}/configuration.txt
 echo "METHOD_TIME=${METHOD_TIME}" >>${RESULTS_DIR}/configuration.txt
 echo "THREADS=${THREADS}" >>${RESULTS_DIR}/configuration.txt
-echo "RECURSIONDEPTH=${RECURSIONDEPTH}" >>${RESULTS_DIR}/configuration.txt
+echo "RECURSION_DEPTH=${RECURSION_DEPTH}" >>${RESULTS_DIR}/configuration.txt
 sync
 
 ## Execute Benchmark
 for ((i=1;i<=${NUM_LOOPS};i+=1)); do
-    j=${RECURSIONDEPTH}
+    j=${RECURSION_DEPTH}
     k=0
     echo "## Starting iteration ${i}/${NUM_LOOPS}"
     echo "## Starting iteration ${i}/${NUM_LOOPS}" >>${BASE_DIR}/kieker.log
@@ -81,7 +81,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -104,7 +104,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -127,7 +127,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -150,7 +150,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -174,7 +174,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -198,7 +198,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
         --methodtime ${METHOD_TIME} \
         --totalthreads ${THREADS} \
         --recursiondepth ${j} \
-        ${MOREPARAMS}
+        ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
     kill %iostat
@@ -213,7 +213,7 @@ done
 zip -jqr ${RESULTS_DIR}/stat.zip ${RESULTS_DIR}/stat
 rm -rf ${RESULTS_DIR}/stat/
 mv ${BASE_DIR}/kieker.log ${RESULTS_DIR}/kieker.log
-[ -f ${RESULTS_DIR}/hotspot-1-${RECURSIONDEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
+[ -f ${RESULTS_DIR}/hotspot-1-${RECURSION_DEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
 [ -f ${BASE_DIR}/errorlog.txt ] && mv ${BASE_DIR}/errorlog.txt ${RESULTS_DIR}
 
 ## Generate Results file
@@ -222,7 +222,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","Writer1","Writer2","Writer3")
 configs.colors=c("black","red","blue","green","purple","pink")
 results.count=${TOTAL_CALLS}
@@ -235,7 +235,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-timeseries-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","Writer1","Writer2","Writer3")
 configs.colors=c("black","red","blue","green","purple","pink")
 results.count=${TOTAL_CALLS}
@@ -248,7 +248,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","Writer1","Writer2","Writer3")
 configs.colors=c("black","red","blue","green","purple","pink")
 results.count=${TOTAL_CALLS}
@@ -259,7 +259,7 @@ R --vanilla --silent <<EOF
 results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-throughput-average.pdf"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","Writer1","Writer2","Writer3")
 configs.colors=c("black","red","blue","green","purple","pink")
 results.count=${TOTAL_CALLS}
@@ -271,7 +271,7 @@ results_fn="${RAWFN}"
 output_fn="${RESULTS_DIR}/results-bars.pdf"
 outtxt_fn="${RESULTS_DIR}/results-text.txt"
 configs.loop=${NUM_LOOPS}
-configs.recursion=c(${RECURSIONDEPTH})
+configs.recursion=c(${RECURSION_DEPTH})
 configs.labels=c("No Probe","Deactivated Probe","Collecting Data","Writer1","Writer2","Writer3")
 results.count=${TOTAL_CALLS}
 results.skip=${TOTAL_CALLS}/2
diff --git a/bin/2014-icpe/benchmark-tcp-kieker.sh b/bin/2014-icpe/benchmark-tcp-kieker.sh
index be06e17..8204d72 100644
--- a/bin/2014-icpe/benchmark-tcp-kieker.sh
+++ b/bin/2014-icpe/benchmark-tcp-kieker.sh
@@ -75,10 +75,10 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
     iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-${k}.txt &
     ${JAVA_BIN}  ${JAVA_ARGS_NOINSTR} ${JAR} \
         --output-filename ${RAWFN}-${i}-${j}-${k}.csv \
-        --totalcalls ${TOTAL_CALLS} \
-        --methodtime ${METHOD_TIME} \
-        --totalthreads ${THREADS} \
-        --recursiondepth ${j} \
+        --total-calls ${TOTAL_CALLS} \
+        --method-time ${METHOD_TIME} \
+        --total-threads ${THREADS} \
+        --recursion-depth ${j} \
         ${MORE_PARAMS}
     kill %mpstat
     kill %vmstat
@@ -139,7 +139,7 @@ for ((i=1;i<=${NUM_LOOPS};i+=1)); do
     k=`expr ${k} + 1`
     echo " # ${i}.${j}.${k} Logging"
     echo " # ${i}.${j}.${k} Logging" >>${BASE_DIR}/kieker.log
-    mpstat 1 > "${RESULTS_DIR}/stat/mpstat-${i}-${j}-${k}.txt &
+    mpstat 1 > "${RESULTS_DIR}/stat/mpstat-${i}-${j}-${k}.txt" &
     vmstat 1 > ${RESULTS_DIR}/stat/vmstat-${i}-${j}-${k}.txt &
     iostat -xn 10 > ${RESULTS_DIR}/stat/iostat-${i}-${j}-${k}.txt &
     ${JAVA_BIN} -jar dist/KiekerTCPReader.jar >${RESULTS_DIR}/worker-${i}-${j}-${k}.log &
diff --git a/frameworks/OpenTelemetry/benchmark.sh b/frameworks/OpenTelemetry/benchmark.sh
index 075caef..fc60776 100644
--- a/frameworks/OpenTelemetry/benchmark.sh
+++ b/frameworks/OpenTelemetry/benchmark.sh
@@ -126,7 +126,7 @@ source ../common-functions.sh
 source labels.sh
 
 #MORE_PARAMS="--quickstart"
-MORE_PARAMS="--application moobench.application.MonitoredClassSimple ${MOREPARAMS}"
+MORE_PARAMS="--application moobench.application.MonitoredClassSimple ${MORE_PARAMS}"
 
 TIME=`expr ${METHOD_TIME} \* ${TOTAL_NUM_OF_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_OF_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_OF_LOOPS}  \* ${RECURSION_DEPTH} + 50 \* ${TOTAL_NUM_OF_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_OF_LOOPS} `
 echo "Experiment will take circa ${TIME} seconds."
diff --git a/frameworks/SPASSmeter/benchmark-causes.sh b/frameworks/SPASSmeter/benchmark-causes.sh
index f8b487e..81ccc69 100644
--- a/frameworks/SPASSmeter/benchmark-causes.sh
+++ b/frameworks/SPASSmeter/benchmark-causes.sh
@@ -57,7 +57,7 @@ echo "NUM_LOOPS=${NUM_LOOPS}" >> "${RESULTS_DIR}/configuration.txt"
 echo "TOTAL_CALLS=${TOTAL_CALLS}" >> "${RESULTS_DIR}/configuration.txt"
 echo "METHOD_TIME=${METHOD_TIME}" >> "${RESULTS_DIR}/configuration.txt"
 echo "THREADS=${THREADS}" >> "${RESULTS_DIR}/configuration.txt"
-echo "RECURSIONDEPTH=${RECURSION_DEPTH}" >> "${RESULTS_DIR}/configuration.txt"
+echo "RECURSION_DEPTH=${RECURSION_DEPTH}" >> "${RESULTS_DIR}/configuration.txt"
 sync
 
 ## Execute Benchmark
@@ -154,7 +154,7 @@ done
 #zip -jqr ${RESULTS_DIR}/stat.zip ${RESULTS_DIR}/stat
 #rm -rf ${RESULTS_DIR}/stat/
 mv "${BASE_DIR}/spassmeter.log" "${RESULTS_DIR}/spassmeter.log"
-[ -f "${RESULTS_DIR}/hotspot-1-${RECURSIONDEPTH}-1.log" ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log > "${RESULTS_DIR}/log.log"
+[ -f "${RESULTS_DIR}/hotspot-1-${RECURSION_DEPTH}-1.log" ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log > "${RESULTS_DIR}/log.log"
 [ -f "${BASE_DIR}/errorlog.txt" ] && mv "${BASE_DIR}/errorlog.txt" "${RESULTS_DIR}/"
 
 ## Clean up raw results
diff --git a/frameworks/SPASSmeter/benchmark-tcp.sh b/frameworks/SPASSmeter/benchmark-tcp.sh
index 92db530..7de3ca9 100644
--- a/frameworks/SPASSmeter/benchmark-tcp.sh
+++ b/frameworks/SPASSmeter/benchmark-tcp.sh
@@ -10,14 +10,14 @@ RESULTS_DIR="${BASE_DIR}/tmp/results-spassmeter/"
 SLEEP_TIME=30           ## 30
 NUM_LOOPS=10           ## 10
 THREADS=1              ## 1
-RECURSIONDEPTH=10      ## 10
+RECURSION_DEPTH=10      ## 10
 TOTAL_CALLS=2000000     ## 2000000
 METHOD_TIME=0      ## 500000
 
 #MORE_PARAMS="--quickstart"
 MORE_PARAMS="--application mooBench.monitoredApplication.MonitoredClassSimple ${MORE_PARAMS}"
 
-TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSIONDEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSIONDEPTH} \* ${NUM_LOOPS} `
+TIME=`expr ${METHOD_TIME} \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_LOOPS}  \* ${RECURSION_DEPTH} + 50 \* ${TOTAL_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_LOOPS} `
 echo "Experiment will take circa ${TIME} seconds."
 
 echo "Removing and recreating '${RESULTS_DIR}'"
@@ -57,12 +57,12 @@ echo "NUM_LOOPS=${NUM_LOOPS}" >>${RESULTS_DIR}/configuration.txt
 echo "TOTAL_CALLS=${TOTAL_CALLS}" >>${RESULTS_DIR}/configuration.txt
 echo "METHOD_TIME=${METHOD_TIME}" >>${RESULTS_DIR}/configuration.txt
 echo "THREADS=${THREADS}" >>${RESULTS_DIR}/configuration.txt
-echo "RECURSIONDEPTH=${RECURSIONDEPTH}" >>${RESULTS_DIR}/configuration.txt
+echo "RECURSION_DEPTH=${RECURSION_DEPTH}" >>${RESULTS_DIR}/configuration.txt
 sync
 
 ## Execute Benchmark
 for ((i=1;i<=${NUM_LOOPS};i+=1)); do
-    j=${RECURSIONDEPTH}
+    j=${RECURSION_DEPTH}
     k=0
     echo "## Starting iteration ${i}/${NUM_LOOPS}"
     echo "## Starting iteration ${i}/${NUM_LOOPS}" >>${BASE_DIR}/spassmeter.log
@@ -130,7 +130,7 @@ done
 #zip -jqr ${RESULTS_DIR}/stat.zip ${RESULTS_DIR}/stat
 #rm -rf ${RESULTS_DIR}/stat/
 mv ${BASE_DIR}/spassmeter.log ${RESULTS_DIR}/spassmeter.log
-[ -f ${RESULTS_DIR}/hotspot-1-${RECURSIONDEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
+[ -f ${RESULTS_DIR}/hotspot-1-${RECURSION_DEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
 [ -f ${BASE_DIR}/errorlog.txt ] && mv ${BASE_DIR}/errorlog.txt ${RESULTS_DIR}/
 
 ## Clean up raw results
diff --git a/frameworks/SPASSmeter/benchmark.sh b/frameworks/SPASSmeter/benchmark.sh
index 09d1b43..50bf6dc 100644
--- a/frameworks/SPASSmeter/benchmark.sh
+++ b/frameworks/SPASSmeter/benchmark.sh
@@ -57,7 +57,7 @@ echo "NUM_LOOPS=${NUM_LOOPS}" >> "${RESULTS_DIR}/configuration.txt"
 echo "TOTAL_CALLS=${TOTAL_CALLS}" >> "${RESULTS_DIR}/configuration.txt"
 echo "METHOD_TIME=${METHOD_TIME}" >> "${RESULTS_DIR}/configuration.txt"
 echo "THREADS=${THREADS}" >> "${RESULTS_DIR}/configuration.txt"
-echo "RECURSIONDEPTH=${RECURSION_DEPTH}" >> "${RESULTS_DIR}/configuration.txt"
+echo "RECURSION_DEPTH=${RECURSION_DEPTH}" >> "${RESULTS_DIR}/configuration.txt"
 sync
 
 ## Execute Benchmark
@@ -128,7 +128,7 @@ done
 #zip -jqr ${RESULTS_DIR}/stat.zip ${RESULTS_DIR}/stat
 #rm -rf ${RESULTS_DIR}/stat/
 mv ${BASE_DIR}/spassmeter.log ${RESULTS_DIR}/spassmeter.log
-[ -f ${RESULTS_DIR}/hotspot-1-${RECURSIONDEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
+[ -f ${RESULTS_DIR}/hotspot-1-${RECURSION_DEPTH}-1.log ] && grep "<task " ${RESULTS_DIR}/hotspot-*.log >${RESULTS_DIR}/log.log
 [ -f ${BASE_DIR}/errorlog.txt ] && mv ${BASE_DIR}/errorlog.txt ${RESULTS_DIR}/
 
 ## Clean up raw results
-- 
GitLab