Hi!
First, you should create DCI for ifSpeed. Let's assume that it's description will be "Interface speed" (without quotes). After that, create DCI for ifInOctets, and create transformation script for it:
If you will use different DCI description for ifSpeed parameter, change call to FindDCIByDescription accordingly.
You can also take a look at the following topic:
https://www.netxms.org/forum/index.php/topic,292.msg1495.html#msg1495
Best regards,
Victor
First, you should create DCI for ifSpeed. Let's assume that it's description will be "Interface speed" (without quotes). After that, create DCI for ifInOctets, and create transformation script for it:
Code Select
(($1 * 8) / GetDCIValue($node, FindDCIByDescription($node, "Interface speed"))) * 100
If you will use different DCI description for ifSpeed parameter, change call to FindDCIByDescription accordingly.
You can also take a look at the following topic:
https://www.netxms.org/forum/index.php/topic,292.msg1495.html#msg1495
Best regards,
Victor


