From 5c67afb52e805303e9780e9a3c3946d3ddd53d5d Mon Sep 17 00:00:00 2001
From: David Georg Reichelt <davidgeorg_reichelt@dagere.de>
Date: Wed, 18 Aug 2021 11:24:54 +0200
Subject: [PATCH] Fix parameter naming

---
 README.md | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/README.md b/README.md
index 319f6d0..c4eeb0f 100644
--- a/README.md
+++ b/README.md
@@ -20,24 +20,24 @@ All experiments are started with the provided "External Controller" scripts. The
 All scripts have been tested on Ubuntu and Raspbian. 
 
 The execution may be parameterized by the following environment variables:
-* SLEEPTIME           between executions (default 30 seconds)
-* NUM_LOOPS           number of repetitions (default 10)
-* THREADS             concurrent benchmarking threads (default 1)
-* MAXRECURSIONDEPTH   recursion up to this depth (default 10)
-* TOTALCALLS          the duration of the benchmark (deafult 2,000,000 calls)
-* METHODTIME          the time per monitored call (default 0 ns or 500 us)
+* SLEEP_TIME           between executions (default 30 seconds)
+* NUM_OF_LOOPS         number of repetitions (default 10)
+* THREADS              concurrent benchmarking threads (default 1)
+* RECURSION_DEPTH      recursion up to this depth (default 10)
+* TOTAL_NUM_OF_CALLS   the duration of the benchmark (deafult 2,000,000 calls)
+* METHOD_TIME          the time per monitored call (default 0 ns or 500 us)
 
 If they are unset, the values are set via `frameworks/common-function.sh`.
 
 Typical call (using Ubuntu):
 ```
-export SLEEPTIME=1 
+export SLEEP_TIME=1 
 ./gradlew assemble 
 cd frameworks/opentelemetry/ 
 ./benchmark.sh
 ```
 
-Analyzing the data:
+Analyzing the data
 ===================
 In the folder /bin/r are some R scripts provided to generate graphs to 
 visualize the results. In the top the files, one can configure the 
-- 
GitLab