I want to connect jconsole with mysql 5.1 as likes as database profiler. Is there any way to solve this problem?
Asked
Active
Viewed 248 times
1 Answers
1
JConsole is not a database profiler. It is not a profiler at all. It is just a JMX visualizer. Since each JVM has a "built-in" JMX server you can connect it to any java application. But MySQL is not a java application. It is written in C and compiled to native executable. So JConsole is just irrelevant here.
You can however get access to connection pool and MYSQL JDBC driver if you cannect JConsole to your java application (or application server) that works with MySQL DB.

AlexR
- 114,158
- 16
- 130
- 208
-
I already tested it but i doubt MySQL JDBC driver can show all threads that currently work in MYSQL database. – Sai Ye Yan Naing Aye Jun 05 '12 at 10:58