-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add RocksDB column family metrics #1566
Comments
kCFStats 包含的是 kCFStatsNoFileHistogram 和 kCFFileHistogram 的 Map 格式的信息。 根据参考的文档 kCFStatsNoFileHistogram 应该如下:
包含一些 io_stalls,如 level0_numfiles、level0_slowdown、memtable_compaction、memtable_slowdown、stop_for_pending_compaction_bytes、slowdown_for_pending_compaction_bytes。 但是测试时发现获取到的 kCFStatsNoFileHistogram 是:
最后一行变为 Write Stall (count):
需要重新判断需要输出的 IO stat 指标。 此外,正常获得指标的时候是从 kStats 和 kCFStats 的 Map 中读取。 kCFStats 指标如下:
|
|
…) (OpenAtomFoundation#1696) * 支持cfstats监控数据采集 * 修改监控指标注释;修复时间解析错误bug;添加mac-amd64编译 * 添加监控指标说明 * bug fix
…) (OpenAtomFoundation#1696) * 支持cfstats监控数据采集 * 修改监控指标注释;修复时间解析错误bug;添加mac-amd64编译 * 添加监控指标说明 * bug fix
In the process of adding RocksDB metrics in #1560, the RocksDB column family metrics were not obtained, and this part of metrics needs to be added.
The text was updated successfully, but these errors were encountered: