{"id":15066808,"url":"https://github.com/sile/sysinfojson","last_synced_at":"2026-03-01T14:34:24.895Z","repository":{"id":257789493,"uuid":"860871926","full_name":"sile/sysinfojson","owner":"sile","description":"Command-line tool that displays system information collected using `sysinfo` crate in JSON format","archived":false,"fork":false,"pushed_at":"2024-09-21T12:31:21.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-18T23:14:59.402Z","etag":null,"topics":["command-line","json","rust","system-information"],"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/sile.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-09-21T11:49:11.000Z","updated_at":"2025-01-30T18:28:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"b5124620-c4fb-4a89-ae09-e1ebb69591e0","html_url":"https://github.com/sile/sysinfojson","commit_stats":null,"previous_names":["sile/sysinfojson"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/sile/sysinfojson","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sile%2Fsysinfojson","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sile%2Fsysinfojson/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sile%2Fsysinfojson/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sile%2Fsysinfojson/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sile","download_url":"https://codeload.github.com/sile/sysinfojson/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sile%2Fsysinfojson/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29970994,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T14:11:48.712Z","status":"ssl_error","status_checked_at":"2026-03-01T14:11:48.352Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["command-line","json","rust","system-information"],"created_at":"2024-09-25T01:12:26.171Z","updated_at":"2026-03-01T14:34:24.869Z","avatar_url":"https://github.com/sile.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"sysinfojson\n===========\n\n[![sysinfojson](https://img.shields.io/crates/v/sysinfojson.svg)](https://crates.io/crates/sysinfojson)\n[![Actions Status](https://github.com/sile/sysinfojson/workflows/CI/badge.svg)](https://github.com/sile/sysinfojson/actions)\n![License](https://img.shields.io/crates/l/sysinfojson)\n\nCommand-line tool that displays system information collected using [sysinfo] crate in JSON format.\n\n[sysinfo]: https://crates.io/crates/sysinfo\n\n```console\n// Install.\n$ cargo install sysinfojson\n\n// Print help.\n$ sysinfojson -h\nCommand-line tool that displays system information collected using `sysinfo` crate in JSON format\n\nUsage: sysinfojson \u003cCOMMAND\u003e\n\nCommands:\n  system   Displays system information\n  process  Displays process information\n  help     Print this message or the help of the given subcommand(s)\n\nOptions:\n  -h, --help     Print help\n  -V, --version  Print version\n\n// Display system information (all).\n$ sysinfojson system | jq . | head -10\n{\n  \"cpu\": {\n    \"cpus\": [\n      {\n        \"brand\": \"Apple M1 Max\",\n        \"cpu_usage\": 63.6363639831543,\n        \"frequency\": 3228,\n        \"name\": \"1\",\n        \"vendor_id\": \"Apple\"\n      },\n\n// Display system information (memory only).\n$ sysinfojson system memory | jq .\n{\n  \"memory\": {\n    \"available_memory\": 38833061888,\n    \"total_memory\": 68719476736,\n    \"total_swap\": 0,\n    \"used_memory\": 33337425920,\n    \"used_swap\": 0\n  }\n}\n\n// Display process information (PID: 1).\n$ sysinfojson process 1 | jq .\n{\n  \"cmd\": [],\n  \"cpu_usage\": 0,\n  \"cwd\": null,\n  \"disk_usage\": {\n    \"read_bytes\": 0,\n    \"total_read_bytes\": 0,\n    \"total_written_bytes\": 0,\n    \"written_bytes\": 0\n  },\n  \"effective_group_id\": null,\n  \"effective_user_id\": null,\n  \"environ\": [],\n  \"exe\": \"/sbin/launchd\",\n  \"group_id\": null,\n  \"memory\": 0,\n  \"name\": \"launchd\",\n  \"parent\": null,\n  \"root\": null,\n  \"run_time\": 0,\n  \"session_id\": 1,\n  \"start_time\": 0,\n  \"status\": \"Unknown\",\n  \"tasks\": null,\n  \"thread_kind\": null,\n  \"user_id\": null,\n  \"virtual_memory\": 0\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsile%2Fsysinfojson","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsile%2Fsysinfojson","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsile%2Fsysinfojson/lists"}