Interpreting Average load metrics

A load average isn’t a percentage, even though Athom has decided to show them as such. The number basically represents the number of processes waiting for a time slice on the CPU. These are “active” processes; for instance, a process that is just waiting for (say) some data coming in over a network connection is “sleeping” and doesn’t count towards the load. Only when there is actual data incoming and the app needs to be woken up in order to handle the new data will it count.

If the load is below 1, it means less than one process is waiting for a time slice, and (hence) there is no CPU contention. If the load exceeds 1, more than one process is waiting for a time slice, which means that there aren’t enough CPU resources available to handle all processes at that time. Not necessarily a thing to worry about, but if the 5-minute and 15-minute averages are also above 1, it means the processor is underpowered for the process load.

Athom multiplies the load average by 100 and sticks a ‘%’ after it so make it look better (I guess). If your Homey has more than a “100%” load most of the time, it’s underpowered and may feel sluggish.

FWIW, variation of the load is normal, if you have apps that periodically have to wake up to perform some action, but sleep most of the time, you’ll see periodic spikes in the load.

4 Likes