Monitor Website Resource Usage with website-usage Tool
Managing server resources effectively is crucial, especially when hosting multiple websites. If your customers are experiencing slowdowns or encountering "Service Unavailable" errors, you need a way to monitor CPU, RAM, and I/O usage per website. To solve this, we built website-usage, a lightweight Bash script that provides real-time resource usage insights per website as CPU/RAM/IO usage is not currently available in the dashboard.
Features
✅ Monitor CPU, Memory, and I/O usage per website
✅ Provides human-readable CPU percentage
✅ Displays memory usage in MB with a percentage indicator
✅ Reports I/O usage in MB/s for better understanding
✅ Simple installation and usage
Installation
Setting up website-usage is quick and easy. Run the following command to install it on your server:
bash <(curl -fsSL https://tools.webgee.com/enhance/usage/installer.sh)
If curl
is unavailable, you can use:
bash <(wget -qO- https://tools.webgee.com/enhance/usage/installer.sh)
This command downloads and installs the script to /usr/bin/website-usage
, making it accessible system-wide.
Usage
Once installed, you can check the resource usage of any website using its website ID:
website-usage <website_id>
Example Output
Website ID: 98f79a38-2fc4-462b-8c99-ea111d0e3cea
CPU Usage: 99.94%
Memory Usage: 3023 MB / 3072 MB (98.00%)
IO Usage: Read 2.05 MB/s, Write 0 MB/s, Total 2.05 MB/s
This output helps identify websites that are over-utilizing server resources, allowing you to take necessary actions like upgrading their plan or optimizing their performance.
Contribute to the Project
We believe in open-source collaboration! The website-usage tool is available on GitHub:
🔗 GitHub Repository
If you'd like to contribute, feel free to fork the repo, submit issues, or open pull requests with improvements and new features.
Conclusion
The website-usage tool is an essential addition for any hosting provider looking to gain better insights into website resource consumption. Install it today and take control of your server’s performance!
For any questions, feel free to reply to this thread or contribute to our GitHub repository. Happy monitoring! 🚀