This is an automated email from the ASF dual-hosted git repository.

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 9090c5e4e5 [fix](docs) Fix memory & rowset count metrics (#16550)
9090c5e4e5 is described below

commit 9090c5e4e587eced4536082171601411ec0a2569
Author: Xinyi Zou <[email protected]>
AuthorDate: Thu Feb 9 15:55:35 2023 +0800

    [fix](docs) Fix memory & rowset count metrics (#16550)
---
 .../docs/admin-manual/maint-monitor/monitor-metrics/metrics.md     | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git 
a/docs/zh-CN/docs/admin-manual/maint-monitor/monitor-metrics/metrics.md 
b/docs/zh-CN/docs/admin-manual/maint-monitor/monitor-metrics/metrics.md
index 788dce1faa..3c7b49d6bd 100644
--- a/docs/zh-CN/docs/admin-manual/maint-monitor/monitor-metrics/metrics.md
+++ b/docs/zh-CN/docs/admin-manual/maint-monitor/monitor-metrics/metrics.md
@@ -236,8 +236,9 @@ curl http://be_host:webserver_port/metrics?type=json
 |`doris_be_local_file_reader_total`| | Num| 打开的 `LocalFileReader` 的累计计数 | |
 |`doris_be_local_file_open_reading`| | Num | 当前打开的 `LocalFileReader` 个数 | |
 |`doris_be_local_file_writer_total`| | Num | 打开的 `LocalFileWriter` 的累计计数。| |
-|`doris_be_mem_consumption`| | 字节 | 指定模块的当前内存开销。如 {type="compaction"} 表示 
compaction 模块的当前总内存开销 | FIXME: 需要重新梳理|
-|`doris_be_memory_allocated_bytes`| | 字节 | 采集自 TcMalloc 的 
`generic.total_physical_bytes` 属性。表示 TcMalloc 占用的虚拟内存的大小,并不代表实际的物理内存占用。 | 
可能会比实际物理内存大 | P0 |
+|`doris_be_mem_consumption`| | 字节 | 指定模块的当前内存开销。如 {type="compaction"} 表示 
compaction 模块的当前总内存开销。 | 值取自相同 type 的 MemTracker。FIXME |
+|`doris_be_memory_allocated_bytes`| | 字节 | BE 进程物理内存大小,取自 
`/proc/self/status/VmRSS` | | P0 |
+|`doris_be_memory_jemalloc`| | 字节 | Jemalloc stats, 取自 `je_mallctl`。 | 
含义参考:https://jemalloc.net/jemalloc.3.html | P0 |
 |`doris_be_memory_pool_bytes_total`| | 字节| 所有 MemPool 
当前占用的内存大小。统计值,不代表真实内存使用。| |
 |`doris_be_memtable_flush_duration_us`| | 微秒 | memtable写入磁盘的耗时累计值 | 
通过斜率可以观测写入延迟 | P0 |
 |`doris_be_memtable_flush_total`| | Num | memtable写入磁盘的个数累计值| 通过斜率可以计算写入文件的频率 
| P0 |
@@ -295,6 +296,8 @@ curl http://be_host:webserver_port/metrics?type=json
 |`doris_be_load_bytes`| | 字节|通过 tablet sink 发送的数量累计 | 可观测导入数据量 | P0 |
 |`doris_be_load_rows`| | Num | 通过 tablet sink 发送的行数累计| 可观测导入数据量 | P0 |
 |`fragment_thread_pool_queue_size`| | Num | 当前查询执行线程池等待队列的长度 | 
如果大于零,则说明查询线程已耗尽,查询会出现堆积 | P0 |
+|`doris_be_all_rowset_nums`| | Num | 当前所有 rowset 的个数 | | P0 |
+|`doris_be_all_segment_nums`| | Num | 当前所有 segment 的个数 | | P0 |
 
 ### 机器监控
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to