What's new

AiMesh Node's CPU usage is relatively high?

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

aru

Regular Contributor
My router network environment is as follows:

1730950982835.png


I followed the plugin script provided by the script owner for practice and successfully sent the node's CPU temperature, load, and uptime to the main router. I also categorized the logs for cleaner and clearer display.


Add LogCPUtemp.sh script to the node by myself:

Code:
#!/bin/sh


TEMP=$(cat /sys/class/thermal/thermal_zone0/temp)


TEMP_C_INT=$((TEMP / 1000))
TEMP_C_DEC=$((TEMP % 1000 / 100))


echo "CPU Temperature: ${TEMP_C_INT}.${TEMP_C_DEC}°C" | logger


uptime| logger




1730952709405.png


I was surprised to find that after installing multiple plugins on the GT-AX6000, the average CPU usage is 0.1-0.2. However, the CPU usage on the two nodes, AX88U and AX86U, which are only responsible for Wi-Fi forwarding, is as high as 1.0-1.23. Is this due to hardware CPU differences, or is it because the nodes have a heavier workload?

gt-6000
1730952291379.png


ax88u
1730952373445.png


ax86u
1730952433808.png
 

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top