Elasticsearch Performance Metrics

I enabled the stack monitoring in kibana.
index something like .monitoring-es created
I would like to know is it possible to get the

  1. average primary shards indexing rate
  2. Max primary shards indexing rate
  3. average indexing latency
  4. Max indexing latency
  5. total number of search query
  6. average search latency
  7. max search latency

For a period of time.
If so which field should be used.

HI, Frances_Chu

inspect general guideline on how you can find and use these fields to obtain the metrics
ndexing Rate
For average primary shards indexing rate: Look for fields related to indexing rates or document counts. You may find fields like indexing.index_total, indexing.index_time_in_millis, indexing.index_current, etc. For max primary shards indexing rate: You can use the same fields but aggregate them with the max function over the desired time period.

big thx