X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=blobdiff_plain;f=utils%2Fci%2Ftest_sdk_monitor.sh;h=3c881767cf17065f875fdbc29c3669b50d84b8cc;hp=26f939f920235df3d0de6fad6fa2672d6a38497c;hb=050c26162145a4884d31fe4c214011a2208b8ced;hpb=fe3135b85110f06be86d047064cb6a245937f9c5 diff --git a/utils/ci/test_sdk_monitor.sh b/utils/ci/test_sdk_monitor.sh index 26f939f..3c88176 100755 --- a/utils/ci/test_sdk_monitor.sh +++ b/utils/ci/test_sdk_monitor.sh @@ -1,15 +1,36 @@ #!/bin/bash -# test if a vnf can be monitored and deployed +# test if a vnf can be deployed and monitored +#start test emulator topology +#python src/emuvim/examples/monitoring_demo_topology.py & + +# start a vnf +son-emu-cli compute-zapi 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 + +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 + + # test if prometheus query worked -regex="[0-9.]+, [0-9.']+" +echo $cpu_load + +regex='\[[0-9.]*, .*\]' + if [[ $cpu_load =~ $regex ]] ; then - echo "OK" + echo " cpu monitor test OK" exit 0 else - echo $cpu_load - echo "not OK" + echo "cpu monitor test not OK" exit 1 fi + +