DTrace Integration with MySQL 5
On April 15-16, we demoed a few DTrace probes for MySQL 5.0 integrated with Chime visualization Tool at MySQL users conference 2008. Here is an snapshot of the DTrace probes in chime showing the query execution time/count in Chime tool:
The DTrace probes inserted into MySQL 5.0 in the demo are:
provider mysql {
probe data__receive__start(int);
probe data__receive__finish(int);
probe query__plan__start(char \*);
probe query__plan__finish(char \*);
probe query__execute__start(void \*, char \*,
char \*, …