{"id":13458816,"url":"https://github.com/alibaba/arthas","last_synced_at":"2026-01-12T09:52:19.271Z","repository":{"id":37405467,"uuid":"146633589","full_name":"alibaba/arthas","owner":"alibaba","description":"Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas","archived":false,"fork":false,"pushed_at":"2025-04-15T14:15:33.000Z","size":55549,"stargazers_count":36214,"open_issues_count":441,"forks_count":7549,"subscribers_count":1127,"default_branch":"master","last_synced_at":"2025-05-05T13:57:57.032Z","etag":null,"topics":["agent","alibaba","arthas","classloader","diagnosis","java","jvm","trace","trouble-shooting"],"latest_commit_sha":null,"homepage":"https://arthas.aliyun.com/","language":"Java","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/alibaba.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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}},"created_at":"2018-08-29T17:15:57.000Z","updated_at":"2025-05-05T10:23:30.000Z","dependencies_parsed_at":"2023-10-20T16:37:54.752Z","dependency_job_id":"ec94056b-d2ed-433d-812b-510a272d917e","html_url":"https://github.com/alibaba/arthas","commit_stats":{"total_commits":1911,"total_committers":229,"mean_commits":8.344978165938864,"dds":"0.34065934065934067","last_synced_commit":"8200afb3cca1fbcdc97d5ebc233b372e1469b76d"},"previous_names":[],"tags_count":64,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alibaba%2Farthas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alibaba%2Farthas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alibaba%2Farthas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alibaba%2Farthas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alibaba","download_url":"https://codeload.github.com/alibaba/arthas/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253761285,"owners_count":21960114,"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":["agent","alibaba","arthas","classloader","diagnosis","java","jvm","trace","trouble-shooting"],"created_at":"2024-07-31T09:00:57.740Z","updated_at":"2025-12-29T08:19:04.719Z","avatar_url":"https://github.com/alibaba.png","language":"Java","funding_links":[],"categories":["HarmonyOS","Java","JVM运行期工具","Tool","Java 程序设计","大厂开源","性能分析","Uncategorized","五、部署与诊断","Projects","项目","Developer Tools and Automation","工具","3. Application","Projects List"],"sub_categories":["Windows Manager","Common Utils/Code Quality","网络服务_其他","阿里开源","Uncategorized","2. 诊断工具","Utility","实用程序","Code Automation and Testing","任务调度","Java"],"readme":"## Arthas\n\n![arthas](site/docs/.vuepress/public/images/arthas.png)\n\n[![Build Status](https://github.com/alibaba/arthas/workflows/JavaCI/badge.svg)](https://github.com/alibaba/arthas/actions)\n[![download](https://img.shields.io/github/downloads/alibaba/arthas/total?label=Downloads)](https://github.com/alibaba/arthas/releases/latest)\n[![maven](https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg)](https://search.maven.org/search?q=g:com.taobao.arthas)\n![license](https://img.shields.io/github/license/alibaba/arthas.svg)\n[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/alibaba/arthas.svg)](http://isitmaintained.com/project/alibaba/arthas \"Average time to resolve an issue\")\n[![Percentage of issues still open](http://isitmaintained.com/badge/open/alibaba/arthas.svg)](http://isitmaintained.com/project/alibaba/arthas \"Percentage of issues still open\")\n[![Leaderboard](https://img.shields.io/badge/Arthas-Check%20Your%20Contribution-orange)](https://opensource.alibaba.com/contribution_leaderboard/details?projectValue=arthas)\n\n`Arthas` is a Java Diagnostic tool open sourced by Alibaba.\n\nArthas allows developers to troubleshoot production issues for Java applications without modifying code or restarting servers.\n\n[中文说明/Chinese Documentation](README_CN.md)\n\n### Background\n\nOften times, the production system network is inaccessible from the local development environment. If issues are encountered in production systems, it is impossible to use IDEs to debug the application remotely. More importantly, debugging in production environment is unacceptable, as it will suspend all the threads, resulting in the suspension of business services. \n\nDevelopers could always try to reproduce the same issue on the test/staging environment. However, this is tricky as some issues cannot be reproduced easily on a different environment, or even disappear once restarted. \n\nAnd if you're thinking of adding some logs to your code to help troubleshoot the issue, you will have to go through the following lifecycle; test, staging, and then to production. Time is money! This approach is inefficient! Besides, the issue may not be reproducible once the JVM is restarted, as described above.\n\nArthas was built to solve these issues. A developer can troubleshoot your production issues on-the-fly. No JVM restart, no additional code changes. Arthas works as an observer, which will never suspend your existing threads.\n\n### Key features\n\n* Check whether a class is loaded, or where the class is being loaded. (Useful for troubleshooting jar file conflicts)\n* Decompile a class to ensure the code is running as expected.\n* View classloader statistics, e.g. the number of classloaders, the number of classes loaded per classloader, the classloader hierarchy, possible classloader leaks, etc.\n* View the method invocation details, e.g. method parameter, return object, thrown exception, and etc.\n* Check the stack trace of specified method invocation. This is useful when a developers wants to know the caller of the said method.\n* Trace the method invocation to find slow sub-invocations.\n* Monitor method invocation statistics, e.g. qps, rt, success rate and etc.\n* Monitor system metrics, thread states and cpu usage, gc statistics, and etc.\n* Supports command line interactive mode, with auto-complete feature enabled.\n* Supports telnet and websocket, which enables both local and remote diagnostics with command line and browsers.\n* Supports profiler/Flame Graph\n* Support get objects in the heap that are instances of the specified class. \n* Supports JDK 6+ (version 4.x no longer supports JDK 6 and JDK 7).\n* Supports Linux/Mac/Windows.\n\n\n### Online Tutorials(Recommended)\n\n* [View](https://arthas.aliyun.com/doc/arthas-tutorials.html?language=en)\n\n### Quick start\n\n#### Use `arthas-boot`(Recommended)\n\nDownload`arthas-boot.jar`，Start with `java` command:\n\n```bash\ncurl -O https://arthas.aliyun.com/arthas-boot.jar\njava -jar arthas-boot.jar\n```\n\nPrint usage:\n\n```bash\njava -jar arthas-boot.jar -h\n```\n\n#### Use `as.sh`\n\nYou can install Arthas with one single line command on Linux, Unix, and Mac. Copy the following command and paste it into the command line, then press *Enter* to run:\n\n```bash\ncurl -L https://arthas.aliyun.com/install.sh | sh\n```\n\nThe command above will download the bootstrap script `as.sh` to the current directory. You can move it any other place you want, or put its location in `$PATH`.\n\nYou can enter its interactive interface by executing `as.sh`, or execute `as.sh -h` for more help information.\n\n\n### Documentation\n\n* [Online Tutorials(Recommended)](https://arthas.aliyun.com/doc/arthas-tutorials.html?language=en)\n* [User manual](https://arthas.aliyun.com/doc/en)\n* [Installation](https://arthas.aliyun.com/doc/en/install-detail.html)\n* [Download](https://arthas.aliyun.com/doc/en/download.html)\n* [Quick start](https://arthas.aliyun.com/doc/en/quick-start.html)\n* [Advanced usage](https://arthas.aliyun.com/doc/en/advanced-use.html)\n* [Commands](https://arthas.aliyun.com/doc/en/commands.html)\n* [WebConsole](https://arthas.aliyun.com/doc/en/web-console.html)\n* [Docker](https://arthas.aliyun.com/doc/en/docker.html)\n* [Arthas Spring Boot Starter](https://arthas.aliyun.com/doc/en/spring-boot-starter.html)\n* [User cases](https://github.com/alibaba/arthas/issues?q=label%3Auser-case)\n* [FAQ](https://arthas.aliyun.com/doc/en/faq)\n* [Compile and debug/How to contribute](https://github.com/alibaba/arthas/blob/master/CONTRIBUTING.md)\n* [Release Notes](https://github.com/alibaba/arthas/releases)\n\n\n### Feature Showcase\n\n#### Dashboard\n\n* https://arthas.aliyun.com/doc/en/dashboard\n\n![dashboard](site/docs/.vuepress/public/images/dashboard.png)\n\n#### Thread\n\n* https://arthas.aliyun.com/doc/en/thread\n\nSee what is eating your CPU (ranked by top CPU usage) and what is going on there in one glance:\n\n```bash\n$ thread -n 3\n\"as-command-execute-daemon\" Id=29 cpuUsage=75% RUNNABLE\n    at sun.management.ThreadImpl.dumpThreads0(Native Method)\n    at sun.management.ThreadImpl.getThreadInfo(ThreadImpl.java:440)\n    at com.taobao.arthas.core.command.monitor200.ThreadCommand$1.action(ThreadCommand.java:58)\n    at com.taobao.arthas.core.command.handler.AbstractCommandHandler.execute(AbstractCommandHandler.java:238)\n    at com.taobao.arthas.core.command.handler.DefaultCommandHandler.handleCommand(DefaultCommandHandler.java:67)\n    at com.taobao.arthas.core.server.ArthasServer$4.run(ArthasServer.java:276)\n    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)\n    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)\n    at java.lang.Thread.run(Thread.java:745)\n\n    Number of locked synchronizers = 1\n    - java.util.concurrent.ThreadPoolExecutor$Worker@6cd0b6f8\n\n\"as-session-expire-daemon\" Id=25 cpuUsage=24% TIMED_WAITING\n    at java.lang.Thread.sleep(Native Method)\n    at com.taobao.arthas.core.server.DefaultSessionManager$2.run(DefaultSessionManager.java:85)\n\n\"Reference Handler\" Id=2 cpuUsage=0% WAITING on java.lang.ref.Reference$Lock@69ba0f27\n    at java.lang.Object.wait(Native Method)\n    -  waiting on java.lang.ref.Reference$Lock@69ba0f27\n    at java.lang.Object.wait(Object.java:503)\n    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:133)\n```\n\n#### jad\n\n* https://arthas.aliyun.com/doc/en/jad\n\nDecompile your class with one shot:\n\n```java\n$ jad javax.servlet.Servlet\n\nClassLoader:\n+-java.net.URLClassLoader@6108b2d7\n  +-sun.misc.Launcher$AppClassLoader@18b4aac2\n    +-sun.misc.Launcher$ExtClassLoader@1ddf84b8\n\nLocation:\n/Users/xxx/work/test/lib/servlet-api.jar\n\n/*\n * Decompiled with CFR 0_122.\n */\npackage javax.servlet;\n\nimport java.io.IOException;\nimport javax.servlet.ServletConfig;\nimport javax.servlet.ServletException;\nimport javax.servlet.ServletRequest;\nimport javax.servlet.ServletResponse;\n\npublic interface Servlet {\n    public void init(ServletConfig var1) throws ServletException;\n\n    public ServletConfig getServletConfig();\n\n    public void service(ServletRequest var1, ServletResponse var2) throws ServletException, IOException;\n\n    public String getServletInfo();\n\n    public void destroy();\n}\n```\n\n#### mc\n* https://arthas.aliyun.com/doc/en/mc\n\nMemory compiler, compiles `.java` files into `.class` files in memory.\n\n```bash\n$ mc /tmp/Test.java\n```\n\n#### retransform\n\n* https://arthas.aliyun.com/doc/en/retransform\n\nLoad the external `*.class` files to retransform/hotswap the loaded classes in JVM.\n\n```bash\nretransform /tmp/Test.class\nretransform -c 327a647b /tmp/Test.class /tmp/Test\\$Inner.class\n```\n\n#### sc\n\n* https://arthas.aliyun.com/doc/en/sc\n\nSearch any loaded class with detailed information.\n\n```bash\n$ sc -d org.springframework.web.context.support.XmlWebApplicationContext\n class-info        org.springframework.web.context.support.XmlWebApplicationContext\n code-source       /Users/xxx/work/test/WEB-INF/lib/spring-web-3.2.11.RELEASE.jar\n name              org.springframework.web.context.support.XmlWebApplicationContext\n isInterface       false\n isAnnotation      false\n isEnum            false\n isAnonymousClass  false\n isArray           false\n isLocalClass      false\n isMemberClass     false\n isPrimitive       false\n isSynthetic       false\n simple-name       XmlWebApplicationContext\n modifier          public\n annotation\n interfaces\n super-class       +-org.springframework.web.context.support.AbstractRefreshableWebApplicationContext\n                     +-org.springframework.context.support.AbstractRefreshableConfigApplicationContext\n                       +-org.springframework.context.support.AbstractRefreshableApplicationContext\n                         +-org.springframework.context.support.AbstractApplicationContext\n                           +-org.springframework.core.io.DefaultResourceLoader\n                             +-java.lang.Object\n class-loader      +-org.apache.catalina.loader.ParallelWebappClassLoader\n                     +-java.net.URLClassLoader@6108b2d7\n                       +-sun.misc.Launcher$AppClassLoader@18b4aac2\n                         +-sun.misc.Launcher$ExtClassLoader@1ddf84b8\n classLoaderHash   25131501\n\n```\n\n\n#### vmtool\n\n* https://arthas.aliyun.com/doc/en/vmtool\n\nGet objects in the heap that are instances of the specified class.\n\n```bash\n$ vmtool --action getInstances --className java.lang.String --limit 10\n@String[][\n    @String[com/taobao/arthas/core/shell/session/Session],\n    @String[com.taobao.arthas.core.shell.session.Session],\n    @String[com/taobao/arthas/core/shell/session/Session],\n    @String[com/taobao/arthas/core/shell/session/Session],\n    @String[com/taobao/arthas/core/shell/session/Session.class],\n    @String[com/taobao/arthas/core/shell/session/Session.class],\n    @String[com/taobao/arthas/core/shell/session/Session.class],\n    @String[com/],\n    @String[java/util/concurrent/ConcurrentHashMap$ValueIterator],\n    @String[java/util/concurrent/locks/LockSupport],\n]\n```\n\n#### stack\n\n* https://arthas.aliyun.com/doc/en/stack\n\nView the call stack of `test.arthas.TestStack#doGet`:\n\n```bash\n$ stack test.arthas.TestStack doGet\nPress Ctrl+C to abort.\nAffect(class-cnt:1 , method-cnt:1) cost in 286 ms.\nts=2018-09-18 10:11:45;thread_name=http-bio-8080-exec-10;id=d9;is_daemon=true;priority=5;TCCL=org.apache.catalina.loader.ParallelWebappClassLoader@25131501\n    @test.arthas.TestStack.doGet()\n        at javax.servlet.http.HttpServlet.service(HttpServlet.java:624)\n        at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)\n        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)\n        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)\n        at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)\n        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)\n        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)\n        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)\n        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)\n        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)\n        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:110)\n        ...\n        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)\n        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)\n        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)\n        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:451)\n        at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1121)\n        at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)\n        at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:316)\n        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)\n        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)\n        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n        at java.lang.Thread.run(Thread.java:745)\n```\n\n#### Trace\n\n* https://arthas.aliyun.com/doc/en/trace\n\nSee what is slowing down your method invocation with trace command:\n\n![trace](site/docs/.vuepress/public/images/trace.png)\n\n#### Watch\n\n* https://arthas.aliyun.com/doc/en/watch\n\nWatch the first parameter and thrown exception of `test.arthas.TestWatch#doGet` only if it throws exception.\n\n```bash\n$ watch test.arthas.TestWatch doGet {params[0], throwExp} -e\nPress Ctrl+C to abort.\nAffect(class-cnt:1 , method-cnt:1) cost in 65 ms.\nts=2018-09-18 10:26:28;result=@ArrayList[\n    @RequestFacade[org.apache.catalina.connector.RequestFacade@79f922b2],\n    @NullPointerException[java.lang.NullPointerException],\n]\n```\n\n#### Monitor\n\n* https://arthas.aliyun.com/doc/en/monitor\n\nMonitor a specific method invocation statistics, including the total number of invocations, average response time, success rate, and every 5 seconds:\n\n```bash\n$ monitor -c 5 org.apache.dubbo.demo.provider.DemoServiceImpl sayHello\nPress Ctrl+C to abort.\nAffect(class-cnt:1 , method-cnt:1) cost in 109 ms.\n timestamp            class                                           method    total  success  fail  avg-rt(ms)  fail-rate\n----------------------------------------------------------------------------------------------------------------------------\n 2018-09-20 09:45:32  org.apache.dubbo.demo.provider.DemoServiceImpl  sayHello  5      5        0     0.67        0.00%\n\n timestamp            class                                           method    total  success  fail  avg-rt(ms)  fail-rate\n----------------------------------------------------------------------------------------------------------------------------\n 2018-09-20 09:45:37  org.apache.dubbo.demo.provider.DemoServiceImpl  sayHello  5      5        0     1.00        0.00%\n\n timestamp            class                                           method    total  success  fail  avg-rt(ms)  fail-rate\n----------------------------------------------------------------------------------------------------------------------------\n 2018-09-20 09:45:42  org.apache.dubbo.demo.provider.DemoServiceImpl  sayHello  5      5        0     0.43        0.00%\n```\n\n#### Time Tunnel(tt)\n\n* https://arthas.aliyun.com/doc/en/tt\n\nRecord method invocation data, so that you can check the method invocation parameters, returned value, and thrown exceptions later. It works as if you could come back and replay the past method invocation via time tunnel.\n\n```bash\n$ tt -t org.apache.dubbo.demo.provider.DemoServiceImpl sayHello\nPress Ctrl+C to abort.\nAffect(class-cnt:1 , method-cnt:1) cost in 75 ms.\n INDEX   TIMESTAMP            COST(ms)  IS-RET  IS-EXP   OBJECT         CLASS                          METHOD\n-------------------------------------------------------------------------------------------------------------------------------------\n 1000    2018-09-20 09:54:10  1.971195  true    false    0x55965cca     DemoServiceImpl                sayHello\n 1001    2018-09-20 09:54:11  0.215685  true    false    0x55965cca     DemoServiceImpl                sayHello\n 1002    2018-09-20 09:54:12  0.236303  true    false    0x55965cca     DemoServiceImpl                sayHello\n 1003    2018-09-20 09:54:13  0.159598  true    false    0x55965cca     DemoServiceImpl                sayHello\n 1004    2018-09-20 09:54:14  0.201982  true    false    0x55965cca     DemoServiceImpl                sayHello\n 1005    2018-09-20 09:54:15  0.214205  true    false    0x55965cca     DemoServiceImpl                sayHello\n 1006    2018-09-20 09:54:16  0.241863  true    false    0x55965cca     DemoServiceImpl                sayHello\n 1007    2018-09-20 09:54:17  0.305747  true    false    0x55965cca     DemoServiceImpl                sayHello\n 1008    2018-09-20 09:54:18  0.18468   true    false    0x55965cca     DemoServiceImpl                sayHello\n```\n\n#### Classloader\n\n* https://arthas.aliyun.com/doc/en/classloader\n\n```bash\n$ classloader\n name                                                  numberOfInstances  loadedCountTotal\n BootstrapClassLoader                                  1                  3346\n com.taobao.arthas.agent.ArthasClassloader             1                  1262\n java.net.URLClassLoader                               2                  1033\n org.apache.catalina.loader.ParallelWebappClassLoader  1                  628\n sun.reflect.DelegatingClassLoader                     166                166\n sun.misc.Launcher$AppClassLoader                      1                  31\n com.alibaba.fastjson.util.ASMClassLoader              6                  15\n sun.misc.Launcher$ExtClassLoader                      1                  7\n org.jvnet.hk2.internal.DelegatingClassLoader          2                  2\n sun.reflect.misc.MethodUtil                           1                  1\n```\n\n#### Web Console\n\n* https://arthas.aliyun.com/doc/en/web-console\n\n![web console](site/docs/.vuepress/public/images/web-console-local.png)\n\n\n#### Profiler/FlameGraph\n\n* https://arthas.aliyun.com/doc/en/profiler\n\n```bash\n$ profiler start\nStarted [cpu] profiling\n```\n\n```\n$ profiler stop\nprofiler output file: /tmp/demo/arthas-output/20211207-111550.html\nOK\n```\n\nView profiler results under arthas-output via browser:\n\n![](site/docs/.vuepress/public/images/arthas-output-svg.jpg)\n\n#### Arthas Spring Boot Starter\n\n* [Arthas Spring Boot Starter](https://arthas.aliyun.com/doc/spring-boot-starter.html)\n\n### Known Users\n\nArthas has more than 120 registered users, [View All](USERS.md).\n\nWelcome to register the company name in this issue: https://github.com/alibaba/arthas/issues/111 (in order of registration)\n\n![Alibaba](static/alibaba.png)\n![Alipay](static/alipay.png)\n![Aliyun](static/aliyun.png)\n![Taobao](static/taobao.png)\n![ICBC](static/icbc.png)\n![雪球财经](static/xueqiu.png)\n![顺丰科技](static/sf.png)\n![贝壳找房](static/ke.png)\n![vipkid](static/vipkid.png)\n![百度凤巢](static/baidufengchao.png)\n![有赞](static/youzan.png)\n![科大讯飞](static/iflytek.png)\n![智联招聘](static/zhaopin.png)\n![达美盛](static/dms.png)\n\n\n### Derivative Projects\n\n* [Bistoury: A project that integrates Arthas](https://github.com/qunarcorp/bistoury)\n* [A fork of arthas using MVEL](https://github.com/XhinLiang/arthas)\n\n### Credits\n\n#### Contributors\n\nThis project exists, thanks to all the people who contributed.\n\n\u003ca href=\"https://github.com/alibaba/arthas/graphs/contributors\"\u003e\u003cimg src=\"https://opencollective.com/arthas/contributors.svg?width=890\u0026button=false\" /\u003e\u003c/a\u003e\n\n#### Projects\n\n* [bytekit](https://github.com/alibaba/bytekit) Java Bytecode Kit.\n* [greys-anatomy](https://github.com/oldmanpushcart/greys-anatomy): The Arthas code base has derived from Greys, we thank for the excellent work done by Greys.\n* [termd](https://github.com/alibaba/termd): Arthas's terminal implementation is based on termd, an open source library for writing terminal applications in Java.\n* [crash](https://github.com/crashub/crash): Arthas's text based user interface rendering is based on codes extracted from [here](https://github.com/crashub/crash/tree/1.3.2/shell)\n* [cli](https://github.com/alibaba/cli): Arthas's command line interface implementation is based on cli, open sourced by vert.x\n* [compiler](https://github.com/skalogs/SkaETL/tree/master/compiler) Arthas's memory compiler.\n* [Apache Commons Net](https://commons.apache.org/proper/commons-net/) Arthas's telnet client.\n* [async-profiler](https://github.com/jvm-profiling-tools/async-profiler) Arthas's profiler command.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falibaba%2Farthas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falibaba%2Farthas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falibaba%2Farthas/lists"}