Eugene Shmorgun
Eugene Shmorgun

Reputation: 2075

Comfortable watching on logs of MySQL

My problem is that: I have the app, which intensively discuss with MySQL-server and I need to check some issues in the incoming queries.

Is there any good tool to see what queries have been executed by the server ? Good, if it would be some GUI in MySQl workbench. And of course, I know about mysqld --log=log_file_name, but really the direct viewing of file doesn't look like suite tool to see logs.

Thanks for hints.

Upvotes: 0

Views: 123

Answers (2)

Mike Brant
Mike Brant

Reputation: 71384

If you don't find a tool that meets your needs, you can always log queries and query errors within your app and review those logs.

Upvotes: 0

Eric Petroelje
Eric Petroelje

Reputation: 60498

You could try JetProfiler - I know it will let you do this.

Upvotes: 2

Related Questions