X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=ci%2Fenvs%2Fpacket_forwarding.sh;h=4f3d946b3d2b6f2a84e695aae24a8de32edcbc52;hb=868367c47df84a70a49f7be6b5e6c3150906aa8f;hp=643957a2d3060aebd7824e3fadcde6c3fec6cde1;hpb=611d8bd4c4027ebe8da338d3bbb10a6994975937;p=kvmfornfv.git diff --git a/ci/envs/packet_forwarding.sh b/ci/envs/packet_forwarding.sh old mode 100644 new mode 100755 index 643957a2d..4f3d946b3 --- a/ci/envs/packet_forwarding.sh +++ b/ci/envs/packet_forwarding.sh @@ -77,6 +77,15 @@ function print_results() { done } +function publish_results() { + test_type=$1 + results_dir=${TEST_REPORT_LOG_DIR}/${LOG_SUBDIR}/results* + time_stamp=$(date -u +"%Y-%m-%dT%H:%M:%SZ") + ( cd /root/workspace/scripts ; python2.7 data_publish.py $time_stamp $test_type $results_dir ) + #cleaning the results after publishing on grafana dashboard. + ( cd ${TEST_REPORT_LOG_DIR}/${LOG_SUBDIR} ; rm -rf results* ) +} + function execute_vsperf() { # figure out list of TCs and execution parameters case $2 in @@ -148,6 +157,9 @@ function execute_vsperf() { mkdir -p ${TEST_REPORT_LOG_DIR}/${LOG_SUBDIR} [ -f "$LOG_FILE" ] && mv "${LOG_FILE}" "${TEST_REPORT_LOG_DIR}/${LOG_SUBDIR}" &> /dev/null [ -d "$RES_DIR" ] && mv "$RES_DIR" "${TEST_REPORT_LOG_DIR}/${LOG_SUBDIR}" &> /dev/null + + # Publish test cases results to Grafana Dashboard + publish_results $1 } #Install vsperf and set up the environment