diff options
author | kalyanreddy <reddyx.gundarapu@intel.com> | 2016-09-29 11:00:22 +0530 |
---|---|---|
committer | kalyanreddy <reddyx.gundarapu@intel.com> | 2016-10-13 17:58:13 +0530 |
commit | 596c056f98f1225a2fffd76cf30f6982b69ec0e4 (patch) | |
tree | f3e9ea8c87434d78a4b315c59212e35ab6b3af67 /ci/envs | |
parent | 3f130ef583ff4984853be9d3db8d8824e996b5ca (diff) |
This patch contains scripts to publish the data to local
Grafana Dashboard for daily Job
Change-Id: I382408d0f462c05f3f9b6578b3e00d104d127ee7
Co-Authored-By: Shravani <shravani.p@tcs.com>
Signed-off-by: Gundarapu Kalyan Reddy <reddyx.gundarapu@intel.com>
Diffstat (limited to 'ci/envs')
-rwxr-xr-x | ci/envs/cyclictest.sh | 40 |
1 files changed, 37 insertions, 3 deletions
diff --git a/ci/envs/cyclictest.sh b/ci/envs/cyclictest.sh index 2af22afad..c5b980d77 100755 --- a/ci/envs/cyclictest.sh +++ b/ci/envs/cyclictest.sh @@ -6,6 +6,7 @@ ########################################################### source utils.sh +testType=$1 #daily/verify/merge HOST_IP=$( getHostIP ) pod_config='/opt/scripts/pod.yaml' cyclictest_context_file='/opt/cyclictest-node-context.yaml' @@ -24,12 +25,45 @@ fi ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null \ root@$HOST_IP "cp /root/images/guest1.qcow2 /root/" +#Updating the yardstick.conf file for daily +function updateConfDaily() { + DISPATCHER_TYPE=influxdb + DISPATCHER_FILE_NAME="/tmp/yardstick.out" + # Use the influxDB on the jumping server + DISPATCHER_INFLUXDB_TARGET="http://10.2.117.21:8086" + mkdir -p /etc/yardstick + cat << EOF > /etc/yardstick/yardstick.conf +[DEFAULT] +debug = True +dispatcher = ${DISPATCHER_TYPE} + +[dispatcher_file] +file_name = ${DISPATCHER_FILE_NAME} + +[dispatcher_influxdb] +timeout = 5 +db_name = yardstick +username = root +password = root +target = ${DISPATCHER_INFLUXDB_TARGET} +EOF +} + +#Function call to update yardstick conf file based on Job type +if [ "$testType" == "daily" ];then + updateConfDaily +fi + #Running cyclictest through yardstick yardstick -d task start ${cyclictest_context_file} output=$? -chmod 777 /tmp/yardstick.out -cat /tmp/yardstick.out > /opt/yardstick.out + +if [ "$testType" == "verify" ];then + chmod 777 /tmp/yardstick.out + cat /tmp/yardstick.out > /opt/yardstick.out +fi + if [ $output != 0 ];then - echo "Someproblem with execution of Yardstick" + echo "Yardstick Failed !!!" exit 1 fi |