diff --git a/frameworks/inspectIT/benchmark.sh b/frameworks/inspectIT/benchmark.sh index 4f49f3f4a10a58e37eb196cef5088bdcbbe9794c..e720b8e5f32473abcca8865ac6ec1cfeb4c2e3a7 100755 --- a/frameworks/inspectIT/benchmark.sh +++ b/frameworks/inspectIT/benchmark.sh @@ -14,7 +14,6 @@ function runNoInstrumentation { } function runInspectITDeactivated { - # InspectIT (minimal) k=`expr ${k} + 1` echo " # ${i}.$RECURSION_DEPTH.${k} "${TITLE[$k]} echo " # ${i}.$RECURSION_DEPTH.${k} "${TITLE[$k]} >>${BASE_DIR}/inspectIT.log @@ -30,6 +29,22 @@ function runInspectITDeactivated { sleep $SLEEP_TIME } +function runInspectITNullWriter { + k=`expr ${k} + 1` + echo " # ${i}.$RECURSION_DEPTH.${k} "${TITLE[$k]} + echo " # ${i}.$RECURSION_DEPTH.${k} "${TITLE[$k]} >>${BASE_DIR}/inspectIT.log + sleep $SLEEP_TIME + ${JAVABIN}java ${JAVAARGS_INSPECTIT_NULLWRITER} ${JAR} \ + --output-filename ${RAWFN}-${i}-$RECURSION_DEPTH-${k}.csv \ + --total-calls ${TOTAL_NUM_OF_CALLS} \ + --method-time ${METHOD_TIME} \ + --total-threads ${THREADS} \ + --recursion-depth ${RECURSION_DEPTH} \ + --force-terminate \ + ${MOREPARAMS} &> ${RESULTS_DIR}/output_"$i"_"$RECURSION_DEPTH"_$k.txt + sleep $SLEEP_TIME +} + function runInspectITZipkin { # InspectIT (minimal) @@ -114,6 +129,7 @@ JAR="-jar MooBench.jar --application moobench.application.MonitoredClassSimple" JAVAARGS_NOINSTR="${JAVAARGS}" JAVAARGS_LTW="${JAVAARGS} -javaagent:${BASE_DIR}/agent/inspectit-ocelot-agent-1.11.1.jar -Djava.util.logging.config.file=${BASE_DIR}/config/logging.properties" JAVAARGS_INSPECTIT_DEACTIVATED="${JAVAARGS_LTW} -Dinspectit.service-name=moobench-inspectit -Dinspectit.exporters.metrics.prometheus.enabled=false -Dinspectit.exporters.tracing.zipkin.enabled=false -Dinspectit.config.file-based.path=${BASE_DIR}/config/onlyInstrument/" +JAVAARGS_INSPECTIT_NULLWRITER="${JAVAARGS_LTW} -Dinspectit.service-name=moobench-inspectit -Dinspectit.exporters.metrics.prometheus.enabled=false -Dinspectit.exporters.tracing.zipkin.enabled=false -Dinspectit.config.file-based.path=${BASE_DIR}/config/nullWriter/" JAVAARGS_INSPECTIT_ZIPKIN="${JAVAARGS_LTW} -Dinspectit.service-name=moobench-inspectit -Dinspectit.exporters.metrics.prometheus.enabled=false -Dinspectit.exporters.tracing.zipkin.url=http://127.0.0.1:9411/api/v2/spans -Dinspectit.config.file-based.path=${BASE_DIR}/config/zipkin/" JAVAARGS_INSPECTIT_PROMETHEUS="${JAVAARGS_LTW} -Dinspectit.service-name=moobench-inspectit -Dinspectit.exporters.metrics.zipkin.enabled=false -Dinspectit.exporters.metrics.prometheus.enabled=true -Dinspectit.config.file-based.path=${BASE_DIR}/config/prometheus/" @@ -132,6 +148,9 @@ for ((i=1;i<=${NUM_OF_LOOPS};i+=1)); do runInspectITDeactivated cleanup + + runInspectITNullWriter + cleanup runInspectITZipkin cleanup diff --git a/frameworks/inspectIT/config/nullWriter/nullWriter.yml b/frameworks/inspectIT/config/nullWriter/nullWriter.yml new file mode 100644 index 0000000000000000000000000000000000000000..62aa32139f3a0ce9192d0e506c5214ac3a494412 --- /dev/null +++ b/frameworks/inspectIT/config/nullWriter/nullWriter.yml @@ -0,0 +1,19 @@ +inspectit: + instrumentation: + scopes: + 's_moobench': + type: + name: 'MonitoredClass' + matcher-mode: 'CONTAINS' + rules: + 'r_moobench': + enabled: true + include: + 'r_trace_method': true # do not save anything + 'r_capture_method_duration': false # do not save anything + scopes: + 's_moobench': true + actions: + 'a_do_nothing': + value-body: | + 'if (true) {}'