You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _observing-your-data/query-insights/top-n-queries.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ nav_order: 10
7
7
8
8
# Top N queries
9
9
10
-
Monitoring the top N queries in query insights features can help you gain real-time insights into the top queries with high latency within a certain time frame (for example, the last hour).
10
+
Monitoring the top N queries using query insights allows you to gain real-time visibility into the queries with the greatest latency or resource consumption over a specified time period (for example, the last hour).
11
11
12
12
## Configuring top N query monitoring
13
13
@@ -72,13 +72,15 @@ PUT _cluster/settings
72
72
73
73
## Monitoring the top N queries
74
74
75
-
You can use the Insights API endpoint to obtain the top N queries. Specify the `type` parameter to get top N results for each metric type. Calling this API without `type` returns top N `latency` results by default.
75
+
You can use the Insights API endpoint to retrieve the top N queries. This API returns top N `latency` results by default.
76
76
77
77
```json
78
78
GET /_insights/top_queries
79
79
```
80
80
{% include copy-curl.html %}
81
81
82
+
Specify the `type` parameter to retrieve the top N results for other metric types. The results will be sorted in descending order based on the specified metric type.
83
+
82
84
```json
83
85
GET /_insights/top_queries?type=latency
84
86
```
@@ -94,7 +96,7 @@ GET /_insights/top_queries?type=memory
94
96
```
95
97
{% include copy-curl.html %}
96
98
97
-
If you are not seeing results, verify top N is enabled for the target metric type and ensure search requests were sent during the current time window.
99
+
If your query returns no results, ensure that top N is enabled for the target metric type and that search requests were made within the current [time window](#configuring-the-window-size).
0 commit comments