{"id":19998947,"url":"https://github.com/hanaasagi/httpstat-rs","last_synced_at":"2026-05-09T12:34:58.075Z","repository":{"id":87052118,"uuid":"166047403","full_name":"Hanaasagi/httpstat-rs","owner":"Hanaasagi","description":" curl statistics made simple 🍁","archived":false,"fork":false,"pushed_at":"2019-01-20T13:48:31.000Z","size":16,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-18T02:48:58.585Z","etag":null,"topics":["curl","httpstat","metrics","rust"],"latest_commit_sha":null,"homepage":"","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/Hanaasagi.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-01-16T13:45:40.000Z","updated_at":"2019-06-13T06:18:36.000Z","dependencies_parsed_at":"2023-07-15T15:35:14.454Z","dependency_job_id":null,"html_url":"https://github.com/Hanaasagi/httpstat-rs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Hanaasagi/httpstat-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hanaasagi%2Fhttpstat-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hanaasagi%2Fhttpstat-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hanaasagi%2Fhttpstat-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hanaasagi%2Fhttpstat-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hanaasagi","download_url":"https://codeload.github.com/Hanaasagi/httpstat-rs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hanaasagi%2Fhttpstat-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32819553,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"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":["curl","httpstat","metrics","rust"],"created_at":"2024-11-13T05:09:59.501Z","updated_at":"2026-05-09T12:34:58.068Z","avatar_url":"https://github.com/Hanaasagi.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# httpstat-rs\n\n\u003e httpstat visualizes `curl(1)` statistics in a way of beauty and clarity.\n\nRust implementation of [reorx/httpstat](https://github.com/reorx/httpstat).\n\n```\nConnected to 52.202.60.111:80 from 13.130.43.129:56954\nHTTP/1.1 200 OK\nConnection: keep-alive\nServer: gunicorn/19.9.0\nDate: Sat, 19 Jan 2019 06:02:08 GMT\nContent-Type: application/json\nContent-Length: 214\nAccess-Control-Allow-Origin: *\nAccess-Control-Allow-Credentials: true\nVia: 1.1 vegur\n\n\nBody stored in: /tmp/.tmpXbZXuj\n\n  DNS Lookup   TCP Connection   Server Processing   Content Transfer\n[    14ms    |      167ms     |       173ms       |        0ms       ]\n             |                |                   |                  |\n    namelookup:14ms           |                   |                  |\n                        connect:181ms             |                  |\n                                      starttransfer:354ms            |\n                                                                 total:354ms\n\n```\n\n\n### Install\n\nLocal build:\n```Bash\ncargo install --git https://github.com/Hanaasagi/httpstat-rs\n```\nDocker build:\n\n```Bash\ngit clone https://github.com/Hanaasagi/httpstat-rs\ncd httpstat-rs\nmake install\n```\n\n### Usage\n\n```\nUsage: httpstat URL [CURL_OPTIONS]\n       httpstat -h | --help\n       httpstat --version\nArguments:\n  URL     url to request, could be with or without `http(s)://` prefix\nOptions:\n  CURL_OPTIONS  any curl supported options, except for -w -D -o -S -s,\n                which are already used internally.\n  -h --help     show this screen.\n  --version     show version.\nEnvironments:\n  HTTPSTAT_SHOW_BODY    Set to `true` to show response body in the output,\n                        note that body length is limited to 1023 bytes, will be\n                        )truncated if exceeds. Default is `false`.\n  HTTPSTAT_SHOW_IP      By default httpstat shows remote and local IP/port address.\n                        Set to `false` to disable this feature. Default is `true`.\n  HTTPSTAT_SHOW_SPEED   Set to `true` to show download and upload speed.\n                        Default is `false`.\n  HTTPSTAT_SAVE_BODY    By default httpstat stores body in a tmp file,\n                        set to `false` to disable this feature. Default is `true`\n  HTTPSTAT_CURL_BIN     Indicate the curl bin path to use. Default is `curl`\n                        from current shell $PATH.\n  HTTPSTAT_DEBUG        Set to `true` to see debugging logs. Default is `false`\n```\n\n### License\n\n[MIT License](https://github.com/Hanaasagi/httpstat-rs/blob/master/LICENSE) Copyright (c) 2019, Hanaasagi\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhanaasagi%2Fhttpstat-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhanaasagi%2Fhttpstat-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhanaasagi%2Fhttpstat-rs/lists"}