How to find which user searched specific keyword?

You could check the search_logs table. You could use this query in the Data explorer plugin:

-- [params]
-- string :word = my_word
SELECT * from search_logs where term = :word

For example, in my site I wanted to know who searched for the word rainbow:

1 Like