From f0e67a38ddf927e20d7fa1a7eb016aaf6a8d2f9b Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Mon, 23 Sep 2024 15:24:17 -0500 Subject: [PATCH] fix(clustered): Apply suggestion - don't mention dashboards. --- .../report-query-performance-issues.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/influxdb/clustered/query-data/troubleshoot-and-optimize/report-query-performance-issues.md b/content/influxdb/clustered/query-data/troubleshoot-and-optimize/report-query-performance-issues.md index a3bf8dd30..3f5ad0271 100644 --- a/content/influxdb/clustered/query-data/troubleshoot-and-optimize/report-query-performance-issues.md +++ b/content/influxdb/clustered/query-data/troubleshoot-and-optimize/report-query-performance-issues.md @@ -154,12 +154,14 @@ This is just an example. You don't have to go beyond the scale where queries get but you may also need to go further than what's outlined here. {{% /note %}} + ### Gather debug information @@ -412,6 +414,7 @@ SELECT table_name, MAX(last_new_file_created_at) as last_new_file_created_at, SUM(total_size_mb) as total_size_mb FROM system.partitions +WHERE table_name IN ('foo', 'bar', 'baz') GROUP BY table_name; ``` {{% /code-placeholders%}}