我知道_stats
API提供了一個或多個索引的索引級別統計信息。我對store
參數特別感興趣,它是以字節爲單位的索引大小。我想計算的字節大小爲索引中的給定類型,但是我如何計算彈性搜索索引內給定類型的統計信息
curl http://localhost:9200/myIndex/_stats/indexing?types=myType
字節不會返回大小myType
。是否有一個API會給我的統計數據,會陳述:myType
是Xgb的大小,並代表myIndex
Y%?
我知道_stats
API提供了一個或多個索引的索引級別統計信息。我對store
參數特別感興趣,它是以字節爲單位的索引大小。我想計算的字節大小爲索引中的給定類型,但是我如何計算彈性搜索索引內給定類型的統計信息
curl http://localhost:9200/myIndex/_stats/indexing?types=myType
字節不會返回大小myType
。是否有一個API會給我的統計數據,會陳述:myType
是Xgb的大小,並代表myIndex
Y%?
您需要使用/store
子路徑,而不是像這樣/indexing
副路徑:
curl http://localhost:9200/myIndex/_stats/store?types=myType
^
|
use "store" here
,你會得到在
{
"_shards" : {
"total" : 15,
"successful" : 15,
"failed" : 0
},
"_all" : {
"primaries" : {
"store" : {
"size_in_bytes" : 2250058413,
"throttle_time_in_millis" : 0
}
},
"total" : {
"store" : {
"size_in_bytes" : 2250058413,
"throttle_time_in_millis" : 0
}
}
},
"indices" : {
"myIndex" : {
"primaries" : {
"store" : {
"size_in_bytes" : 1444291,
"throttle_time_in_millis" : 0
}
},
"total" : {
"store" : {
"size_in_bytes" : 1444291,
"throttle_time_in_millis" : 0
}
}
},
...
}
}
store
數據你有興趣
以上僅適用於索引。您正在指定類型,但您仍然可以看到所有類型的商店。