X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=blobdiff_plain;f=utils%2Fci%2Ftest_sdk_monitor.sh;fp=utils%2Fci%2Ftest_sdk_monitor.sh;h=08e52e54b8076108fec8db2710cc41cdbf2ec489;hp=3c881767cf17065f875fdbc29c3669b50d84b8cc;hb=000237b471e937907309bb767077a95a4eb2af36;hpb=050c26162145a4884d31fe4c214011a2208b8ced diff --git a/utils/ci/test_sdk_monitor.sh b/utils/ci/test_sdk_monitor.sh index 3c88176..08e52e5 100755 --- a/utils/ci/test_sdk_monitor.sh +++ b/utils/ci/test_sdk_monitor.sh @@ -14,7 +14,24 @@ son-emu-cli monitor setup_metric -vnf vnf1:output --metric tx_packets sleep 5 -# check if metric is monitored as expected +# check if metric is monitored as expected (exported by son-emu, has vnf name as metric id) +tx_rate=$(son-emu-cli monitor prometheus -d datacenter1 -vnf vnf1 -q 'rate(sonemu_tx_count_packets{vnf_name="vnf1"}[1m])') + + +# test if prometheus query worked +echo $tx_rate + +regex='\[[0-9.]*, .*\]' + +if [[ $tx_rate =~ $regex ]] ; then + echo " tx_rate monitor test OK" +else + echo "tx_rate monitor test not OK" + exit 1 +fi + + +# check if cpu load can be monitored (exported by cAdvisor, needs uuid) cpu_load=$(son-emu-cli monitor prometheus -d datacenter1 -vnf vnf1 -q 'sum(rate(container_cpu_usage_seconds_total{id="/docker/"}[10s]))') sleep 1 @@ -27,10 +44,11 @@ regex='\[[0-9.]*, .*\]' if [[ $cpu_load =~ $regex ]] ; then echo " cpu monitor test OK" - exit 0 else echo "cpu monitor test not OK" exit 1 fi +exit 0 +