0

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.

Eugene Shmorgun
  • 2,083
  • 12
  • 42
  • 67

2 Answers2

2

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

Eric Petroelje
  • 59,820
  • 9
  • 127
  • 177
0

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.

Mike Brant
  • 70,514
  • 10
  • 99
  • 103