Is there a way I can collect all the search queries made by anyone. I would like to examine the log more thoroughly than the current admin panel search log report?
Thank you.
1 Like
If you need information about search queries that you can’t get from the admin search logs, you could try using the Data Explorer plugin. Here’s a Data Explorer query that returns search terms for a given username.
-- [params]
-- string :username
SELECT
sl.term,
COUNT(sl.term) AS query_count
FROM search_logs sl
JOIN users u
ON u.id = sl.user_id
WHERE u.username = :username
GROUP BY sl.term
ORDER BY query_count DESC
2 Likes
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.