I am currently writing an application for monitoring SQL queries produced by a web application. I am interested in monitoring the SQL queries being sent by a given application passively. That is, I don't want a proxy - instead I want to run the application to sit separate of the web application / database, and simply read the SQL queries being executed by the application. Is there anyway to do this with Java/C++?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Which database are you using? SQL Server Profiler allows you to monitor database activity in realtime, filtering SQL statements according to user, etc. Also, why are you trying to avoid using a proxy implementation? You could use a connection pool such as C3P0 and enable appropriate logging in order to capture all SQL executed. I can imagine the performance impact would be negligable. |
|||
|
|
You can use the log from the mysql database itself. You can have a program read that log file and display it. You say C++ or java, but something with good string handling would probly be easier. Perl maybe? |
|||
|
|