2015-10-14 54 views
0

我知道_stats API提供了一個或多個索引的索引級別統計信息。我對store參數特別感興趣,它是以字節爲單位的索引大小。我想計算的字節大小爲索引中的給定類型,但是我如何計算彈性搜索索引內給定類型的統計信息

curl http://localhost:9200/myIndex/_stats/indexing?types=myType

字節不會返回大小myType。是否有一個API會給我的統計數據,會陳述:myType是Xgb的大小,並代表myIndexY%?

回答

0

您需要使用/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 
     } 
     } 
    }, 
    ... 
    } 
} 
0
所有 store數據你有興趣

以上僅適用於索引。您正在指定類型,但您仍然可以看到所有類型的商店。