{"id":15069159,"url":"https://github.com/jagentsphere/jattacher","last_synced_at":"2026-01-02T15:50:41.680Z","repository":{"id":228609611,"uuid":"774446812","full_name":"JAgentSphere/jattacher","owner":"JAgentSphere","description":"A utility to diagnostics JVM processes using the Dynamic Attach mechanism.It is a Rust implementation of the HotSpotVirtualMachine and OpenJ9VirtualMachine from the tools.jar of the JDK.","archived":false,"fork":false,"pushed_at":"2024-03-19T15:45:31.000Z","size":7,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-22T19:45:57.361Z","etag":null,"topics":["attach","diagnostics","jvm","rust","tools"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JAgentSphere.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-03-19T15:08:32.000Z","updated_at":"2024-11-19T00:13:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"881db0db-445e-4ae6-b805-7aa8d386e93a","html_url":"https://github.com/JAgentSphere/jattacher","commit_stats":null,"previous_names":["jagentsphere/jattacher"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JAgentSphere%2Fjattacher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JAgentSphere%2Fjattacher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JAgentSphere%2Fjattacher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JAgentSphere%2Fjattacher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JAgentSphere","download_url":"https://codeload.github.com/JAgentSphere/jattacher/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243837017,"owners_count":20355814,"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","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":["attach","diagnostics","jvm","rust","tools"],"created_at":"2024-09-25T01:40:47.288Z","updated_at":"2026-01-02T15:50:41.641Z","avatar_url":"https://github.com/JAgentSphere.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"## jattacher\n\nA utility to diagnostics JVM processes using the Dynamic Attach mechanism.\n\nIt is a Rust implementation of\nthe [HotSpotVirtualMachine](https://github.com/openjdk/jdk8u/blob/master/jdk/src/share/classes/sun/tools/attach/HotSpotVirtualMachine.java)\nand [OpenJ9VirtualMachine](https://github.com/eclipse-openj9/openj9/blob/master/jcl/src/jdk.attach/share/classes/com/ibm/tools/attach/attacher/OpenJ9VirtualMachine.java)\nfrom the tools.jar of the JDK. However, No installed JDK required, works with just JRE.\n\n### Features\n\n- [ ] `jattacher jps` —— List all Java processes along with comprehensive process information, going beyond the default\n  JPS output\n  provided by OpenJ9 and HotSpot.\n- [ ] `jattacher jps --json` —— Output data in JSON format.\n- [ ] `jattacher jps --dashboard` —— Display Java process information in real time.\n\n### HotSpot Support\n\n\u003e [sun/tools](https://github.com/openjdk/jdk8u/tree/master/jdk/src/share/classes/sun/tools)\n\n- [ ] [`jps`](https://github.com/openjdk/jdk8u/blob/master/jdk/src/share/classes/sun/tools/jps/Arguments.java)\n- [ ] [`jcmd`](https://github.com/openjdk/jdk8u/blob/master/jdk/src/share/classes/sun/tools/jcmd/Arguments.java)\n- [ ] [`jmap`](https://github.com/openjdk/jdk8u/blob/master/jdk/src/share/classes/sun/tools/jmap/JMap.java)\n- [ ] [`jstack`](https://github.com/openjdk/jdk8u/blob/master/jdk/src/share/classes/sun/tools/jstack/JStack.java)\n- [ ] [`jstat`](https://github.com/openjdk/jdk8u/blob/master/jdk/src/share/classes/sun/tools/jstat/Arguments.java)\n- [ ] [`jinfo`](https://github.com/openjdk/jdk8u/blob/master/jdk/src/share/classes/sun/tools/jinfo/JInfo.java)\n\n### OpenJ9 Support\n\n\u003e [openj9/tools/attach/diagnostics/tools](https://github.com/eclipse-openj9/openj9/tree/master/jcl/src/jdk.jcmd/share/classes/openj9/tools/attach/diagnostics/tools)\n\n- [ ] [`jps`](https://github.com/eclipse-openj9/openj9/blob/master/jcl/src/jdk.jcmd/share/classes/openj9/tools/attach/diagnostics/tools/Jps.java)\n- [ ] [`jcmd`](https://github.com/eclipse-openj9/openj9/blob/master/jcl/src/jdk.jcmd/share/classes/openj9/tools/attach/diagnostics/tools/Jcmd.java)\n- [ ] [`jmap`](https://github.com/eclipse-openj9/openj9/blob/master/jcl/src/jdk.jcmd/share/classes/openj9/tools/attach/diagnostics/tools/Jmap.java)\n- [ ] [`jstack`](https://github.com/eclipse-openj9/openj9/blob/master/jcl/src/jdk.jcmd/share/classes/openj9/tools/attach/diagnostics/tools/Jstack.java)\n- [ ] [`jstat`](https://github.com/eclipse-openj9/openj9/blob/master/jcl/src/jdk.jcmd/share/classes/openj9/tools/attach/diagnostics/tools/Jstat.java)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjagentsphere%2Fjattacher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjagentsphere%2Fjattacher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjagentsphere%2Fjattacher/lists"}