{"id":23110577,"url":"https://github.com/wanghui5801/server_monitor","last_synced_at":"2026-05-02T03:32:10.857Z","repository":{"id":263654083,"uuid":"891059373","full_name":"wanghui5801/Server_Monitor","owner":"wanghui5801","description":"Lightweight server monitoring tool based on flask and python.","archived":false,"fork":false,"pushed_at":"2024-11-22T18:13:23.000Z","size":375,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T23:31:14.564Z","etag":null,"topics":["flask","monitoring","monitoring-tool","system"],"latest_commit_sha":null,"homepage":"https://vps.1101949.xyz","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wanghui5801.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-19T16:50:02.000Z","updated_at":"2024-11-22T18:13:27.000Z","dependencies_parsed_at":"2024-11-19T18:40:47.102Z","dependency_job_id":"6819bba5-cac1-4da1-8c39-2ff31835c910","html_url":"https://github.com/wanghui5801/Server_Monitor","commit_stats":null,"previous_names":["wanghui5801/server_monitor"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wanghui5801/Server_Monitor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wanghui5801%2FServer_Monitor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wanghui5801%2FServer_Monitor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wanghui5801%2FServer_Monitor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wanghui5801%2FServer_Monitor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wanghui5801","download_url":"https://codeload.github.com/wanghui5801/Server_Monitor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wanghui5801%2FServer_Monitor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32522245,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T01:12:54.858Z","status":"online","status_checked_at":"2026-05-02T02:00:05.923Z","response_time":132,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flask","monitoring","monitoring-tool","system"],"created_at":"2024-12-17T01:49:25.612Z","updated_at":"2026-05-02T03:32:10.837Z","avatar_url":"https://github.com/wanghui5801.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Server Monitor\n\nA lightweight server monitoring system that supports both Linux and Windows platforms, providing real-time monitoring of server status including CPU, memory, disk usage, and network traffic.\n\n\u003cdiv style=\"display: flex; justify-content: space-between; margin: 20px 0;\"\u003e\n    \u003cimg src=\"figure/f1.png\" alt=\"Desktop View\"\u003e\n\u003c/div\u003e\n\n## Features\n\n- Real-time monitoring of multiple servers\n- Support for both Linux and Windows systems\n- Automatic server type detection (VPS/Dedicated)\n- System resource monitoring (CPU, Memory, Disk)\n- Network traffic monitoring\n- Server location detection\n- Responsive web interface\n- Auto-reconnect mechanism\n- Custom node naming\n- Alphabetical node sorting (nodes are automatically sorted by name)\n\n## Quick Installation\n\n### Server Side\n\n#### Linux:\n\n```\nbash \u003c(curl -fsSL https://raw.githubusercontent.com/wanghui5801/Server_Monitor/main/install_server_linux.sh)\n```\n\n\n### Client Side\n\n#### Linux:\n\n\n```\nbash \u003c(curl -fsSL https://raw.githubusercontent.com/wanghui5801/Server_Monitor/main/install_client_linux.sh)\n```\n\n\n#### Windows:\n\n\n```\ncurl -fsSL https://raw.githubusercontent.com/wanghui5801/Server_Monitor/main/install_client_windows.bat -o install.bat \u0026\u0026 install.bat\n```\n\n\n## Prerequisites\n\n### Server Side:\n- Python 3.6+\n- Git\n- pip\n\n### Client Side:\n- Python 3.6+\n- Git\n- pip\n- Administrator/Root privileges\n- For Windows: wmi and pywin32 packages (automatically installed by script)\n\n## Manual Installation\n\n1. Clone the repository:\n\n\n```\ngit clone https://github.com/wanghui5801/Server_Monitor.git\n```\n\n\n2. Create virtual environment:\n\n\n```\npython3 -m venv venv\nsource venv/bin/activate  # Linux\nvenv\\Scripts\\activate     # Windows\n```\n\n\n3. Install dependencies:\n\n```\npip install -r requirements.txt\n```\n\n\n4. Run the server:\n\n```\npython server/app.py\n```\n\n\n5. Run the client:\n\n```\npython client/monitor.py\n```\n\n\n## Configuration\n\n- Server default port: 5000\n- Client update interval: 5 seconds\n- Client retry mechanism: 3 attempts with 30-second delay\n- Server timeout: 10 seconds for inactive clients\n- Node display: Automatically sorted alphabetically by node name\n\n## Web Interface\n\nAccess the monitoring dashboard at `http://your-server-ip:5000` after starting the server. The nodes will be displayed in alphabetical order based on their names.\n\n## License\n\nMIT License\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch\n3. Commit your changes\n4. Push to the branch\n5. Create a new Pull Request","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwanghui5801%2Fserver_monitor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwanghui5801%2Fserver_monitor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwanghui5801%2Fserver_monitor/lists"}