首页 > 代码库 > dstat mysql5-conn
dstat mysql5-conn
在/usr/shared/dstat目录下dstat_mysql5_conn.py中的部分源代码
c = self.db.cursor()c.execute("""show global variables like ‘max_connections‘;""")max = c.fetchone()c.execute("""show global status like ‘Threads_connected‘;""")thread = c.fetchone()if thread[0] in self.vars: self.set2[thread[0]] = float(thread[1]) self.set2[‘Threads‘] = float(thread[1] / float(max[1]) 1.0 * 100)
print type(max[1]) ,type(thread[1])
<type ‘str‘> <type ‘str‘>
调试下,从数据库中获取到的数据(数字) 是str 所以
self.set2[‘Threads‘] = float(thread[1] / float(max[1]) 1.0 * 100) --是str[thread[1]]/float[float(max[1])
修改这段代码为
self.set2[‘Threads‘] = float(float(thread[1]) / float(max[1]) * 100)
#!/bin/bash#file:mysql5conn.shexport DSTAT_MYSQL_USER=‘user‘export DSTAT_MYSQL_PWD=‘pwd‘dstat --mysql5-conn $@
[root@shylock ~]# ./mysql5io.sh 1 10mysql5-coThCo %Con0.00 0.001.00 0.661.00 0.661.00 0.661.00 0.661.00 0.661.00 0.661.00 0.661.00 0.661.00 0.661.00 0.66
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。