{"id":22859750,"url":"https://github.com/narkisr/jps-stat","last_synced_at":"2026-05-01T09:32:16.609Z","repository":{"id":137715262,"uuid":"243009904","full_name":"narkisr/jps-stat","owner":"narkisr","description":"Top like interface for tracking multiple JVM processes stats","archived":false,"fork":false,"pushed_at":"2020-03-07T11:14:11.000Z","size":50,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-31T08:22:55.761Z","etag":null,"topics":["clojure","graalvm","jps","jstat","jvm","native"],"latest_commit_sha":null,"homepage":"","language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/narkisr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-2.0.txt","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":"2020-02-25T13:45:17.000Z","updated_at":"2020-03-09T03:07:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"537f047e-92e9-40d8-838b-d3a9bd4bbbe1","html_url":"https://github.com/narkisr/jps-stat","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/narkisr/jps-stat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narkisr%2Fjps-stat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narkisr%2Fjps-stat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narkisr%2Fjps-stat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narkisr%2Fjps-stat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/narkisr","download_url":"https://codeload.github.com/narkisr/jps-stat/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narkisr%2Fjps-stat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32492165,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["clojure","graalvm","jps","jstat","jvm","native"],"created_at":"2024-12-13T09:07:55.972Z","updated_at":"2026-05-01T09:32:16.592Z","avatar_url":"https://github.com/narkisr.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Intro\n\nA simple tool to respot java processes resources usage, including:\n\n* Heap usage\n* RAM usage\n* CPU usage\n* GC usage\n\nInspired by [jps_stat](https://github.com/amarjeetanandsingh/jps_stat).\n\nRequirements:\n * This tool only supports Ubuntu at the moment (if you wish to add support to your OS please submit a PR).\n * jps and jstat (both are bundled with the JDK).\n\n# Usage\n\nDownload the [latest](https://github.com/narkisr/jps-stat/releases/latest) release and add it to you path.\n\n```bash\n$ jps-stats top\n\npid    name  heap   gc    ram    cpu\n-------------------------------------\n20699  main  311MB  0.0%  293MB  0.2%\n21084  main  131MB  0.0%  964MB  1.8%\n\n\n# Show raw data (no filtering)\n$ jps-stats raw\n\n{:pid 22873, :name Jps, :heap nil, :gc nil, :ram nil, :cpu nil}\n{:pid 20699, :name main, :heap 311.74189453125, :gc 0.000M, :ram 293.8486328125, :cpu 0.2M}\n{:pid 21084, :name main, :heap 149.922265625, :gc 0.000M, :ram 964.1796875, :cpu 1.8M}\n\n# Filter pid's with partial data same as top\n$ jps_stat raw --f true\n\n{:pid 20699, :name main, :heap 311.74189453125, :gc 0.000M, :ram 293.8486328125, :cpu 0.2M}\n{:pid 21084, :name main, :heap 149.922265625, :gc 0.000M, :ram 964.1796875, :cpu 1.8M}\n\n```\n\n# Build\n\nMake sure to have the latest graalvm native-image tool:\n\n```bash\n$ lein uberjar\n$ native-image -jar target/jps-stat-0.2.2-standalone.jar --no-fallback --report-unsupported-elements-at-runtime --initialize-at-build-time --allow-incomplete-classpath\n```\n\n# Copyright and license\n\nCopyright [2020] [Ronen Narkis]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n  [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnarkisr%2Fjps-stat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnarkisr%2Fjps-stat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnarkisr%2Fjps-stat/lists"}