mysql monitoring
-
[Python] mysql lock monitoring. (실행 중인 스레드 모니터링)Mysql, Maria DB 2018. 5. 5. 22:01
파이썬 pymysql 모듈을 이용하여 실행 중인 스레드 모니터링을 할 수 있다. - mysql 명령어 : SHOW PROCESSLIST (DOCS : https://dev.mysql.com/doc/refman/5.5/en/show-processlist.html) import pymysql strFormat = '%-10s\t%-10s\t%-20s\t%-20s\t%-30s\t%-10s\t%-30s\t%-30s\t%-10s\n' strOut = strFormat % ('Id', 'User', 'Host', 'db', 'Command', 'Time', 'State','Info','Progress') strOut += '----------\t----------\t---------------------\t----..