In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
CREATE INDEX tbl_file_idx_src ON "tbl_logs_file_ops" ("src");
SELECT
tbl_logs_file_ops.src,
COUNT(tbl_logs_file_ops.src)
FROM
tbl_logs_file_ops
GROUP BY
tbl_logs_file_ops.src
ORDER BY
COUNT(tbl_logs_file_ops.src) DESC NULLS LAST LIMIT 10