Get number of all queries on my mysql database in last hour?

I need to get all queries that are made in last hour on my wordpress database.

Related posts

Leave a Reply

2 comments

  1. You can check the update queries (only queries which did a modification to the data) with Binary log or update log (You will need to enable them)

    Slow queries are again logged to the slow query logs.

    I am not aware if mysql logs read only queries.

    Hope this is of some help.