{"id":13585193,"url":"https://github.com/wookayin/gpustat-web","last_synced_at":"2025-10-11T00:35:56.647Z","repository":{"id":37431345,"uuid":"154119553","full_name":"wookayin/gpustat-web","owner":"wookayin","description":"👓 A web interface of gpustat: monitor GPU clusters at a look","archived":false,"fork":false,"pushed_at":"2024-01-04T08:31:30.000Z","size":201,"stargazers_count":346,"open_issues_count":6,"forks_count":41,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-09-28T03:02:06.545Z","etag":null,"topics":["gpu","gpustat","monitoring","python"],"latest_commit_sha":null,"homepage":"","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/wookayin.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":"2018-10-22T09:41:26.000Z","updated_at":"2025-08-27T13:22:40.000Z","dependencies_parsed_at":"2024-01-04T09:40:45.590Z","dependency_job_id":"24f0fa3b-816f-44e1-aa77-b2c71acfcee5","html_url":"https://github.com/wookayin/gpustat-web","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/wookayin/gpustat-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wookayin%2Fgpustat-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wookayin%2Fgpustat-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wookayin%2Fgpustat-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wookayin%2Fgpustat-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wookayin","download_url":"https://codeload.github.com/wookayin/gpustat-web/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wookayin%2Fgpustat-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005651,"owners_count":26083942,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"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":["gpu","gpustat","monitoring","python"],"created_at":"2024-08-01T15:04:47.704Z","updated_at":"2025-10-11T00:35:56.632Z","avatar_url":"https://github.com/wookayin.png","language":"Python","funding_links":[],"categories":["Python","HarmonyOS"],"sub_categories":["Windows Manager"],"readme":"gpustat-web\n===========\n\nA web interface of [`gpustat`][gpustat] ---\naggregate `gpustat` across multiple nodes.\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/wookayin/gpustat-web/raw/master/screenshot.png\" width=\"800\" height=\"192\" /\u003e\n\u003c/p\u003e\n\n**NOTE**: This project is in alpha stage. Errors and exceptions are not well handled, and it might use much network resources. Please use at your own risk!\n\n\nInstallation\n-----\n\n```\npip install gpustat-web\n```\n\nPython 3.6+ is required.\n\nUsage\n-----\n\nLaunch the application as follows. A SSH connection will be established to each of the specified hosts.\nMake sure `ssh \u003chost\u003e` works under a proper authentication scheme such as SSH authentication.\n\n```\ngpustat-web --port 48109 HOST1 [... HOSTN]\n```\n\nYou might get \"Host key is not trusted for `\u003chost\u003e`\" errors. You'll have to accept and trust SSH keys of the host for the first time (it's stored in `~/.ssh/known_hosts`);\ntry `ssh \u003chost\u003e` in the command line, or `ssh -oStrictHostKeyChecking=accept-new \u003chost\u003e` to automatically accept the host key. You can also use an option `gpustat-web --no-verify-host` to bypass SSH Host key validation (although not recommended).\n\nNote that asyncssh [does NOT obey](https://github.com/ronf/asyncssh/issues/108) the `~/.ssh/config` file\n(e.g. alias, username, keyfile), so any config in `~/.ssh/config` might not be picked up.\n\n\n[gpustat]: https://github.com/wookayin/gpustat/\n\n\n### Endpoints\n\n- `https://HOST:PORT/`: A webpage that updates automatically through websocket.\n- `https://HOST:PORT/gpustat.html`: Result as a static HTML page.\n- `https://HOST:PORT/gpustat.txt`: Result as a static plain text.\n- `https://HOST:PORT/gpustat.ansi`: Result as a static text with ANSI color codes. Try `curl https://.../gpustat.ansi`\n\nQuery strings:\n\n- `?nodes=gpu001,gpu002`: Select a subset of nodes to query and display\n\n\n### Running as a HTTP (SSL/TLS) server\n\nBy default the web server will run as a HTTP server.\nIf you want to run a secure SSL/TLS server over the HTTPS protocol, use `--ssl-certfile` and `--ssl-keyfile` option.\nYou can use letsencrypt (`certbot`) to create a pair of SSL certificate and keyfile.\n\nTroubleshoothing: Verify SSL/TLS handshaking (if TLS connections cannot be established)\n```\nopenssl s_client -showcerts -connect YOUR_HOST.com:PORT \u003c /dev/null\n```\n\n\n### More Examples\n\nTo see CPU usage as well:\n\n```\npython -m gpustat_web --exec 'gpustat --color --gpuname-width 25 \u0026\u0026 echo -en \"CPU : \\033[0;31m\" \u0026\u0026 cpu-usage | ascii-bar 27'\n```\n\n\nLicense\n-------\n\nMIT License\n\nCopyright (c) 2018-2023 Jongwook Choi\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwookayin%2Fgpustat-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwookayin%2Fgpustat-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwookayin%2Fgpustat-web/lists"}