mirror of
https://github.com/alibaba/arthas.git
synced 2024-04-21 10:21:39 +00:00
update doc
This commit is contained in:
@@ -98,7 +98,6 @@
|
||||
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -10,13 +10,18 @@ Arthas Properties
|
||||
## 支持的配置项
|
||||
|
||||
|
||||
> 注意配置必须是`驼峰`的,和spring boot的`-`风格不一样。spring boot应用才同时支持`驼峰` 和 `-`风格的配置。
|
||||
|
||||
```
|
||||
#arthas.config.overrideAll=true
|
||||
arthas.telnetPort=3658
|
||||
arthas.httpPort=8563
|
||||
arthas.ip=localhost
|
||||
arthas.ip=127.0.0.1
|
||||
|
||||
# seconds
|
||||
arthas.sessionTimeout=1800
|
||||
|
||||
#arthas.appName=demoapp
|
||||
#arthas.tunnelServer=ws://127.0.0.1:7777/ws
|
||||
#arthas.agentId=mmmmmmyiddddd
|
||||
```
|
||||
|
||||
@@ -22,17 +22,12 @@ Arthas 用户文档
|
||||
`Arthas`支持JDK 6+,支持Linux/Mac/Windows,采用命令行交互模式,同时提供丰富的 `Tab` 自动补全功能,进一步方便进行问题的定位和诊断。
|
||||
|
||||
|
||||
**Arthas正在参加InfoQ组织的2020 年度十大开源新锐项目,请投Arthas一票**
|
||||
|
||||
**Arthas正在参加开源中国2020年度项目评选,请投Arthas一票**
|
||||
|
||||
**如果您在使用Arthas,请让我们知道,您的使用对我们非常重要:[查看](https://github.com/alibaba/arthas/issues/111)**
|
||||
|
||||
Contents
|
||||
--------
|
||||
|
||||
* [首页](https://arthas.aliyun.com/)
|
||||
* [投Arthas一票!](https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv)
|
||||
* [技术征文!](https://developer.aliyun.com/article/751641)
|
||||
* [English Docs](https://arthas.aliyun.com/doc/en/)
|
||||
* [在线教程(推荐)](https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn)
|
||||
|
||||
@@ -77,4 +77,15 @@ public class ArthasAttachExample {
|
||||
}
|
||||
|
||||
}
|
||||
```
|
||||
```
|
||||
|
||||
也可以配置属性:
|
||||
|
||||
```java
|
||||
HashMap<String, String> configMap = new HashMap<String, String>();
|
||||
configMap.put("arthas.appName", "demo");
|
||||
configMap.put("arthas.tunnelServer", "ws://127.0.0.1:7777/ws");
|
||||
ArthasAgent.attach(configMap);
|
||||
```
|
||||
|
||||
> 注意配置必须是`驼峰`的,和spring boot的`-`风格不一样。spring boot应用才同时支持`驼峰` 和 `-`风格的配置。
|
||||
@@ -7,8 +7,9 @@ Arthas Tunnel
|
||||
|
||||
在这种情况下,可以使用Arthas Tunnel Server/Client。
|
||||
|
||||
参考: [Web Console](web-console.md)
|
||||
|
||||
参考:
|
||||
* [Web Console](web-console.md)
|
||||
* [Arthas Spring Boot Starter](spring-boot-starter.md)
|
||||
|
||||
### 下载部署arthas tunnel server
|
||||
|
||||
|
||||
+6
-5
@@ -520,14 +520,15 @@ dl.citation > dd:after {
|
||||
}
|
||||
|
||||
dl.field-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
display: grid;
|
||||
grid-template-columns: fit-content(30%) auto;
|
||||
}
|
||||
|
||||
dl.field-list > dt {
|
||||
flex-basis: 20%;
|
||||
font-weight: bold;
|
||||
word-break: break-word;
|
||||
padding-left: 0.5em;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
dl.field-list > dt:after {
|
||||
@@ -535,8 +536,8 @@ dl.field-list > dt:after {
|
||||
}
|
||||
|
||||
dl.field-list > dd {
|
||||
flex-basis: 70%;
|
||||
padding-left: 1em;
|
||||
padding-left: 0.5em;
|
||||
margin-top: 0em;
|
||||
margin-left: 0em;
|
||||
margin-bottom: 0em;
|
||||
}
|
||||
|
||||
Vendored
+2
-4
File diff suppressed because one or more lines are too long
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -98,7 +98,6 @@
|
||||
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
@@ -221,11 +220,18 @@
|
||||
</ul>
|
||||
<div class="section" id="id1">
|
||||
<h2>支持的配置项<a class="headerlink" href="#id1" title="永久链接至标题">¶</a></h2>
|
||||
<blockquote>
|
||||
<div><p>注意配置必须是<code class="docutils literal notranslate"><span class="pre">驼峰</span></code>的,和spring boot的<code class="docutils literal notranslate"><span class="pre">-</span></code>风格不一样。spring boot应用才同时支持<code class="docutils literal notranslate"><span class="pre">驼峰</span></code> 和 <code class="docutils literal notranslate"><span class="pre">-</span></code>风格的配置。</p>
|
||||
</div></blockquote>
|
||||
<div class="highlight-default notranslate"><pre class="literal-block">#arthas.config.overrideAll=true
|
||||
arthas.telnetPort=3658
|
||||
arthas.httpPort=8563
|
||||
arthas.ip=localhost
|
||||
arthas.ip=127.0.0.1
|
||||
|
||||
# seconds
|
||||
arthas.sessionTimeout=1800
|
||||
|
||||
#arthas.appName=demoapp
|
||||
#arthas.tunnelServer=ws://127.0.0.1:7777/ws
|
||||
#arthas.agentId=mmmmmmyiddddd</pre>
|
||||
</div>
|
||||
|
||||
@@ -98,7 +98,6 @@
|
||||
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -98,7 +98,6 @@
|
||||
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
@@ -288,7 +287,7 @@ trace test.arthas.TestTraceServlet doGet #cost>800
|
||||
<div class="section" id="id4">
|
||||
<h3>自动高亮显示最耗时方法调用<a class="headerlink" href="#id4" title="永久链接至标题">¶</a></h3>
|
||||
<p>trace命令现在会自动显示</p>
|
||||
<p><img alt="arthas_3_0/TODO/image.png" src="arthas_3_0/TODO/image.png" />image</p>
|
||||
<p><img alt="image" src="arthas_3_0/TODO/image.png" /></p>
|
||||
</div>
|
||||
<div class="section" id="id5">
|
||||
<h3>带条件过滤的多级trace<a class="headerlink" href="#id5" title="永久链接至标题">¶</a></h3>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -99,7 +99,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
+1
-2
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
@@ -327,7 +326,7 @@ uptime 272s</pre>
|
||||
</div>
|
||||
<div class="section" id="id4">
|
||||
<h2>截图展示<a class="headerlink" href="#id4" title="永久链接至标题">¶</a></h2>
|
||||
<p><img alt="dashboard" src="_images/dashboard.png" /></p>
|
||||
<p><img alt="_images/dashboard.png" src="_images/dashboard.png" /></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
+2
-3
@@ -39,7 +39,7 @@
|
||||
<link rel="stylesheet" href="_static/overrides.css" type="text/css" />
|
||||
<link rel="index" title="索引" href="genindex.html" />
|
||||
<link rel="search" title="搜索" href="search.html" />
|
||||
<link rel="next" title="Arthas Spring Boot Starter" href="spring-boot-starter.html" />
|
||||
<link rel="next" title="IDEA Plugin" href="idea-plugin.html" />
|
||||
<link rel="prev" title="Http API" href="http-api.html" />
|
||||
<script>
|
||||
if (window.location.href.startsWith("https://alibaba.github.io/arthas/")) {
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
@@ -308,7 +307,7 @@ COPY --from=hengyunabc/arthas:latest /opt/arthas /opt/arthas</pre>
|
||||
|
||||
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
|
||||
|
||||
<a href="spring-boot-starter.html" class="btn btn-neutral float-right" title="Arthas Spring Boot Starter" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
<a href="idea-plugin.html" class="btn btn-neutral float-right" title="IDEA Plugin" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
|
||||
|
||||
<a href="http-api.html" class="btn btn-neutral float-left" title="Http API" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
|
||||
+2
-3
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
@@ -203,7 +202,7 @@
|
||||
<h2>下载全量包<a class="headerlink" href="#id2" title="永久链接至标题">¶</a></h2>
|
||||
<div class="section" id="maven">
|
||||
<h3>从Maven仓库下载<a class="headerlink" href="#maven" title="永久链接至标题">¶</a></h3>
|
||||
<p>最新版本,点击下载:<a class="reference external" href="https://arthas.aliyun.com/download/latest_version?mirror=aliyun"><img alt="Arthas" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>最新版本,点击下载:<a class="reference external" href="https://arthas.aliyun.com/download/latest_version?mirror=aliyun"><img alt="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
</div>
|
||||
<div class="section" id="github-releases">
|
||||
<h3>从Github Releases页下载<a class="headerlink" href="#github-releases" title="永久链接至标题">¶</a></h3>
|
||||
@@ -230,7 +229,7 @@
|
||||
</div>
|
||||
<div class="section" id="id3">
|
||||
<h2>下载离线文档<a class="headerlink" href="#id3" title="永久链接至标题">¶</a></h2>
|
||||
<p>下载文档:<a class="reference external" href="https://arthas.aliyun.com/download/doc/latest_version?mirror=aliyun"><img alt="Arthas" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>下载文档:<a class="reference external" href="https://arthas.aliyun.com/download/doc/latest_version?mirror=aliyun"><img alt="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -8,12 +8,18 @@ The `arthas.properties` file is in the arthas directory.
|
||||
|
||||
## Supported configuration items
|
||||
|
||||
> Note that the configuration must be `camel case`, which is different from the `-` style of spring boot. Only the spring boot application supports both `camel case` and `-` style configuration.
|
||||
|
||||
```
|
||||
#arthas.config.overrideAll=true
|
||||
arthas.telnetPort=3658
|
||||
arthas.httpPort=8563
|
||||
arthas.ip=localhost
|
||||
arthas.ip=127.0.0.1
|
||||
|
||||
# seconds
|
||||
arthas.sessionTimeout=1800
|
||||
|
||||
#arthas.appName=demoapp
|
||||
#arthas.tunnelServer=ws://127.0.0.1:7777/ws
|
||||
#arthas.agentId=mmmmmmyiddddd
|
||||
```
|
||||
|
||||
@@ -75,4 +75,16 @@ public class ArthasAttachExample {
|
||||
}
|
||||
|
||||
}
|
||||
```
|
||||
```
|
||||
|
||||
|
||||
You can also configure properties:
|
||||
|
||||
```java
|
||||
HashMap<String, String> configMap = new HashMap<String, String>();
|
||||
configMap.put("arthas.appName", "demo");
|
||||
configMap.put("arthas.tunnelServer", "ws://127.0.0.1:7777/ws");
|
||||
ArthasAgent.attach(configMap);
|
||||
```
|
||||
|
||||
> Note that the configuration must be `camel case`, which is different from the `-` style of spring boot. Only the spring boot application supports both `camel case` and `-` style configuration.
|
||||
@@ -8,7 +8,9 @@ For example, in streaming computing, Java processes can be started on different
|
||||
|
||||
In this case, Arthas Tunnel Server/Client can be used.
|
||||
|
||||
Reference: [Web Console](web-console.md)
|
||||
Reference:
|
||||
* [Web Console](web-console.md)
|
||||
* [Arthas Spring Boot Starter](spring-boot-starter.md)
|
||||
|
||||
### Download and deploy arthas tunnel server
|
||||
|
||||
|
||||
@@ -520,14 +520,15 @@ dl.citation > dd:after {
|
||||
}
|
||||
|
||||
dl.field-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
display: grid;
|
||||
grid-template-columns: fit-content(30%) auto;
|
||||
}
|
||||
|
||||
dl.field-list > dt {
|
||||
flex-basis: 20%;
|
||||
font-weight: bold;
|
||||
word-break: break-word;
|
||||
padding-left: 0.5em;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
dl.field-list > dt:after {
|
||||
@@ -535,8 +536,8 @@ dl.field-list > dt:after {
|
||||
}
|
||||
|
||||
dl.field-list > dd {
|
||||
flex-basis: 70%;
|
||||
padding-left: 1em;
|
||||
padding-left: 0.5em;
|
||||
margin-top: 0em;
|
||||
margin-left: 0em;
|
||||
margin-bottom: 0em;
|
||||
}
|
||||
|
||||
Vendored
+2
-4
File diff suppressed because one or more lines are too long
@@ -217,11 +217,18 @@
|
||||
</ul>
|
||||
<div class="section" id="supported-configuration-items">
|
||||
<h2>Supported configuration items<a class="headerlink" href="#supported-configuration-items" title="Permalink to this headline">¶</a></h2>
|
||||
<blockquote>
|
||||
<div><p>Note that the configuration must be <code class="docutils literal notranslate"><span class="pre">camel</span> <span class="pre">case</span></code>, which is different from the <code class="docutils literal notranslate"><span class="pre">-</span></code> style of spring boot. Only the spring boot application supports both <code class="docutils literal notranslate"><span class="pre">camel</span> <span class="pre">case</span></code> and <code class="docutils literal notranslate"><span class="pre">-</span></code> style configuration.</p>
|
||||
</div></blockquote>
|
||||
<div class="highlight-default notranslate"><pre class="literal-block">#arthas.config.overrideAll=true
|
||||
arthas.telnetPort=3658
|
||||
arthas.httpPort=8563
|
||||
arthas.ip=localhost
|
||||
arthas.ip=127.0.0.1
|
||||
|
||||
# seconds
|
||||
arthas.sessionTimeout=1800
|
||||
|
||||
#arthas.appName=demoapp
|
||||
#arthas.tunnelServer=ws://127.0.0.1:7777/ws
|
||||
#arthas.agentId=mmmmmmyiddddd</pre>
|
||||
</div>
|
||||
|
||||
+1
-1
@@ -327,7 +327,7 @@ Because the JIT compilation data related to this class is cleared when the JVM h
|
||||
</div>
|
||||
<div class="section" id="screenshot">
|
||||
<h2>Screenshot<a class="headerlink" href="#screenshot" title="Permalink to this headline">¶</a></h2>
|
||||
<p><img alt="dashboard" src="_images/dashboard.png" /></p>
|
||||
<p><img alt="_images/dashboard.png" src="_images/dashboard.png" /></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
+2
-2
@@ -38,7 +38,7 @@
|
||||
<link rel="stylesheet" href="_static/overrides.css" type="text/css" />
|
||||
<link rel="index" title="Index" href="genindex.html" />
|
||||
<link rel="search" title="Search" href="search.html" />
|
||||
<link rel="next" title="Arthas Spring Boot Starter" href="spring-boot-starter.html" />
|
||||
<link rel="next" title="IDEA Plugin" href="idea-plugin.html" />
|
||||
<link rel="prev" title="Http API" href="http-api.html" />
|
||||
<script>
|
||||
if (window.location.href.startsWith("https://alibaba.github.io/arthas/")) {
|
||||
@@ -304,7 +304,7 @@ COPY --from=hengyunabc/arthas:latest /opt/arthas /opt/arthas</pre>
|
||||
|
||||
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
|
||||
|
||||
<a href="spring-boot-starter.html" class="btn btn-neutral float-right" title="Arthas Spring Boot Starter" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
<a href="idea-plugin.html" class="btn btn-neutral float-right" title="IDEA Plugin" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
|
||||
|
||||
<a href="http-api.html" class="btn btn-neutral float-left" title="Http API" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
|
||||
+2
-2
@@ -199,7 +199,7 @@
|
||||
<h2>Download full package<a class="headerlink" href="#download-full-package" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="section" id="download-from-maven-central">
|
||||
<h3>Download from maven central<a class="headerlink" href="#download-from-maven-central" title="Permalink to this headline">¶</a></h3>
|
||||
<p>Latest Version, Click To Download: <a class="reference external" href="https://arthas.aliyun.com/download/latest_version"><img alt="Arthas" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>Latest Version, Click To Download: <a class="reference external" href="https://arthas.aliyun.com/download/latest_version"><img alt="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
</div>
|
||||
<div class="section" id="download-from-github-releases">
|
||||
<h3>Download from Github Releases<a class="headerlink" href="#download-from-github-releases" title="Permalink to this headline">¶</a></h3>
|
||||
@@ -226,7 +226,7 @@
|
||||
</div>
|
||||
<div class="section" id="download-offline-help-documentation">
|
||||
<h2>Download Offline Help Documentation<a class="headerlink" href="#download-offline-help-documentation" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Latest Version Documentation, Click To Download:<a class="reference external" href="https://arthas.aliyun.com/download/doc/latest_version"><img alt="Arthas" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>Latest Version Documentation, Click To Download:<a class="reference external" href="https://arthas.aliyun.com/download/doc/latest_version"><img alt="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
+3
-3
@@ -39,7 +39,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" />
|
||||
<link rel="search" title="Search" href="search.html" />
|
||||
<link rel="next" title="Docker" href="docker.html" />
|
||||
<link rel="prev" title="Arthas Tunnel" href="tunnel.html" />
|
||||
<link rel="prev" title="Arthas Spring Boot Starter" href="spring-boot-starter.html" />
|
||||
<script>
|
||||
if (window.location.href.startsWith("https://alibaba.github.io/arthas/")) {
|
||||
window.location.href = "https://arthas.aliyun.com/doc/" + window.location.href.substr("https://alibaba.github.io/arthas/".length);
|
||||
@@ -659,7 +659,7 @@ corresponds to the expression in the corresponding order.</p>
|
||||
</div>
|
||||
<div class="section" id="web-ui">
|
||||
<h2>Web UI<a class="headerlink" href="#web-ui" title="Permalink to this headline">¶</a></h2>
|
||||
<p><img alt="arthas web ui" src="_images/arthas-web-ui.png" /></p>
|
||||
<p><img alt="_images/arthas-web-ui.png" src="_images/arthas-web-ui.png" /></p>
|
||||
<p>A Web UI based on Http API, visit url :
|
||||
<a class="reference external" href="http://127.0.0.1:8563/ui">http://127.0.0.1:8563/ui</a> .</p>
|
||||
<p>Completed functions:</p>
|
||||
@@ -894,7 +894,7 @@ the program can read value through a key .</p>
|
||||
<a href="docker.html" class="btn btn-neutral float-right" title="Docker" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
|
||||
|
||||
<a href="tunnel.html" class="btn btn-neutral float-left" title="Arthas Tunnel" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
<a href="spring-boot-starter.html" class="btn btn-neutral float-left" title="Arthas Spring Boot Starter" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
+2
-2
@@ -39,7 +39,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" />
|
||||
<link rel="search" title="Search" href="search.html" />
|
||||
<link rel="next" title="Contact Us" href="contact-us.html" />
|
||||
<link rel="prev" title="Arthas Spring Boot Starter" href="spring-boot-starter.html" />
|
||||
<link rel="prev" title="Docker" href="docker.html" />
|
||||
<script>
|
||||
if (window.location.href.startsWith("https://alibaba.github.io/arthas/")) {
|
||||
window.location.href = "https://arthas.aliyun.com/doc/" + window.location.href.substr("https://alibaba.github.io/arthas/".length);
|
||||
@@ -206,7 +206,7 @@
|
||||
<a href="contact-us.html" class="btn btn-neutral float-right" title="Contact Us" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
|
||||
|
||||
<a href="spring-boot-starter.html" class="btn btn-neutral float-left" title="Arthas Spring Boot Starter" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
<a href="docker.html" class="btn btn-neutral float-left" title="Docker" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
@@ -225,7 +225,7 @@ java -jar arthas-boot.jar</pre></div>
|
||||
</div>
|
||||
<div class="section" id="full-installation">
|
||||
<h2>Full installation<a class="headerlink" href="#full-installation" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Latest Version, Click To Download: <a class="reference external" href="https://arthas.aliyun.com/download/latest_version"><img alt="Arthas" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>Latest Version, Click To Download: <a class="reference external" href="https://arthas.aliyun.com/download/latest_version"><img alt="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>Download and unzip, find <code class="docutils literal notranslate"><span class="pre">arthas-boot.jar</span></code> in the directory. Start with <code class="docutils literal notranslate"><span class="pre">java</span></code> command:</p>
|
||||
<div class="highlight-bash notranslate"><div class="highlight hljs"><pre class="bash">java -jar arthas-boot.jar</pre></div>
|
||||
</div>
|
||||
@@ -260,7 +260,7 @@ you can get them from the github releases page https://github.com/alibaba/arthas
|
||||
</div>
|
||||
<div class="section" id="offline-help-documentation">
|
||||
<h2>Offline Help Documentation<a class="headerlink" href="#offline-help-documentation" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Latest Version Documentation, Click To Download:<a class="reference external" href="https://arthas.aliyun.com/download/doc/latest_version"><img alt="Arthas" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>Latest Version Documentation, Click To Download:<a class="reference external" href="https://arthas.aliyun.com/download/doc/latest_version"><img alt="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
</div>
|
||||
<div class="section" id="uninstall">
|
||||
<h2>Uninstall<a class="headerlink" href="#uninstall" title="Permalink to this headline">¶</a></h2>
|
||||
|
||||
@@ -187,7 +187,7 @@
|
||||
<h2>Manually Install Arthas<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
|
||||
<ol>
|
||||
<li><p>Download the latest version</p>
|
||||
<p><strong>Latest version, Click To Download</strong>: <a class="reference external" href="https://arthas.aliyun.com/download/latest_version"><img alt="Arthas" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p><strong>Latest version, Click To Download</strong>: <a class="reference external" href="https://arthas.aliyun.com/download/latest_version"><img alt="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
</li>
|
||||
<li><p>Unzip zip file</p>
|
||||
<div class="highlight-bash notranslate"><div class="highlight hljs"><pre class="bash">unzip arthas-packaging-bin.zip</pre></div>
|
||||
@@ -220,7 +220,7 @@ cd arthas
|
||||
</div>
|
||||
<div class="section" id="windows">
|
||||
<h3>Windows<a class="headerlink" href="#windows" title="Permalink to this headline">¶</a></h3>
|
||||
<p>Latest Version, Click To Download: <a class="reference external" href="https://arthas.aliyun.com/download/latest_version"><img alt="Arthas" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>Latest Version, Click To Download: <a class="reference external" href="https://arthas.aliyun.com/download/latest_version"><img alt="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>Download and unzip, then find <code class="docutils literal notranslate"><span class="pre">as.bat</span></code> from ‘bin’ directory. For now this script will only take one argument <code class="docutils literal notranslate"><span class="pre">pid</span></code>, which means you can only diagnose the local Java process. (Welcome any bat script expert to make it better :heart:)</p>
|
||||
<div class="highlight-bash notranslate"><div class="highlight hljs"><pre class="bash">as.bat <pid></pre></div>
|
||||
</div>
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -38,8 +38,8 @@
|
||||
<link rel="stylesheet" href="_static/overrides.css" type="text/css" />
|
||||
<link rel="index" title="Index" href="genindex.html" />
|
||||
<link rel="search" title="Search" href="search.html" />
|
||||
<link rel="next" title="IDEA Plugin" href="idea-plugin.html" />
|
||||
<link rel="prev" title="Docker" href="docker.html" />
|
||||
<link rel="next" title="Http API" href="http-api.html" />
|
||||
<link rel="prev" title="Arthas Tunnel" href="tunnel.html" />
|
||||
<script>
|
||||
if (window.location.href.startsWith("https://alibaba.github.io/arthas/")) {
|
||||
window.location.href = "https://arthas.aliyun.com/doc/" + window.location.href.substr("https://alibaba.github.io/arthas/".length);
|
||||
@@ -106,7 +106,21 @@
|
||||
<li class="toctree-l1"><a class="reference internal" href="advanced-use.html">Advanced usage</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="commands.html">Commands</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="web-console.html">WebConsole</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="tunnel.html">Arthas Tunnel</a></li>
|
||||
<li class="toctree-l1 current"><a class="reference internal" href="tunnel.html">Arthas Tunnel</a><ul class="current">
|
||||
<li class="toctree-l2"><a class="reference internal" href="web-console.html">Web Console</a></li>
|
||||
<li class="toctree-l2 current"><a class="current reference internal" href="#">Arthas Spring Boot Starter</a><ul>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#configuration-properties">Configuration properties</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#view-endpoint-information">View Endpoint Information</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#non-spring-boot-application-usage">Non-spring boot application usage</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#download-and-deploy-arthas-tunnel-server">Download and deploy arthas tunnel server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#connecting-to-the-tunnel-server-when-starting-arthas">Connecting to the tunnel server when starting arthas</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#best-practices">Best practices</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#cluster-management">Cluster Management</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#how-arthas-tunnel-server-works">How arthas tunnel server works</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="http-api.html">Http API</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="docker.html">Docker</a></li>
|
||||
<li class="toctree-l1 current"><a class="current reference internal" href="#">Arthas Spring Boot Starter</a><ul>
|
||||
@@ -167,6 +181,8 @@
|
||||
|
||||
<li><a href="index.html">Docs</a> »</li>
|
||||
|
||||
<li><a href="tunnel.html">Arthas Tunnel</a> »</li>
|
||||
|
||||
<li>Arthas Spring Boot Starter</li>
|
||||
|
||||
|
||||
@@ -250,6 +266,15 @@ public class ArthasAttachExample {
|
||||
|
||||
}</pre></div>
|
||||
</div>
|
||||
<p>You can also configure properties:</p>
|
||||
<div class="highlight-java notranslate"><div class="highlight hljs"><pre class="java"> HashMap<String, String> configMap = new HashMap<String, String>();
|
||||
configMap.put("arthas.appName", "demo");
|
||||
configMap.put("arthas.tunnelServer", "ws://127.0.0.1:7777/ws");
|
||||
ArthasAgent.attach(configMap);</pre></div>
|
||||
</div>
|
||||
<blockquote>
|
||||
<div><p>Note that the configuration must be <code class="docutils literal notranslate"><span class="pre">camel</span> <span class="pre">case</span></code>, which is different from the <code class="docutils literal notranslate"><span class="pre">-</span></code> style of spring boot. Only the spring boot application supports both <code class="docutils literal notranslate"><span class="pre">camel</span> <span class="pre">case</span></code> and <code class="docutils literal notranslate"><span class="pre">-</span></code> style configuration.</p>
|
||||
</div></blockquote>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -261,10 +286,10 @@ public class ArthasAttachExample {
|
||||
|
||||
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
|
||||
|
||||
<a href="idea-plugin.html" class="btn btn-neutral float-right" title="IDEA Plugin" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
<a href="http-api.html" class="btn btn-neutral float-right" title="Http API" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
|
||||
|
||||
<a href="docker.html" class="btn btn-neutral float-left" title="Docker" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
<a href="tunnel.html" class="btn btn-neutral float-left" title="Arthas Tunnel" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
+11
-3
@@ -38,7 +38,7 @@
|
||||
<link rel="stylesheet" href="_static/overrides.css" type="text/css" />
|
||||
<link rel="index" title="Index" href="genindex.html" />
|
||||
<link rel="search" title="Search" href="search.html" />
|
||||
<link rel="next" title="Http API" href="http-api.html" />
|
||||
<link rel="next" title="Arthas Spring Boot Starter" href="spring-boot-starter.html" />
|
||||
<link rel="prev" title="options" href="options.html" />
|
||||
<script>
|
||||
if (window.location.href.startsWith("https://alibaba.github.io/arthas/")) {
|
||||
@@ -107,6 +107,8 @@
|
||||
<li class="toctree-l1"><a class="reference internal" href="commands.html">Commands</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="web-console.html">WebConsole</a></li>
|
||||
<li class="toctree-l1 current"><a class="current reference internal" href="#">Arthas Tunnel</a><ul>
|
||||
<li class="toctree-l2"><a class="reference internal" href="web-console.html">Web Console</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="spring-boot-starter.html">Arthas Spring Boot Starter</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#download-and-deploy-arthas-tunnel-server">Download and deploy arthas tunnel server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#connecting-to-the-tunnel-server-when-starting-arthas">Connecting to the tunnel server when starting arthas</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#best-practices">Best practices</a></li>
|
||||
@@ -195,7 +197,13 @@
|
||||
<p>Manage/connect multiple Agents remotely via Arthas Tunnel Server/Client.</p>
|
||||
<p>For example, in streaming computing, Java processes can be started on different machines, and it can be difficult to use Arthas to diagnose them, because the user usually does not have access to the machine.</p>
|
||||
<p>In this case, Arthas Tunnel Server/Client can be used.</p>
|
||||
<p>Reference: <a class="reference internal" href="web-console.html"><span class="doc">Web Console</span></a></p>
|
||||
<p>Reference:</p>
|
||||
<div class="toctree-wrapper compound">
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference internal" href="web-console.html">Web Console</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="spring-boot-starter.html">Arthas Spring Boot Starter</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="download-and-deploy-arthas-tunnel-server">
|
||||
<h2>Download and deploy arthas tunnel server<a class="headerlink" href="#download-and-deploy-arthas-tunnel-server" title="Permalink to this headline">¶</a></h2>
|
||||
<p><a class="reference external" href="https://github.com/alibaba/arthas/releases">https://github.com/alibaba/arthas/releases</a></p>
|
||||
@@ -276,7 +284,7 @@ id URJZ5L48RPBR2ALI5K4V</pre></div>
|
||||
|
||||
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
|
||||
|
||||
<a href="http-api.html" class="btn btn-neutral float-right" title="Http API" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
<a href="spring-boot-starter.html" class="btn btn-neutral float-right" title="Arthas Spring Boot Starter" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
|
||||
|
||||
<a href="options.html" class="btn btn-neutral float-left" title="options" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
|
||||
+14
-1
@@ -110,7 +110,20 @@
|
||||
<li class="toctree-l2"><a class="reference internal" href="#connect-remote-arthas-through-arthas-tunnel-server">Connect remote arthas through arthas tunnel server</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="tunnel.html">Arthas Tunnel</a></li>
|
||||
<li class="toctree-l1 current"><a class="reference internal" href="tunnel.html">Arthas Tunnel</a><ul class="current">
|
||||
<li class="toctree-l2 current"><a class="current reference internal" href="#">Web Console</a><ul>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#connect-arthas-through-the-browser">Connect arthas through the browser</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#connect-remote-arthas-through-arthas-tunnel-server">Connect remote arthas through arthas tunnel server</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="spring-boot-starter.html">Arthas Spring Boot Starter</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#download-and-deploy-arthas-tunnel-server">Download and deploy arthas tunnel server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#connecting-to-the-tunnel-server-when-starting-arthas">Connecting to the tunnel server when starting arthas</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#best-practices">Best practices</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#cluster-management">Cluster Management</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#how-arthas-tunnel-server-works">How arthas tunnel server works</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="http-api.html">Http API</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="docker.html">Docker</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="spring-boot-starter.html">Arthas Spring Boot Starter</a></li>
|
||||
|
||||
@@ -99,7 +99,6 @@
|
||||
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -98,7 +98,6 @@
|
||||
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
+3
-4
@@ -40,7 +40,7 @@
|
||||
<link rel="index" title="索引" href="genindex.html" />
|
||||
<link rel="search" title="搜索" href="search.html" />
|
||||
<link rel="next" title="Docker" href="docker.html" />
|
||||
<link rel="prev" title="Arthas Tunnel" href="tunnel.html" />
|
||||
<link rel="prev" title="Arthas Spring Boot Starter" href="spring-boot-starter.html" />
|
||||
<script>
|
||||
if (window.location.href.startsWith("https://alibaba.github.io/arthas/")) {
|
||||
window.location.href = "https://arthas.aliyun.com/doc/" + window.location.href.substr("https://alibaba.github.io/arthas/".length);
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
@@ -612,7 +611,7 @@ API可以提供结构化的数据,支持更复杂的交互功能,比如特
|
||||
</div>
|
||||
<div class="section" id="web-ui">
|
||||
<h2>Web UI<a class="headerlink" href="#web-ui" title="永久链接至标题">¶</a></h2>
|
||||
<p><img alt="arthas web ui" src="_images/arthas-web-ui.png" /></p>
|
||||
<p><img alt="_images/arthas-web-ui.png" src="_images/arthas-web-ui.png" /></p>
|
||||
<p>一个基于Http API接口实现的Web UI,访问地址为: <a class="reference external" href="http://127.0.0.1:8563/ui">http://127.0.0.1:8563/ui</a> 。</p>
|
||||
<p>已实现功能:</p>
|
||||
<ul class="simple">
|
||||
@@ -826,7 +825,7 @@ EOF</pre></div>
|
||||
<a href="docker.html" class="btn btn-neutral float-right" title="Docker" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
|
||||
|
||||
<a href="tunnel.html" class="btn btn-neutral float-left" title="Arthas Tunnel" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
<a href="spring-boot-starter.html" class="btn btn-neutral float-left" title="Arthas Spring Boot Starter" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
+2
-3
@@ -40,7 +40,7 @@
|
||||
<link rel="index" title="索引" href="genindex.html" />
|
||||
<link rel="search" title="搜索" href="search.html" />
|
||||
<link rel="next" title="联系我们" href="contact-us.html" />
|
||||
<link rel="prev" title="Arthas Spring Boot Starter" href="spring-boot-starter.html" />
|
||||
<link rel="prev" title="Docker" href="docker.html" />
|
||||
<script>
|
||||
if (window.location.href.startsWith("https://alibaba.github.io/arthas/")) {
|
||||
window.location.href = "https://arthas.aliyun.com/doc/" + window.location.href.substr("https://alibaba.github.io/arthas/".length);
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
@@ -210,7 +209,7 @@
|
||||
<a href="contact-us.html" class="btn btn-neutral float-right" title="联系我们" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
|
||||
|
||||
<a href="spring-boot-starter.html" class="btn btn-neutral float-left" title="Arthas Spring Boot Starter" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
<a href="docker.html" class="btn btn-neutral float-left" title="Docker" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
@@ -99,7 +99,6 @@
|
||||
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
@@ -204,8 +203,6 @@
|
||||
<li><p>怎么快速定位应用的热点,生成火焰图?</p></li>
|
||||
</ol>
|
||||
<p><code class="docutils literal notranslate"><span class="pre">Arthas</span></code>支持JDK 6+,支持Linux/Mac/Windows,采用命令行交互模式,同时提供丰富的 <code class="docutils literal notranslate"><span class="pre">Tab</span></code> 自动补全功能,进一步方便进行问题的定位和诊断。</p>
|
||||
<p><strong>Arthas正在参加InfoQ组织的2020 年度十大开源新锐项目,请投Arthas一票!<a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">直达</a></strong></p>
|
||||
<p><strong>Arthas正在参加开源中国2020年度项目评选,请投Arthas一票!<a class="reference external" href="https://www.oschina.net/project/top_cn_2020#arthas">直达</a></strong></p>
|
||||
<p><strong>如果您在使用Arthas,请让我们知道,您的使用对我们非常重要:<a class="reference external" href="https://github.com/alibaba/arthas/issues/111">查看</a></strong></p>
|
||||
</div>
|
||||
<div class="section" id="contents">
|
||||
@@ -213,7 +210,6 @@
|
||||
<div class="toctree-wrapper compound">
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
+2
-3
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
@@ -240,7 +239,7 @@ java -jar arthas-boot.jar</pre></div>
|
||||
</div>
|
||||
<div class="section" id="id2">
|
||||
<h2>全量安装<a class="headerlink" href="#id2" title="永久链接至标题">¶</a></h2>
|
||||
<p>最新版本,点击下载:<a class="reference external" href="https://arthas.aliyun.com/download/latest_version?mirror=aliyun"><img alt="Arthas" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>最新版本,点击下载:<a class="reference external" href="https://arthas.aliyun.com/download/latest_version?mirror=aliyun"><img alt="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>解压后,在文件夹里有<code class="docutils literal notranslate"><span class="pre">arthas-boot.jar</span></code>,直接用<code class="docutils literal notranslate"><span class="pre">java</span> <span class="pre">-jar</span></code>的方式启动:</p>
|
||||
<div class="highlight-bash notranslate"><div class="highlight hljs"><pre class="bash">java -jar arthas-boot.jar</pre></div>
|
||||
</div>
|
||||
@@ -282,7 +281,7 @@ java -jar arthas-boot.jar</pre></div>
|
||||
</div>
|
||||
<div class="section" id="id4">
|
||||
<h2>离线帮助文档<a class="headerlink" href="#id4" title="永久链接至标题">¶</a></h2>
|
||||
<p>最新版本离线文档下载:<a class="reference external" href="https://arthas.aliyun.com/download/doc/latest_version?mirror=aliyun"><img alt="Arthas" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>最新版本离线文档下载:<a class="reference external" href="https://arthas.aliyun.com/download/doc/latest_version?mirror=aliyun"><img alt="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
</div>
|
||||
<div class="section" id="id5">
|
||||
<h2>卸载<a class="headerlink" href="#id5" title="永久链接至标题">¶</a></h2>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -98,7 +98,6 @@
|
||||
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
+2
-3
@@ -98,7 +98,6 @@
|
||||
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
@@ -191,7 +190,7 @@
|
||||
<h2>手动安装Arthas<a class="headerlink" href="#id1" title="永久链接至标题">¶</a></h2>
|
||||
<ol>
|
||||
<li><p>下载最新版本</p>
|
||||
<p><strong>最新版本,点击下载</strong>:<a class="reference external" href="https://arthas.aliyun.com/download/latest_version?mirror=aliyun"><img alt="Arthas" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p><strong>最新版本,点击下载</strong>:<a class="reference external" href="https://arthas.aliyun.com/download/latest_version?mirror=aliyun"><img alt="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
</li>
|
||||
<li><p>解压缩arthas的压缩包</p>
|
||||
<div class="highlight-default notranslate"><pre class="literal-block">unzip arthas-packaging-bin.zip</pre>
|
||||
@@ -228,7 +227,7 @@ cd arthas
|
||||
</div>
|
||||
<div class="section" id="windows">
|
||||
<h3>Windows<a class="headerlink" href="#windows" title="永久链接至标题">¶</a></h3>
|
||||
<p>最新版本,点击下载:<a class="reference external" href="https://arthas.aliyun.com/download/latest_version?mirror=aliyun"><img alt="Arthas" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>最新版本,点击下载:<a class="reference external" href="https://arthas.aliyun.com/download/latest_version?mirror=aliyun"><img alt="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" src="https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square" /></a></p>
|
||||
<p>下载解压后在bin目录有 <code class="docutils literal notranslate"><span class="pre">as.bat</span></code>。此脚本暂时只接受一个参数 pid,即只能诊断本机上的 Java 进程。(欢迎精通bat脚本的开发者改进)</p>
|
||||
<div class="highlight-default notranslate"><pre class="literal-block">as.bat <pid></pre>
|
||||
</div>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -98,7 +98,6 @@
|
||||
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -98,7 +98,6 @@
|
||||
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -99,7 +99,6 @@
|
||||
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -39,8 +39,8 @@
|
||||
<link rel="stylesheet" href="_static/overrides.css" type="text/css" />
|
||||
<link rel="index" title="索引" href="genindex.html" />
|
||||
<link rel="search" title="搜索" href="search.html" />
|
||||
<link rel="next" title="IDEA Plugin" href="idea-plugin.html" />
|
||||
<link rel="prev" title="Docker" href="docker.html" />
|
||||
<link rel="next" title="Http API" href="http-api.html" />
|
||||
<link rel="prev" title="Arthas Tunnel" href="tunnel.html" />
|
||||
<script>
|
||||
if (window.location.href.startsWith("https://alibaba.github.io/arthas/")) {
|
||||
window.location.href = "https://arthas.aliyun.com/doc/" + window.location.href.substr("https://alibaba.github.io/arthas/".length);
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
@@ -110,7 +109,21 @@
|
||||
<li class="toctree-l1"><a class="reference internal" href="advanced-use.html">进阶使用</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="commands.html">命令列表</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="web-console.html">WebConsole</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="tunnel.html">Arthas Tunnel</a></li>
|
||||
<li class="toctree-l1 current"><a class="reference internal" href="tunnel.html">Arthas Tunnel</a><ul class="current">
|
||||
<li class="toctree-l2"><a class="reference internal" href="web-console.html">Web Console</a></li>
|
||||
<li class="toctree-l2 current"><a class="current reference internal" href="#">Arthas Spring Boot Starter</a><ul>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#id1">配置属性</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#endpoint">查看Endpoint信息</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#spring-boot">非spring boot应用使用方式</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#arthas-tunnel-server">下载部署arthas tunnel server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#arthastunnel-server">启动arthas时连接到tunnel server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#id1">最佳实践</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#id2">集群方式管理</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#id3">Arthas tunnel server的工作原理</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="http-api.html">Http API</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="docker.html">Docker</a></li>
|
||||
<li class="toctree-l1 current"><a class="current reference internal" href="#">Arthas Spring Boot Starter</a><ul>
|
||||
@@ -171,6 +184,8 @@
|
||||
|
||||
<li><a href="index.html">Docs</a> »</li>
|
||||
|
||||
<li><a href="tunnel.html">Arthas Tunnel</a> »</li>
|
||||
|
||||
<li>Arthas Spring Boot Starter</li>
|
||||
|
||||
|
||||
@@ -257,6 +272,15 @@ public class ArthasAttachExample {
|
||||
|
||||
}</pre></div>
|
||||
</div>
|
||||
<p>也可以配置属性:</p>
|
||||
<div class="highlight-java notranslate"><div class="highlight hljs"><pre class="java"> HashMap<String, String> configMap = new HashMap<String, String>();
|
||||
configMap.put("arthas.appName", "demo");
|
||||
configMap.put("arthas.tunnelServer", "ws://127.0.0.1:7777/ws");
|
||||
ArthasAgent.attach(configMap);</pre></div>
|
||||
</div>
|
||||
<blockquote>
|
||||
<div><p>注意配置必须是<code class="docutils literal notranslate"><span class="pre">驼峰</span></code>的,和spring boot的<code class="docutils literal notranslate"><span class="pre">-</span></code>风格不一样。spring boot应用才同时支持<code class="docutils literal notranslate"><span class="pre">驼峰</span></code> 和 <code class="docutils literal notranslate"><span class="pre">-</span></code>风格的配置。</p>
|
||||
</div></blockquote>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -268,10 +292,10 @@ public class ArthasAttachExample {
|
||||
|
||||
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
|
||||
|
||||
<a href="idea-plugin.html" class="btn btn-neutral float-right" title="IDEA Plugin" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
<a href="http-api.html" class="btn btn-neutral float-right" title="Http API" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
|
||||
|
||||
<a href="docker.html" class="btn btn-neutral float-left" title="Docker" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
<a href="tunnel.html" class="btn btn-neutral float-left" title="Arthas Tunnel" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -98,7 +98,6 @@
|
||||
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
+11
-4
@@ -39,7 +39,7 @@
|
||||
<link rel="stylesheet" href="_static/overrides.css" type="text/css" />
|
||||
<link rel="index" title="索引" href="genindex.html" />
|
||||
<link rel="search" title="搜索" href="search.html" />
|
||||
<link rel="next" title="Http API" href="http-api.html" />
|
||||
<link rel="next" title="Arthas Spring Boot Starter" href="spring-boot-starter.html" />
|
||||
<link rel="prev" title="options" href="options.html" />
|
||||
<script>
|
||||
if (window.location.href.startsWith("https://alibaba.github.io/arthas/")) {
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
@@ -111,6 +110,8 @@
|
||||
<li class="toctree-l1"><a class="reference internal" href="commands.html">命令列表</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="web-console.html">WebConsole</a></li>
|
||||
<li class="toctree-l1 current"><a class="current reference internal" href="#">Arthas Tunnel</a><ul>
|
||||
<li class="toctree-l2"><a class="reference internal" href="web-console.html">Web Console</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="spring-boot-starter.html">Arthas Spring Boot Starter</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#arthas-tunnel-server">下载部署arthas tunnel server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#arthastunnel-server">启动arthas时连接到tunnel server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="#id1">最佳实践</a></li>
|
||||
@@ -199,7 +200,13 @@
|
||||
<p>通过Arthas Tunnel Server/Client 来远程管理/连接多个Agent。</p>
|
||||
<p>比如,在流式计算里,Java进程可以是在不同的机器启动的,想要使用Arthas去诊断会比较麻烦,因为用户通常没有机器的权限,即使登陆机器也分不清是哪个Java进程。</p>
|
||||
<p>在这种情况下,可以使用Arthas Tunnel Server/Client。</p>
|
||||
<p>参考: <a class="reference internal" href="web-console.html"><span class="doc">Web Console</span></a></p>
|
||||
<p>参考:</p>
|
||||
<div class="toctree-wrapper compound">
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference internal" href="web-console.html">Web Console</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="spring-boot-starter.html">Arthas Spring Boot Starter</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="arthas-tunnel-server">
|
||||
<h2>下载部署arthas tunnel server<a class="headerlink" href="#arthas-tunnel-server" title="永久链接至标题">¶</a></h2>
|
||||
<p><a class="reference external" href="https://github.com/alibaba/arthas/releases">https://github.com/alibaba/arthas/releases</a></p>
|
||||
@@ -280,7 +287,7 @@ id URJZ5L48RPBR2ALI5K4V</pre></div>
|
||||
|
||||
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
|
||||
|
||||
<a href="http-api.html" class="btn btn-neutral float-right" title="Http API" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
<a href="spring-boot-starter.html" class="btn btn-neutral float-right" title="Arthas Spring Boot Starter" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
|
||||
|
||||
|
||||
<a href="options.html" class="btn btn-neutral float-left" title="options" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
|
||||
+14
-2
@@ -100,7 +100,6 @@
|
||||
|
||||
<ul class="current">
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/">首页</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://www.infoq.cn/talk/sQ7eKfv1KW1A0kUafBgv">投Arthas一票!</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://developer.aliyun.com/article/751641">技术征文</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/en/">English Docs</a></li>
|
||||
<li class="toctree-l1"><a class="reference external" href="https://arthas.aliyun.com/doc/arthas-tutorials.html?language=cn">在线教程(推荐)</a></li>
|
||||
@@ -114,7 +113,20 @@
|
||||
<li class="toctree-l2"><a class="reference internal" href="#arthas-tunnel-serverarthas">使用arthas tunnel server连接远程arthas</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="tunnel.html">Arthas Tunnel</a></li>
|
||||
<li class="toctree-l1 current"><a class="reference internal" href="tunnel.html">Arthas Tunnel</a><ul class="current">
|
||||
<li class="toctree-l2 current"><a class="current reference internal" href="#">Web Console</a><ul>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#arthas">通过浏览器连接arthas</a></li>
|
||||
<li class="toctree-l3"><a class="reference internal" href="#arthas-tunnel-serverarthas">使用arthas tunnel server连接远程arthas</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="spring-boot-starter.html">Arthas Spring Boot Starter</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#arthas-tunnel-server">下载部署arthas tunnel server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#arthastunnel-server">启动arthas时连接到tunnel server</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#id1">最佳实践</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#id2">集群方式管理</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="tunnel.html#id3">Arthas tunnel server的工作原理</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="http-api.html">Http API</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="docker.html">Docker</a></li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="spring-boot-starter.html">Arthas Spring Boot Starter</a></li>
|
||||
|
||||
Reference in New Issue
Block a user