X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=utils%2Fci%2Ftest_sdk_monitor.sh;h=afd4b8cebbb6c99cdb92f55039cd191e620b6537;hb=332940d4e4c7e6155bbc1a21d5f13cd71214b539;hp=370ca8062911f0682d5182f3d3ba1184660440c3;hpb=02aa1966ed14f45e0523ea4a665d8ed17cf019d4;p=osm%2Fvim-emu.git diff --git a/utils/ci/test_sdk_monitor.sh b/utils/ci/test_sdk_monitor.sh index 370ca80..afd4b8c 100755 --- a/utils/ci/test_sdk_monitor.sh +++ b/utils/ci/test_sdk_monitor.sh @@ -6,6 +6,9 @@ # start a vnf son-emu-cli compute start -d datacenter1 -n vnf1 --net '(id=input,ip=10.0.10.3/24),(id=output,ip=10.0.10.4/24)' + +sleep 1 + # monitor a metric son-emu-cli monitor setup_metric -vnf vnf1:output --metric tx_packets @@ -14,18 +17,22 @@ sleep 5 # check if metric is monitored as expected cpu_load=$(son-emu-cli monitor prometheus -d datacenter1 -vnf vnf1 -q 'sum(rate(container_cpu_usage_seconds_total{id="/docker/"}[10s]))') +sleep 1 + # stop the monitor son-emu-cli monitor stop_metric -vnf vnf1:output --metric tx_packets +sleep 1 + #stop the vnf son-emu-cli compute stop -d datacenter1 -n vnf1 # test if prometheus query worked +echo $cpu_load if [[ $cpu_load =~ $regex ]] ; then echo " cpu monitor test OK" exit 0 else - echo $cpu_load echo "cpu monitor test not OK" exit 1 fi