8Dweb
WebGee
For website monitoring, the built-in systemd-cgtop utility is your best bet. It provides real-time data on CPU, RAM, and IO usage per website, making it super useful for tracking resource consumption.
To monitor all websites (sorted by CPU usage by default):
systemd-cgtop -p -n 0 --depth=1 /websites/
To sort by memory usage, add -m
:
systemd-cgtop -p -m -n 0 --depth=1 /websites/
To sort by IO load, add -i
:
systemd-cgtop -p -i -n 0 --depth=1 /websites/
To monitor a specific website, use its website ID:
systemd-cgtop -p -n 0 /websites/website-id-here
The beauty of this tool is that it helps you fine-tune your resource limits by analyzing actual usage during peak hours. It’s also a lifesaver for diagnosing performance issues.
For those who find manually entering these commands inconvenient, we’ve wrapped this tool into a helper function in cPFence, allowing you to search by UUID or Username (inspired by 8Dweb’s modifications above!). But even if you’re not using cPFence, you can simply copy-paste the commands above and get all the insights you need.