This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a commit to branch cn-site
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git
The following commit(s) were added to refs/heads/cn-site by this push:
new cd2ee2a1b0 deploy: 84e47914e2645748c7da54dc74465dea2fa31e36
cd2ee2a1b0 is described below
commit cd2ee2a1b0895c7e01bd5ebb22df816b2246ce66
Author: AlbumenJ <[email protected]>
AuthorDate: Sun Jun 18 05:41:27 2023 +0000
deploy: 84e47914e2645748c7da54dc74465dea2fa31e36
---
sitemap.xml | 2 +-
.../index.html" | 6 +++---
zh-cn/blog/index.xml | 2 +-
zh-cn/blog/proposals/index.xml | 2 +-
zh-cn/index.xml | 2 +-
zh-cn/overview/reference/metrics/index.xml | 21 +++++++++++++--------
.../reference/metrics/standard_metrics/index.html | 8 ++++----
zh-cn/sitemap.xml | 2 +-
8 files changed, 25 insertions(+), 20 deletions(-)
diff --git a/sitemap.xml b/sitemap.xml
index f696993e28..98858335b6 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -1 +1 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><sitemapindex
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://cn.dubbo.apache.org/zh-cn/sitemap.xml</loc><lastmod>2023-06-12T19:58:29+08:00</lastmod></sitemap><sitemap><loc>https://cn.dubbo.apache.org/en/sitemap.xml</loc><lastmod>2023-05-10T11:59:30+08:00</lastmod></sitemap></sitemapindex>
\ No newline at end of file
+<?xml version="1.0" encoding="utf-8" standalone="yes"?><sitemapindex
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://cn.dubbo.apache.org/zh-cn/sitemap.xml</loc><lastmod>2023-06-18T13:37:03+08:00</lastmod></sitemap><sitemap><loc>https://cn.dubbo.apache.org/en/sitemap.xml</loc><lastmod>2023-05-10T11:59:30+08:00</lastmod></sitemap></sitemapindex>
\ No newline at end of file
diff --git
"a/zh-cn/blog/2023/02/20/\346\214\207\346\240\207\345\237\213\347\202\271/index.html"
"b/zh-cn/blog/2023/02/20/\346\214\207\346\240\207\345\237\213\347\202\271/index.html"
index 171d93afbe..086ee9fe93 100644
---
"a/zh-cn/blog/2023/02/20/\346\214\207\346\240\207\345\237\213\347\202\271/index.html"
+++
"b/zh-cn/blog/2023/02/20/\346\214\207\346\240\207\345\237\213\347\202\271/index.html"
@@ -1,8 +1,8 @@
<!doctype html><html lang=zh-cn class=no-js><head><meta name=ROBOTS
content="INDEX, FOLLOW"><link rel=canonical
href=https://cn.dubbo.apache.org/zh-cn/blog/2023/02/20/%E6%8C%87%E6%A0%87%E5%9F%8B%E7%82%B9/><script>var
_hmt=_hmt||[];(function(){var
e,t=document.createElement("script");t.src="https://hm.baidu.com/hm.js?3b78f49ba47181e4d998a66b689446e9",e=document.getElementsByTagName("script")[0],e.parentNode.insertBefore(t,e)})()</script><meta
charset=utf-8><meta name=viewport content="wid [...]
指标收集:将Dubbo内部需要监控的指标推送至统一的Collector中进行存储
本地聚合:指标收集获取的均为基础指标,而一些分位数指标则需通过本地聚合计算得出
指标推送:收集和聚合后的指标通过一定的方式推送至第三方服务器,目前只涉及Prometheus 3. 结构设计 移除原来与 Metrics 相关的类 创建新模块
dubbo-metrics/dubbo-metrics-api、dubbo-metrics/dubbo-metrics-prometheus,MetricsConfig
作为该模块的配置类
使用micrometer,在Collector中使用基本类型代表指标,如Long、Double等,并在dubbo-metrics-api中引入micrometer,由micrometer对内部指标进行转换
4. 数据流转 5. 目标 指标接口将提供一个 MetricsService,该 Service
不仅提供柔性服务所的接口级数据,也提供所有指标的查询方式,其中方法级指标的查询的接口可按如下方式声明
-public interface MetricsService { /** * Default {@link MetricsService}
extension name. */ String DEFAULT_EXTENSION_NAME = "default"; /** * The
contract version of {@link MetricsService}, the future update must make sure
compatible. */ String VERSION = "1.0.0"; /** * Get metrics by prefixes
* * @param categories categories * @return metrics - key=MetricCategory
value=MetricsEntityList */ Map<MetricsCategory, List<MetricsEntity>>
getMetricsByCategories(List<MetricsCategory> [...]
+public interface MetricsService { /** * Default {@link MetricsService}
extension name. */ String DEFAULT_EXTENSION_NAME = "default"; /** * The
contract version of {@link MetricsService}, the future update must make sure
compatible. */ String VERSION = "1.0.0"; /** * Get metrics by prefixes
* * @param categories categories * @return metrics - key=MetricCategory
value=MetricsEntityList */ Map<MetricsCategory, List<MetricsEntity>>
getMetricsByCategories(List<MetricsCategory> [...]
指标收集:将Dubbo内部需要监控的指标推送至统一的Collector中进行存储
本地聚合:指标收集获取的均为基础指标,而一些分位数指标则需通过本地聚合计算得出
指标推送:收集和聚合后的指标通过一定的方式推送至第三方服务器,目前只涉及Prometheus 3. 结构设计 移除原来与 Metrics 相关的类 创建新模块
dubbo-metrics/dubbo-metrics-api、dubbo-metrics/dubbo-metrics-prometheus,MetricsConfig
作为该模块的配置类
使用micrometer,在Collector中使用基本类型代表指标,如Long、Double等,并在dubbo-metrics-api中引入micrometer,由micrometer对内部指标进行转换
4. 数据流转 5. 目标 指标接口将提供一个 MetricsService,该 Service
不仅提供柔性服务所的接口级数据,也提供所有指标的查询方式,其中方法级指标的查询的接口可按如下方式声明
-public interface MetricsService { /** * Default {@link MetricsService}
extension name. */ String DEFAULT_EXTENSION_NAME = "default"; /** * The
contract version of {@link MetricsService}, the future update must make sure
compatible. */ String VERSION = "1.0.0"; /** * Get metrics by prefixes
* * @param categories categories * @return metrics - key=MetricCategory
value=MetricsEntityList */ Map<MetricsCategory, List<MetricsEntity>>
getMetricsByCategories(List<MetricsCategory> [...]
+public interface MetricsService { /** * Default {@link MetricsService}
extension name. */ String DEFAULT_EXTENSION_NAME = "default"; /** * The
contract version of {@link MetricsService}, the future update must make sure
compatible. */ String VERSION = "1.0.0"; /** * Get metrics by prefixes
* * @param categories categories * @return metrics - key=MetricCategory
value=MetricsEntityList */ Map<MetricsCategory, List<MetricsEntity>>
getMetricsByCategories(List<MetricsCategory> [...]
指标收集:将Dubbo内部需要监控的指标推送至统一的Collector中进行存储
本地聚合:指标收集获取的均为基础指标,而一些分位数指标则需通过本地聚合计算得出
指标推送:收集和聚合后的指标通过一定的方式推送至第三方服务器,目前只涉及Prometheus 3. 结构设计 移除原来与 Metrics 相关的类 创建新模块
dubbo-metrics/dubbo-metrics-api、dubbo-metrics/dubbo-metrics-prometheus,MetricsConfig
作为该模块的配置类
使用micrometer,在Collector中使用基本类型代表指标,如Long、Double等,并在dubbo-metrics-api中引入micrometer,由micrometer对内部指标进行转换
4. 数据流转 5. 目标 指标接口将提供一个 MetricsService,该 Service
不仅提供柔性服务所的接口级数据,也提供所有指标的查询方式,其中方法级指标的查询的接口可按如下方式声明
public interface MetricsService { /** * Default {@link MetricsService}
extension name. */ String DEFAULT_EXTENSION_NAME = "default"; /** * The
contract version of {@link MetricsService}, the future update must make sure
compatible. */ String VERSION = "1.0.0"; /** * Get metrics by prefixes
* * @param categories categories * @return metrics - key=MetricCategory
value=MetricsEntityList */ Map<MetricsCategory, List<MetricsEntity>>
getMetricsByCategories(List<MetricsCategory> [...]
<script>var
doNotTrack=!1;if(!doNotTrack){window.dataLayer=window.dataLayer||[];function
gtag(){dataLayer.push(arguments)}gtag("js",new
Date),gtag("config","G-NM6FFMT51J",{anonymize_ip:!1})}</script><link
rel=preload
href=/scss/main.min.827bbd3e83b1e0c66a1c08738c713f88f8068e84600146c2dbf9035f0f496f01.css
as=style><link
href=/scss/main.min.827bbd3e83b1e0c66a1c08738c713f88f8068e84600146c2dbf9035f0f496f01.css
rel=stylesheet integrity><script src=/js/jquery-3.5.1.min.js
integrity="sha256-9/a [...]
@@ -477,7 +477,7 @@ public interface MetricsService { /** * Default {@link
MetricsService} extension
</span></span><span style=display:flex><span> <span
style=color:#719e07>}</span>
</span></span><span style=display:flex><span> <span
style=color:#719e07>}</span>
</span></span><span style=display:flex><span><span style=color:#719e07>}</span>
-</span></span></code></pre></div><p>如果开启了本地聚合,则通过 spring 的 BeanFactory 添加监听,将
AggregateMetricsCollector 与 DefaultMetricsCollector
绑定,实现一种生存者消费者的模式,DefaultMetricsCollector 中使用监听器列表,方便扩展</p><div
class=highlight><pre tabindex=0
style=color:#93a1a1;background-color:#002b36;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code
class=language-java data-lang=java><span style=display:flex><span><span
style=color:#268bd2>private</span> <span style=color:#dc322f>void</span> <span
style=color:#268bd2>regi [...]
+</span></span></code></pre></div><p>如果开启了本地聚合,则通过 spring 的 BeanFactory 添加监听,将
AggregateMetricsCollector 与 DefaultMetricsCollector
绑定,实现一种生产者消费者的模式,DefaultMetricsCollector 中使用监听器列表,方便扩展</p><div
class=highlight><pre tabindex=0
style=color:#93a1a1;background-color:#002b36;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code
class=language-java data-lang=java><span style=display:flex><span><span
style=color:#268bd2>private</span> <span style=color:#dc322f>void</span> <span
style=color:#268bd2>regi [...]
</span></span><span style=display:flex><span> applicationModel<span
style=color:#719e07>.</span>getBeanFactory<span
style=color:#719e07>().</span>getBean<span
style=color:#719e07>(</span>DefaultMetricsCollector<span
style=color:#719e07>.</span>class<span
style=color:#719e07>).</span>addListener<span style=color:#719e07>(</span><span
style=color:#719e07>this</span><span style=color:#719e07>);</span>
</span></span><span style=display:flex><span><span style=color:#719e07>}</span>
</span></span></code></pre></div><h2 id=3-指标聚合>3. 指标聚合</h2><p>滑动窗口
diff --git a/zh-cn/blog/index.xml b/zh-cn/blog/index.xml
index a2c91871f0..586c61b530 100644
--- a/zh-cn/blog/index.xml
+++ b/zh-cn/blog/index.xml
@@ -3301,7 +3301,7 @@ Spring Boot3 &amp; Spring6</p>
</span></span><span style="display:flex;"><span> <span
style="color:#719e07">}</span>
</span></span><span style="display:flex;"><span> <span
style="color:#719e07">}</span>
</span></span><span style="display:flex;"><span><span
style="color:#719e07">}</span>
-</span></span></code></pre></div><p>如果开启了本地聚合,则通过 spring 的
BeanFactory 添加监听,将 AggregateMetricsCollector 与 DefaultMetricsCollector
绑定,实现一种生存者消费者的模式,DefaultMetricsCollector 中使用监听器列表,方便扩展</p>
+</span></span></code></pre></div><p>如果开启了本地聚合,则通过 spring 的
BeanFactory 添加监听,将 AggregateMetricsCollector 与 DefaultMetricsCollector
绑定,实现一种生产者消费者的模式,DefaultMetricsCollector 中使用监听器列表,方便扩展</p>
<div class="highlight"><pre tabindex="0"
style="color:#93a1a1;background-color:#002b36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code
class="language-java" data-lang="java"><span
style="display:flex;"><span><span style="color:#268bd2">private</span>
<span style="color:#dc322f">void</span> <span
style="color:#268bd2">registerListener</span><span
style="color:#719e07">()</span> <span style="color:#719e07">{</span>
</span></span><span style="display:flex;"><span>
applicationModel<span
style="color:#719e07">.</span>getBeanFactory<span
style="color:#719e07">().</span>getBean<span
style="color:#719e07">(</span>DefaultMetricsCollector<span
style="color:#719e07">.</span>class<span
style="color:#719e07">).</span>addListener<span
style="color:#719e07">(</span><span
style="color:#719e07">this</span><span style="color:#719e07">);</span>
</span></span><span style="display:flex;"><span><span
style="color:#719e07">}</span>
diff --git a/zh-cn/blog/proposals/index.xml b/zh-cn/blog/proposals/index.xml
index bc5a6475cc..76d8dafa26 100644
--- a/zh-cn/blog/proposals/index.xml
+++ b/zh-cn/blog/proposals/index.xml
@@ -557,7 +557,7 @@ P.Gu, L. Bhuvanagiri, J. Hunter, R. Peon, L. Kai, A.
Shraer, A. Merchant, and K.
</span></span><span style="display:flex;"><span> <span
style="color:#719e07">}</span>
</span></span><span style="display:flex;"><span> <span
style="color:#719e07">}</span>
</span></span><span style="display:flex;"><span><span
style="color:#719e07">}</span>
-</span></span></code></pre></div><p>如果开启了本地聚合,则通过 spring 的
BeanFactory 添加监听,将 AggregateMetricsCollector 与 DefaultMetricsCollector
绑定,实现一种生存者消费者的模式,DefaultMetricsCollector 中使用监听器列表,方便扩展</p>
+</span></span></code></pre></div><p>如果开启了本地聚合,则通过 spring 的
BeanFactory 添加监听,将 AggregateMetricsCollector 与 DefaultMetricsCollector
绑定,实现一种生产者消费者的模式,DefaultMetricsCollector 中使用监听器列表,方便扩展</p>
<div class="highlight"><pre tabindex="0"
style="color:#93a1a1;background-color:#002b36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code
class="language-java" data-lang="java"><span
style="display:flex;"><span><span style="color:#268bd2">private</span>
<span style="color:#dc322f">void</span> <span
style="color:#268bd2">registerListener</span><span
style="color:#719e07">()</span> <span style="color:#719e07">{</span>
</span></span><span style="display:flex;"><span>
applicationModel<span
style="color:#719e07">.</span>getBeanFactory<span
style="color:#719e07">().</span>getBean<span
style="color:#719e07">(</span>DefaultMetricsCollector<span
style="color:#719e07">.</span>class<span
style="color:#719e07">).</span>addListener<span
style="color:#719e07">(</span><span
style="color:#719e07">this</span><span style="color:#719e07">);</span>
</span></span><span style="display:flex;"><span><span
style="color:#719e07">}</span>
diff --git a/zh-cn/index.xml b/zh-cn/index.xml
index 198bdb0b01..f8bb900104 100644
--- a/zh-cn/index.xml
+++ b/zh-cn/index.xml
@@ -3301,7 +3301,7 @@ Spring Boot3 &amp; Spring6</p>
</span></span><span style="display:flex;"><span> <span
style="color:#719e07">}</span>
</span></span><span style="display:flex;"><span> <span
style="color:#719e07">}</span>
</span></span><span style="display:flex;"><span><span
style="color:#719e07">}</span>
-</span></span></code></pre></div><p>如果开启了本地聚合,则通过 spring 的
BeanFactory 添加监听,将 AggregateMetricsCollector 与 DefaultMetricsCollector
绑定,实现一种生存者消费者的模式,DefaultMetricsCollector 中使用监听器列表,方便扩展</p>
+</span></span></code></pre></div><p>如果开启了本地聚合,则通过 spring 的
BeanFactory 添加监听,将 AggregateMetricsCollector 与 DefaultMetricsCollector
绑定,实现一种生产者消费者的模式,DefaultMetricsCollector 中使用监听器列表,方便扩展</p>
<div class="highlight"><pre tabindex="0"
style="color:#93a1a1;background-color:#002b36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code
class="language-java" data-lang="java"><span
style="display:flex;"><span><span style="color:#268bd2">private</span>
<span style="color:#dc322f">void</span> <span
style="color:#268bd2">registerListener</span><span
style="color:#719e07">()</span> <span style="color:#719e07">{</span>
</span></span><span style="display:flex;"><span>
applicationModel<span
style="color:#719e07">.</span>getBeanFactory<span
style="color:#719e07">().</span>getBean<span
style="color:#719e07">(</span>DefaultMetricsCollector<span
style="color:#719e07">.</span>class<span
style="color:#719e07">).</span>addListener<span
style="color:#719e07">(</span><span
style="color:#719e07">this</span><span style="color:#719e07">);</span>
</span></span><span style="display:flex;"><span><span
style="color:#719e07">}</span>
diff --git a/zh-cn/overview/reference/metrics/index.xml
b/zh-cn/overview/reference/metrics/index.xml
index 5777227ad6..97b7c62772 100644
--- a/zh-cn/overview/reference/metrics/index.xml
+++ b/zh-cn/overview/reference/metrics/index.xml
@@ -176,37 +176,37 @@
<td>聚合请求失败次数,当聚合请求中有一个请求失败时候会触发此异常</td>
</tr>
<tr>
-<td>dubbo.provider.requests.timeout.total</td>
+<td>dubbo_provider_requests_timeout_total</td>
<td>Total Timeout Failed Requests</td>
<td>当RPC请求异常为超时异常状态码为 RpcException.TIMEOUT_EXCEPTION</td>
</tr>
<tr>
-<td>dubbo.provider.requests.limit.total</td>
+<td>dubbo_provider_requests_limit_total</td>
<td>Total Limit Failed Requests</td>
-<td>RPC请求中一般为并发数超过了限制 max concurrent invoke
或者是超过了系统的上限出现了异常状态码为RpcException.LIMIT_EXCEEDED_EXCEPTION或者异常类型为LimitExceededException
LimitExceededException</td>
+<td>RPC请求中一般为并发数超过了限制 max concurrent invoke
或者是超过了系统的上限出现了异常状态码为RpcException_LIMIT_EXCEEDED_EXCEPTION或者异常类型为LimitExceededException
LimitExceededException</td>
</tr>
<tr>
-<td>dubbo.provider.requests.unknown.failed.total</td>
+<td>dubbo_provider_requests_unknown_failed_total</td>
<td>Total Unknown Failed Requests</td>
<td>暂为归类的其他类型的异常具体分析根据日志来看</td>
</tr>
<tr>
-<td>dubbo.provider.requests.failed.total</td>
+<td>dubbo_provider_requests_failed_total</td>
<td>Total Failed Requests</td>
<td>总的异常次数</td>
</tr>
<tr>
-<td>dubbo.provider.requests.failed.network.total</td>
+<td>dubbo_provider_requests_failed_network_total</td>
<td>Total network Failed Requests</td>
<td>一般发生在网络连接失败或者网络通信时候发生的异常,对应Java异常为RemotingException</td>
</tr>
<tr>
-<td>dubbo.provider.requests.failed.service.unavailable.total</td>
+<td>dubbo_provider_requests_failed_service_unavailable_total</td>
<td>Total Service Unavailable Failed Requests</td>
<td>当不存在提供者或者调用了被禁止访问提的提供者时候会出现此异常 ,对应异常码FORBIDDEN_EXCEPTION</td>
</tr>
<tr>
-<td>dubbo.provider.requests.failed.codec.total</td>
+<td>dubbo_provider_requests_failed_codec_total</td>
<td>Total codec failed</td>
<td>序列化相关的异常,异常码SERIALIZATION_EXCEPTION</td>
</tr>
@@ -429,6 +429,11 @@
<td>Thread Pool Core Size</td>
<td>线程池核心大小</td>
</tr>
+<tr>
+<td>dubbo_thread_pool_reject_thread_count</td>
+<td>Thread Pool Reject Count</td>
+<td>线程池拒绝执行任务数量</td>
+</tr>
</tbody>
</table>
<h4 id="registration-center-metrics">Registration Center Metrics</h4>
diff --git a/zh-cn/overview/reference/metrics/standard_metrics/index.html
b/zh-cn/overview/reference/metrics/standard_metrics/index.html
index 5a4980bd71..da9918a569 100644
--- a/zh-cn/overview/reference/metrics/standard_metrics/index.html
+++ b/zh-cn/overview/reference/metrics/standard_metrics/index.html
@@ -1,6 +1,6 @@
<!doctype html><html lang=zh-cn class=no-js><head><meta name=ROBOTS
content="INDEX, FOLLOW"><link rel=canonical
href=https://cn.dubbo.apache.org/zh-cn/overview/reference/metrics/standard_metrics/><script>var
_hmt=_hmt||[];(function(){var
e,t=document.createElement("script");t.src="https://hm.baidu.com/hm.js?3b78f49ba47181e4d998a66b689446e9",e=document.getElementsByTagName("script")[0],e.parentNode.insertBefore(t,e)})()</script><meta
charset=utf-8><meta name=viewport content="width=device [...]
-"><meta property="og:type" content="article"><meta property="og:url"
content="https://cn.dubbo.apache.org/zh-cn/overview/reference/metrics/standard_metrics/"><meta
property="article:section" content="overview"><meta
property="article:modified_time" content="2023-06-02T15:19:03+08:00"><meta
itemprop=name content="Dubbo 框架标准监控指标"><meta itemprop=description content="描述了
Dubbo 中统计的一些标准监控指标。
-"><meta itemprop=dateModified content="2023-06-02T15:19:03+08:00"><meta
itemprop=wordCount content="1240"><meta itemprop=keywords content><meta
name=twitter:card content="summary"><meta name=twitter:title content="Dubbo
框架标准监控指标"><meta name=twitter:description content="描述了 Dubbo 中统计的一些标准监控指标。
+"><meta property="og:type" content="article"><meta property="og:url"
content="https://cn.dubbo.apache.org/zh-cn/overview/reference/metrics/standard_metrics/"><meta
property="article:section" content="overview"><meta
property="article:modified_time" content="2023-06-18T13:36:20+08:00"><meta
itemprop=name content="Dubbo 框架标准监控指标"><meta itemprop=description content="描述了
Dubbo 中统计的一些标准监控指标。
+"><meta itemprop=dateModified content="2023-06-18T13:36:20+08:00"><meta
itemprop=wordCount content="1246"><meta itemprop=keywords content><meta
name=twitter:card content="summary"><meta name=twitter:title content="Dubbo
框架标准监控指标"><meta name=twitter:description content="描述了 Dubbo 中统计的一些标准监控指标。
"><script async
src="https://www.googletagmanager.com/gtag/js?id=G-NM6FFMT51J"></script>
<script>var
doNotTrack=!1;if(!doNotTrack){window.dataLayer=window.dataLayer||[];function
gtag(){dataLayer.push(arguments)}gtag("js",new
Date),gtag("config","G-NM6FFMT51J",{anonymize_ip:!1})}</script><link
rel=preload
href=/scss/main.min.827bbd3e83b1e0c66a1c08738c713f88f8068e84600146c2dbf9035f0f496f01.css
as=style><link
href=/scss/main.min.827bbd3e83b1e0c66a1c08738c713f88f8068e84600146c2dbf9035f0f496f01.css
rel=stylesheet integrity><script src=/js/jquery-3.5.1.min.js
integrity="sha256-9/a [...]
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/@docsearch/css@3><meta
name=theme-color content="#326ce5"><link rel=stylesheet
href=/css/feature-states.css><meta name=description content="描述了 Dubbo
中统计的一些标准监控指标。
@@ -675,8 +675,8 @@
<label for=m-zh-cnoverviewreferenceprotocols-check><a
href=/zh-cn/overview/reference/protocols/ class="align-left pl-0
td-sidebar-link td-sidebar-link__section"
id=m-zh-cnoverviewreferenceprotocols><span>协议规范</span></a></label><ul
class="ul-3 foldable"><li class="td-sidebar-nav__section-title
td-sidebar-nav__section without-child"
id=m-zh-cnoverviewreferenceprotocolstriple-li><input type=checkbox
id=m-zh-cnoverviewreferenceprotocolstriple-check>
<label for=m-zh-cnoverviewreferenceprotocolstriple-check><a
href=/zh-cn/overview/reference/protocols/triple/ title="Triple 协议设计理念与规范"
class="align-left pl-0 td-sidebar-link td-sidebar-link__page"
id=m-zh-cnoverviewreferenceprotocolstriple><span>Triple
协议规范</span></a></label></li><li class="td-sidebar-nav__section-title
td-sidebar-nav__section without-child"
id=m-zh-cnoverviewreferenceprotocolstcp-li><input type=checkbox
id=m-zh-cnoverviewreferenceprotocolstcp-check>
<label for=m-zh-cnoverviewreferenceprotocolstcp-check><a
href=/zh-cn/overview/reference/protocols/tcp/ class="align-left pl-0
td-sidebar-link td-sidebar-link__page"
id=m-zh-cnoverviewreferenceprotocolstcp><span>Dubbo2
协议规范</span></a></label></li><li class="td-sidebar-nav__section-title
td-sidebar-nav__section without-child"
id=m-zh-cnoverviewreferenceprotocolshttp-li><input type=checkbox
id=m-zh-cnoverviewreferenceprotocolshttp-check>
-<label for=m-zh-cnoverviewreferenceprotocolshttp-check><a
href=/zh-cn/overview/reference/protocols/http/ class="align-left pl-0
td-sidebar-link td-sidebar-link__page"
id=m-zh-cnoverviewreferenceprotocolshttp><span>HTTP
协议规范</span></a></label></li></ul></li></ul></li></ul></li></ul></nav></div></div><main
class="col-12 col-md-9 col-xl-8 pl-md-5" role=main><nav aria-label=breadcrumb
class=td-breadcrumbs><ol class=breadcrumb><li class=breadcrumb-item><a
href=https://cn.dubbo.apache.org/zh-c [...]
-<button class="btn btn-primary mb-4
feedback--no">否</button></div><script>const
yes=document.querySelector(".feedback--yes"),no=document.querySelector(".feedback--no");document.querySelectorAll(".feedback--link").forEach(e=>{e.href=e.href+window.location.pathname});const
sendFeedback=e=>{gtag||console.log("!gtag"),gtag("event","click",{event_category:"Helpful",event_label:window.location.pathname,value:e})},disableButtons=()=>{yes.disabled=!0,yes.classList.add("feedback--button__disabled
[...]
+<label for=m-zh-cnoverviewreferenceprotocolshttp-check><a
href=/zh-cn/overview/reference/protocols/http/ class="align-left pl-0
td-sidebar-link td-sidebar-link__page"
id=m-zh-cnoverviewreferenceprotocolshttp><span>HTTP
协议规范</span></a></label></li></ul></li></ul></li></ul></li></ul></nav></div></div><main
class="col-12 col-md-9 col-xl-8 pl-md-5" role=main><nav aria-label=breadcrumb
class=td-breadcrumbs><ol class=breadcrumb><li class=breadcrumb-item><a
href=https://cn.dubbo.apache.org/zh-c [...]
+<button class="btn btn-primary mb-4
feedback--no">否</button></div><script>const
yes=document.querySelector(".feedback--yes"),no=document.querySelector(".feedback--no");document.querySelectorAll(".feedback--link").forEach(e=>{e.href=e.href+window.location.pathname});const
sendFeedback=e=>{gtag||console.log("!gtag"),gtag("event","click",{event_category:"Helpful",event_label:window.location.pathname,value:e})},disableButtons=()=>{yes.disabled=!0,yes.classList.add("feedback--button__disabled
[...]
<a
href="https://github.com/apache/dubbo-website/new/master/content/zh-cn/overview/reference/Metrics/standard_metrics.md?filename=change-me.md&value=---%0Atitle%3A+%22Long+Page+Title%22%0AlinkTitle%3A+%22Short+Nav+Title%22%0Aweight%3A+100%0Adescription%3A+%3E-%0A+++++Page+description+for+heading+and+indexes.%0A---%0A%0A%23%23+Heading%0A%0AEdit+this+template+to+create+your+new+page.%0A%0A%2A+Give+it+a+good+name%2C+ending+in+%60.md%60+-+e.g.+%60getting-started.md%60%0A%2A+Edit+the+%22f
[...]
<a
href="https://github.com/apache/dubbo-website/issues/new?title=Dubbo%20%e6%a1%86%e6%9e%b6%e6%a0%87%e5%87%86%e7%9b%91%e6%8e%a7%e6%8c%87%e6%a0%87"
target=_blank><i class="fab fa-github fa-fw"></i> 登记问题</a>
<a href=https://github.com/apache/dubbo/issues/new target=_blank><i class="fas
fa-tasks fa-fw"></i> 提交项目问题</a></div></main><div class="d-none d-xl-block
col-xl-2 td-toc d-print-none"><nav id=TableOfContents><ul><li><ul><li><a
href=#dubbo-指标含义>Dubbo
指标含义</a></li></ul></li></ul></nav></div></div></div></div><footer
class="bg-dark py-5 row d-print-none footer-margin-0"><div
class="container-fluid mx-sm-5"><div class=row><div class="col-6 col-sm-4
text-xs-center order-sm-2"><ul class="list-i [...]
diff --git a/zh-cn/sitemap.xml b/zh-cn/sitemap.xml
index 115e9af31f..1e9255ebea 100644
--- a/zh-cn/sitemap.xml
+++ b/zh-cn/sitemap.xml
@@ -1 +1 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml"><url><loc>https://cn.dubbo.apache.org/zh-cn/blog/2023/01/16/%E9%98%BF%E9%87%8C%E5%B7%B4%E5%B7%B4%E5%8D%87%E7%BA%A7-dubbo3-%E5%85%A8%E9%9D%A2%E5%8F%96%E4%BB%A3-hsf2/</loc><lastmod>2023-02-22T15:03:22+08:00</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url><url><loc>https://cn.dubbo.apache.org/zh-cn/overview/mannu
[...]
\ No newline at end of file
+<?xml version="1.0" encoding="utf-8" standalone="yes"?><urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml"><url><loc>https://cn.dubbo.apache.org/zh-cn/blog/2023/01/16/%E9%98%BF%E9%87%8C%E5%B7%B4%E5%B7%B4%E5%8D%87%E7%BA%A7-dubbo3-%E5%85%A8%E9%9D%A2%E5%8F%96%E4%BB%A3-hsf2/</loc><lastmod>2023-02-22T15:03:22+08:00</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url><url><loc>https://cn.dubbo.apache.org/zh-cn/overview/mannu
[...]
\ No newline at end of file