{"id":22746156,"url":"https://github.com/meteorgx/systemstat-warp","last_synced_at":"2026-07-18T02:33:20.710Z","repository":{"id":187107211,"uuid":"676324298","full_name":"MeteorGX/systemstat-warp","owner":"MeteorGX","description":"By using the Rust crates systemstat and warp, I wrapped a Web API to monitor server performance.","archived":false,"fork":false,"pushed_at":"2023-08-11T16:43:16.000Z","size":698,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-24T19:57:18.338Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/MeteorGX.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":"2023-08-09T00:26:08.000Z","updated_at":"2023-08-09T00:29:37.000Z","dependencies_parsed_at":"2023-08-09T02:28:42.660Z","dependency_job_id":"a1f8187b-83c9-4e1a-a8a0-aca296cb7e45","html_url":"https://github.com/MeteorGX/systemstat-warp","commit_stats":null,"previous_names":["meteorgx/systemstat-warp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MeteorGX/systemstat-warp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeteorGX%2Fsystemstat-warp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeteorGX%2Fsystemstat-warp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeteorGX%2Fsystemstat-warp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeteorGX%2Fsystemstat-warp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MeteorGX","download_url":"https://codeload.github.com/MeteorGX/systemstat-warp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeteorGX%2Fsystemstat-warp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35602804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-18T02:00:07.223Z","response_time":61,"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":[],"created_at":"2024-12-11T02:11:45.938Z","updated_at":"2026-07-18T02:33:20.690Z","avatar_url":"https://github.com/MeteorGX.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# systemstat-warp\n\nBy using the Rust crates systemstat and tokio, I wrapped a Web API to monitor server performance.\n\n```toml\n[dependencies]\nsystemstat-warp = \"1.0.0\"\n```\n\n## Rust version requirements\n\nsystemstat-warp works with stable Rust, and typically works with the most recent prior\nstable release as well.\n\n## Building systemstat-warp\n\n```shell\n$ git clone https://github.com/MeteorGX/systemstat-warp.git\n$ cd systemstat-warp\n$ cargo build --release\n```\n\n## Example\n\n- Url: [monitor.meteorcat.net](https://monitor.meteorcat.net)\n- Username: `meteorcat`\n- Password: `meteorcat`\n\n## Configuration\n\n```toml\n# normal config\n[default]\nlog = \"debug\" # logger level\n\n\n# web config\n[web]\naddress = \"127.0.0.1\" # listen server\nport = 18081 # listen port\nstatic_dir = \"./html/\" # static directory\ncipher = \"sha256\" # cipher method\nauth = \"meteorcat:fe67eaa1f8b3b85a3a135795128abf9f4594f95128bef04c276f7dbcf1198b78\" # auth[username:password(SHA256)]\n```\n\n## Run by Systemd\n\n```ini\n# vim /etc/systemd/system/systemstat-warp.service\n[Unit]\nDescription = Systemstat-warp Server Monitor\nDocumentation = https://github.com/MeteorGX/systemstat-warp\nAfter = network.target nss-lookup.target\n\n\n[Service]\n# 1. create systemstat user\n# 2. cp systemstat-warp-cli /usr/bin\n# 3. touch /etc/systemstat-warp.toml\nUser = nobody\nExecStart = /usr/bin/systemstat-warp-cli /etc/systemstat-warp.toml\nRestart = on-failure\nRestartPreventExitStatus = 23\nLimitNOFILE = 65535\n\n[Install]\nWantedBy = multi-user.target\n```\n\n## Forward Nginx\n\n```nginx\n# monitor.conf\nserver {\n    listen 80;\n    server_name monitor.meteorcat.net;\n    location / {\n      proxy_pass http://127.0.0.1:18081;\n      proxy_redirect off;\n      proxy_set_header Host $host;\n      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n      proxy_set_header X-real-ip $remote_addr;\n    }\n}\n```\n\n# License\n\nThis project is licensed under either of\n\n* MIT license ([LICENSE-MIT](LICENSE-MIT) or\n  https://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeteorgx%2Fsystemstat-warp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeteorgx%2Fsystemstat-warp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeteorgx%2Fsystemstat-warp/lists"}