Monitor Website Resource Usage with website-usage v2
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
✅ Interactive website selection mode - no need to remember website IDs
✅ Real-time monitoring with watch mode
✅ JSON output format for integration with monitoring systems
✅ Color-coded output for better readability
✅ Process count monitoring
✅ Website owner information display
✅ 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
The tool now supports multiple usage modes:
1. Interactive Mode
Simply run the command without any arguments to see a list of available websites:
website-usage
root@pluto:~# website-usage
Available Websites:
1. 12ab34cd-56ef-78gh-90ij-klmn12345678 (Owner: user1234)
2. 23bc45de-67fg-89hi-01jk-lmno23456789 (Owner: demo5678)
3. 34cd56ef-78gh-90ij-12kl-mnop34567890 (Owner: testweb1)
4. 45de67fg-89hi-01jk-23lm-nopq45678901 (Owner: sample9876)
5. 56ef78gh-90ij-12kl-34mn-opqr56789012 (Owner: siteowner9)
Select a website number (1-5) or 'q' to quit:
⸻
Select a website number (1-15) or ‘q’ to quit:
This will show you a numbered list of websites with their owners, making it easy to select the one you want to monitor.
2. Direct Mode
Check a specific website using its ID:
website-usage <website_id>
3. Watch Mode
Monitor a website in real-time with continuous updates:
website-usage --watch <website_id>
4. JSON Mode
Get machine-readable output for integration with other tools:
website-usage --json <website_id>
Example Outputs
Standard Output
Website Information:
ID: abc123
Owner: webuser
CPU Usage: 45.23% (4 cores)
Memory Usage: 256 MB / 1024 MB (25.00%)
IO Usage:
Read: 1.23 MB/s
Write: 0.45 MB/s
Total: 1.68 MB/s
Processes: 12 / 50
Contributors
We're proud to announce that this version includes valuable contributions from:
- Added interactive website selection mode
- Implemented JSON output format
- Added watch mode for real-time monitoring
- Enhanced metrics and formatting
- Enhanced the original script
- Added color-coded output
- Created the new
siteinfo.sh
script
- Improved error handling
Special thanks to cPFence for sharing valuable systemd-cgtop commands and monitoring tips that helped improve our understanding of system resource monitoring. Their insights about monitoring system services and identifying resource-intensive applications have been particularly helpful.
You can find the commands here:
https://community.enhance.com/d/2601-monitor-website-resource-usage-with-website-usage-tool/26
https://community.enhance.com/d/2601-monitor-website-resource-usage-with-website-usage-tool/28
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 submit issues, or open pull requests with improvements and new features.
Conclusion
The website-usage v2 tool is an essential addition for any hosting provider looking to gain better insights into website resource consumption. With its new interactive mode, real-time monitoring, and JSON output, it's now more powerful and user-friendly than ever. 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! 🚀