Skip to content
Snippets Groups Projects
Commit 54527b9b authored by Jan Waller's avatar Jan Waller
Browse files

fixed small bug in default Kieker script

parent d886ba79
No related branches found
No related tags found
No related merge requests found
...@@ -2,3 +2,4 @@ ...@@ -2,3 +2,4 @@
/build-eclipse/ /build-eclipse/
/build/ /build/
/dist/ /dist/
/tmp/
...@@ -46,6 +46,9 @@ The top of the files include some configuration parameters, such as ...@@ -46,6 +46,9 @@ The top of the files include some configuration parameters, such as
Furthermore some JVM arguments can be adjusted: Furthermore some JVM arguments can be adjusted:
* JAVAARGS JVM Arguments * JAVAARGS JVM Arguments
Typical call:
$ nohup ./benchmark.sh & sleep 1;tail +0cf nohup.out
Experiments (outdated): Experiments (outdated):
Different recursion depth (with MAXRECURSIONDEPTH=1 without recursion) Different recursion depth (with MAXRECURSIONDEPTH=1 without recursion)
-> bin/run-benchmark-recursive.sh -> bin/run-benchmark-recursive.sh
......
...@@ -11,7 +11,7 @@ NUM_LOOPS=10 ## 10 ...@@ -11,7 +11,7 @@ NUM_LOOPS=10 ## 10
THREADS=1 ## 1 THREADS=1 ## 1
RECURSIONDEPTH=10 ## 10 RECURSIONDEPTH=10 ## 10
TOTALCALLS=2000000 ## 2000000 TOTALCALLS=2000000 ## 2000000
METHODTIME=500 ## 500 METHODTIME=500000 ## 500000
#MOREPARAMS="--quickstart" #MOREPARAMS="--quickstart"
MOREPARAMS="${MOREPARAMS} -r kieker.Logger" MOREPARAMS="${MOREPARAMS} -r kieker.Logger"
...@@ -151,6 +151,32 @@ mv ${BASEDIR}kieker.log ${RESULTSDIR}kieker.log ...@@ -151,6 +151,32 @@ mv ${BASEDIR}kieker.log ${RESULTSDIR}kieker.log
[ -f ${BASEDIR}errorlog.txt ] && mv ${BASEDIR}errorlog.txt ${RESULTSDIR} [ -f ${BASEDIR}errorlog.txt ] && mv ${BASEDIR}errorlog.txt ${RESULTSDIR}
## Generate Results file ## Generate Results file
# Timeseries
R --vanilla --silent <<EOF
results_fn="${RAWFN}"
output_fn="${RESULTSDIR}results-timeseries.pdf"
configs.loop=${NUM_LOOPS}
configs.recursion=c(${RECURSIONDEPTH})
configs.labels=c("No Probe","Deactivated Probe","Collecting Data","Writer")
configs.colors=c("black","red","blue","green")
results.count=${TOTALCALLS}
tsconf.min=(${METHODTIME}/1000)
tsconf.max=(${METHODTIME}/1000)+200
source("${RSCRIPTDIR}timeseries.r")
EOF
# Timeseries-Average
R --vanilla --silent <<EOF
results_fn="${RAWFN}"
output_fn="${RESULTSDIR}results-timeseries-average.pdf"
configs.loop=${NUM_LOOPS}
configs.recursion=c(${RECURSIONDEPTH})
configs.labels=c("No Probe","Deactivated Probe","Collecting Data","Writer")
configs.colors=c("black","red","blue","green")
results.count=${TOTALCALLS}
tsconf.min=(${METHODTIME}/1000)
tsconf.max=(${METHODTIME}/1000)+200
source("${RSCRIPTDIR}timeseries-average.r")
EOF
# Bars # Bars
R --vanilla --silent <<EOF R --vanilla --silent <<EOF
results_fn="${RAWFN}" results_fn="${RAWFN}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment