replace test monitor script
authorstevenvanrossem <steven.vanrossem@intec.ugent.be>
Fri, 13 May 2016 13:16:43 +0000 (15:16 +0200)
committerstevenvanrossem <steven.vanrossem@intec.ugent.be>
Fri, 13 May 2016 13:17:14 +0000 (15:17 +0200)
src/emuvim/test/integrationtests/test_sdk_monitor.sh [deleted file]
utils/ci/test_sdk_monitor.sh [new file with mode: 0755]

diff --git a/src/emuvim/test/integrationtests/test_sdk_monitor.sh b/src/emuvim/test/integrationtests/test_sdk_monitor.sh
deleted file mode 100755 (executable)
index 26f939f..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-# test if a vnf can be monitored and deployed
-
-cpu_load=$(son-emu-cli monitor prometheus -d datacenter1 -vnf vnf1 -q 'sum(rate(container_cpu_usage_seconds_total{id="/docker/<uuid>"}[10s]))')
-
-# test if prometheus query worked
-regex="[0-9.]+, [0-9.']+"
-if [[ $cpu_load =~ $regex ]] ; then
-       echo "OK"
-       exit 0
-else
-       echo $cpu_load
-       echo "not OK"
-       exit 1
-fi
diff --git a/utils/ci/test_sdk_monitor.sh b/utils/ci/test_sdk_monitor.sh
new file mode 100755 (executable)
index 0000000..26f939f
--- /dev/null
@@ -0,0 +1,15 @@
+#!/bin/bash
+# test if a vnf can be monitored and deployed
+
+cpu_load=$(son-emu-cli monitor prometheus -d datacenter1 -vnf vnf1 -q 'sum(rate(container_cpu_usage_seconds_total{id="/docker/<uuid>"}[10s]))')
+
+# test if prometheus query worked
+regex="[0-9.]+, [0-9.']+"
+if [[ $cpu_load =~ $regex ]] ; then
+       echo "OK"
+       exit 0
+else
+       echo $cpu_load
+       echo "not OK"
+       exit 1
+fi