diff --git a/continuous-integration/README b/continuous-integration/README
index c8a38b2f45f8526927410ccd27a506406231748f..b08bbccff6baa1f6d6d15f3b4f2d79c283b23e13 100644
--- a/continuous-integration/README
+++ b/continuous-integration/README
@@ -1,13 +1,26 @@
 MooBench  http://kieker-monitoring.net/MooBench
-
 -----------------------------------------------
 
-This folder contains an example script showing how to include MooBench into continuous integration.
+This folder contains an example script showing how to include 
+MooBench into continuous integration.
+
+The script copies a pre-compiled version of MooBench and the 
+jar file to be benchmarked to a given remote server. It executes 
+MooBench and retrieves the results. These results can be visualized 
+in the web application of the continuous integration server.
 
-The script copies a pre-compiled version of MooBench and the jar file to be benchmarked to a given remote server. It executes MooBench and retrieves the results. These results can, for instance, be visualized in the web application of the continuous integration server.
+We have successfully employed the script on a Jenkins server (v. 1.554)
+with the Plot plugin (v. 1.7). The results are availabe under:
+* http://build.kieker-monitoring.net/job/kieker-nightly-release/plot/
 
 -----------------------------------------------
+The remote server should be provided with Java (>= 1.6) and R (> 3.0).
+We recommend to use SSH keys for the access.
 
-The remote server should be provided with Java (>= 1.6) and R (> 3.0). We recommend to use SSH keys for the access.
+The client server should contain a prepared folder with a pre-compiled 
+version of MooBench, as created by the build script with the appropriate
+build target, e.g., 'build-kieker' for Kieker.
 
-The client server should contain a prepared folder with a pre-compiled version of MooBench, as created by the build script.
\ No newline at end of file
+Refer to the Kieker git (http://git.kieker-monitoring.net/kieker.git)
+in folder '/examples/OverheadEvaluationMicrobenchmark' for a full example 
+of using this script.
diff --git a/continuous-integration/executeRemoteMicroBenchmark.sh b/continuous-integration/executeRemoteMicroBenchmark.sh
index c819b081d3efb37f435ea547841c83ea980e4e58..5b974667aee6659ef2eba1002cd0f1586fcf7ebc 100644
--- a/continuous-integration/executeRemoteMicroBenchmark.sh
+++ b/continuous-integration/executeRemoteMicroBenchmark.sh
@@ -32,4 +32,4 @@ ssh ${REMOTE_NODE} "cp MooBench/tmp/${RESULTS_FOLDER_NAME}/results.zip old-resul
 ssh ${REMOTE_NODE} "cd old-results; ls -A1t | sed -e '1,100d' | xargs -d '\n' rm; exit"
 ssh ${REMOTE_NODE} 'mv old-results /tmp/; exit'
 ssh ${REMOTE_NODE} 'rm -rf MooBench; exit'
-ssh ${REMOTE_NODE} 'mv /tmp/old-results .; exit'
\ No newline at end of file
+ssh ${REMOTE_NODE} 'mv /tmp/old-results .; exit'