Ubuntu servers version 16.* do not show CDM Network QOS metrics from cdm probe.
Looks like CDM does not send any QOS message for the The Network QOS Metrics below:
QOS_NETWORK_AGGREGATED_TRAFFIC
QOS_NETWORK_INBOUND_TRAFFIC
QOS_NETWORK_OUTBOUND_TRAFFIC
The qos is activated in Admin Console
UIM Any Version
CDM 6.30 or later
Ubuntu 16.*
step 1 :- apt install sysstat
step 2:- open "/etc/default/sysstat" using file editor and change ENABLED="false" to ENABLED="true"
vim /etc/default/sysstat
----
# Should sadc collect system activity informations? Valid values
# are "true" and "false". Please do not put other values, they
# will be overwritten by debconf!
ENABLED="true"
----
step 3:- Change the collection interval from from every 10 minutes to every 2 minutes from file "/etc/cron.d/sysstat".(or based on your requirement).
----
vim /etc/cron.d/sysstat
Change
5-55/10 * * * * root command -v debian-sa1 > /dev/null && debian-sa1 1 1
To
*/2 * * * * root command -v debian-sa1 > /dev/null && debian-sa1 1 1
----