diff options
author | kalyanreddy <reddyx.gundarapu@intel.com> | 2017-04-19 22:37:08 -0700 |
---|---|---|
committer | kalyanreddy <reddyx.gundarapu@intel.com> | 2017-04-19 22:37:08 -0700 |
commit | 517fa345ee49e7205e3d3e0d0fce0391c066c279 (patch) | |
tree | 4669cd0528b532b587f1251e434791497c94b999 /ci | |
parent | f9bc056239a4bad52403e96ae6b4d14eaedd012a (diff) |
To publish the results on Grafana dashboard
This patch includes few script updates to publish the packet forwarding
test cases results on yardstick grafana dashboard. Also includes cleaning
operations after publishing the results.
Change-Id: I2946b6f3b9405513e6e3ac5e76eb873c870a3607
Signed-off-by: Gundarapu Kalyan Reddy <reddyx.gundarapu@intel.com>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/envs/packet_forwarding.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ci/envs/packet_forwarding.sh b/ci/envs/packet_forwarding.sh index c93bb2751..4f3d946b3 100755 --- a/ci/envs/packet_forwarding.sh +++ b/ci/envs/packet_forwarding.sh @@ -80,8 +80,10 @@ function print_results() { function publish_results() { test_type=$1 results_dir=${TEST_REPORT_LOG_DIR}/${LOG_SUBDIR}/results* - time_stamp=$(date -u +"%Y-%m-%d-%H-%M-%S") - ( cd /root/workspace/scripts ; python data_publish.py $time_stamp $test_type $results_dir ) + 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() { |