Created
April 3, 2012 23:51
-
-
Save altmind/2296439 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| USE test; | |
| CREATE EVENT PROF ON SCHEDULE EVERY 1 SECOND DO INSERT INTO test.PROF(COMMAND,HOST,STATE,INFO) SELECT COMMAND, SUBSTRING(HOST,1,INSTR(HOST,':')-1) as HOST, STATE, INFO FROM INFORMATION_SCHEMA.PROCESSLIST WHERE DB='product' AND Command!='Sleep'AND STATE IS NOT NULL; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment