Hello!
I have configured CPU temperature monitoring with ExternalParameter = CPU.Temperature(*):/usr/bin/sensors|egrep 'Core\s*$1' | cut -d+ -f2 | cut -d. -f1
It gives me the integer part of the core temperature. I've added return int32($1) to the transformation
I can build graphs based on this values, but when I try to generate alarm based on threshold "> : greater then" it is not working.
I suppose, despite the transformation, it processes the value as string, because "like/not like" thresholds seems to be working.
What can be done about this issue?
Any help appreciated!
Hi!
You have to change DCI data type to "Integer".
Best regards,
Victor
Thank you. It worked.