Logic Machine Forum
CPU/IO - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Gateway (https://forum.logicmachine.net/forumdisplay.php?fid=10)
+--- Thread: CPU/IO (/showthread.php?tid=3976)



CPU/IO - Fahd - 06.04.2022

Hi, 

Guys, Please why the CPU/IO value is in red color?
See the attachment


RE: CPU/IO - Daniel - 06.04.2022

Some process takes to much time to run on the CPU. Install System load app and check which process is so hungry and then try to solve it.


RE: CPU/IO - Fahd - 06.04.2022

(06.04.2022, 09:13)Daniel Wrote: Some process takes to much time to run on the CPU. Install System load app and check which process is so hungry and then try to solve it.

Thanks for the quick reply Daniel, 
What usr stands for?


RE: CPU/IO - Daniel - 06.04.2022

Please install System Load app instead of the Process as this one is not to accurate.


RE: CPU/IO - Fahd - 06.04.2022

(06.04.2022, 09:36)Daniel Wrote: Please install System Load app instead of the Process as this one is not to accurate.

I am at the site and the lm5 is not connected to the internet, could you send me the file to install it manually?


RE: CPU/IO - Daniel - 06.04.2022

Here


RE: CPU/IO - Fahd - 06.04.2022

(06.04.2022, 09:39)Daniel Wrote: Here

Thank you, 
Please see the attachment,
It looks normal, isn't it?


RE: CPU/IO - Daniel - 06.04.2022

Yes, disable KNX IP and see if this makes any difference.


RE: CPU/IO - Fahd - 06.04.2022

(06.04.2022, 09:49)Daniel Wrote: Yes, disable KNX IP and see if this makes any difference.

It is the same !


RE: CPU/IO - Daniel - 06.04.2022

Did you monitor the System load app for a longer while? Anything changing?


RE: CPU/IO - Fahd - 06.04.2022

(06.04.2022, 13:22)Daniel Wrote: Did you monitor the System load app for a longer while? Anything changing?

Yes, the total value didn't exceed 20%


RE: CPU/IO - Daniel - 06.04.2022

Try disabling all the scripts, sync and reboot.


RE: CPU/IO - Fahd - 06.04.2022

(06.04.2022, 13:26)Daniel Wrote: Try disabling all the scripts, sync and reboot.

I can't do it now, I will do it tomorrow and I'll keep u updated


RE: CPU/IO - Fahd - 08.04.2022

(06.04.2022, 13:32)Fahd Wrote:
(06.04.2022, 13:26)Daniel Wrote: Try disabling all the scripts, sync and reboot.

I can't do it now, I will do it tomorrow and I'll keep u updated

Hi Daniel,

It is because of the scripts, I have 4 scripts like this one below, and I will have more, what is the problem with it? it is event-based on Tag

Code:
value_1 = grp.getvalue('14/0/12')
value_2 = grp.getvalue('14/1/12')
Difference = value_1 - value_2
value_3 = grp.getvalue('32/1/3')
grp.write('32/1/3', Difference)



RE: CPU/IO - Daniel - 08.04.2022

If you did tag grp 32/1/3 then you have a loop.


RE: CPU/IO - Fahd - 08.04.2022

(08.04.2022, 07:42)Daniel Wrote: If you did tag grp 32/1/3 then you have a loop.

That's it, Thank you Daniel