文章目录
转载请标明出处:
https://bigmaning.blog.csdn.net/article/details/113408831
本文出自:【BigManing的博客】
一、获取translog统计信息
1、获取所有索引的translog信息
http://local.elasticsearch:9200/_stats/translog
2、获取指定索引的translog信息
http://local.elasticsearch:9200/book/_stats/translog
3、获取同类索引的translog信息
log索引是按天滚动新增的,这样可以定义log-*
来查询所有log索引的统计信息
http://local.elasticsearch:9200/log-*/_stats/translog
二、输出结果
{
"_shards": {
"total": 32,
"successful": 32,
"failed": 0
},
"_all": {
"primaries": {
"translog": {
// 写translog的次数(索引文档、更新文档、删除文档的总操作数量)
"operations": 240497,
// translog实例管理的translog文件总大小。(一个索引引擎(InternalEngine)示例包含一个Translog实例)
"size_in_bytes": 215617938,
// 当前还未提交到lucene中的操作次数(索引文档、更新文档、删除文档的操作数量)
"uncommitted_operations": 240497,
// translog中未提交到Lucene中的字节数
"uncommitted_size_in_bytes": 215617938,
// 以秒为单位返回translog文件中最老条目的年龄
"earliest_last_modified_age": 0
}
},
"total": {
"translog": {
"operations": 480994,
"size_in_bytes": 431235821,
"uncommitted_operations": 480994,
"uncommitted_size_in_bytes": 431235821,
"earliest_last_modified_age": 0
}
}
},
"indices": {
"book-20210206": {
"uuid": "s728d00f_s8",
"primaries": {
"translog": {
"operations": 0,
"size_in_bytes": 55,
"uncommitted_operations": 0,
"uncommitted_size_in_bytes": 55,
"earliest_last_modified_age": 0
}
},
"total": {
"translog": {
"operations": 0,
"size_in_bytes": 110,
"uncommitted_operations": 0,
"uncommitted_size_in_bytes": 110,
"earliest_last_modified_age": 0
}
}
},
...
}
}
三、结果详情
1、_shards
分片信息:总数、成功返回数、失败返回数
2、_all
全局维度统计详情
-
primaries
:主分片上的统计信息 -
total
: 所有分片(主分片+副本分片)上的统计信息
3、indices
索引维度统计详情