Back to Kibana

Search Profiler

x-pack/platform/plugins/shared/searchprofiler/README.md

9.4.0758 B
Original Source

Search Profiler

About

The search profiler consumes the Profile API by sending a search API with profile: true enabled in the request body. The response contains detailed information on how Elasticsearch executed the search request. People use this information to understand why a search request might be slow.

How to test

Query profile

Execute the default query to generate results in the Query profile tab.

json
{
  "query":{
    "match_all" : {}
  }
}

Aggregation profile

Execute an aggregation query to generate results in the Aggregation profile tab.

json
{
  "aggs": {
    "avg_grade": { "avg": { "field": "grade" } }
  }
}