Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frameworks/Kieker-python/config.rc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ DATA_DIR="${BASE_DIR}/data"

KIEKER_4_PYTHON_REPO_URL="https://github.com/kieker-monitoring/kieker-lang-pack-python.git"
KIEKER_4_PYTHON_DIR="${BASE_DIR}/kieker-lang-pack-python"
KIEKER_4_PYTHON_BRANCH="ast_import_hook"
KIEKER_4_PYTHON_BRANCH="ast_import_hook_new"

RECEIVER_ARCHIVE="${MAIN_DIR}/tools/receiver/build/distributions/receiver.tar"

Expand Down
6 changes: 4 additions & 2 deletions frameworks/Kieker-python/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ EOF
function createMonitoring() {
mode="$1"
cat > "${BASE_DIR}/monitoring.ini" << EOF
[Main]
[General]
mode = ${mode}

[Tcp]
Expand Down Expand Up @@ -92,7 +92,9 @@ function executeExperiment() {
createMonitoring ${mode}
createConfig ${inactive} ${instrument} ${approach} ${loop}

cd ../../tools/pybenchmark/
"${PYTHON}" "${MOOBENCH_BIN_PY}" "${BASE_DIR}/config.ini"
cd ${BASE_DIR}

if [ ! -f "${RESULT_FILE}" ] ; then
info "---------------------------------------------------"
Expand Down Expand Up @@ -130,7 +132,7 @@ function executeBenchmarkBody() {
then
kill -TERM "${RECEIVER_PID}"
fi
unset RECEIVER_PID
unset RECEIVER_PID
fi
}

Expand Down