monutil/README.md

13 lines
772 B
Markdown
Raw Normal View History

2024-06-25 19:06:57 +00:00
# monutil
2024-06-27 17:38:35 +00:00
Simple Python utility for monitoring CPU and RAM usage, and monitoring the speed when downloading URLs.
2024-06-27 17:38:54 +00:00
Both CPU/RAM monitoring and URL monitoring can be set on their own monitoring periods. See the available configuration options, which should be specified in config.py.
2024-06-27 17:37:27 +00:00
**Configuration options:**
- hostMonitoringPeriod - the delay in between the CPU and RAM usage being probed (defined in seconds).
- urlMonitoringPeriod - the delay in between monitoring all of the URLs (defined in seconds).
2024-06-27 18:00:06 +00:00
- urls - the list of URLs to monitor (e.g. ["url1", "url2"]).
2024-06-27 17:37:27 +00:00
- urlTimeout - the delay before considering a URL to have timed out.
- maxWorkers - the amount of threads to use when pulling URL resources. Do not set above the maximum number of threads on the host.