Reputation: 187
I want to calculate es
's indexing rate myself. In stats
api,there is a index_time_in_millis
field,what's the meaning of the field?
Upvotes: 6
Views: 2864
Reputation: 21
You're close. I believe you can calculate the index rate by doing the following:
Formula: (Tindex_+1 - Tindex)/((Indx_time_milis_+1 - Indx_time_milli)/1000)
Upvotes: 2