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.sh
export DSTAT_MYSQL_USER=user
export DSTAT_MYSQL_PWD=pwd

dstat --mysql5-conn $@
[root@shylock ~]# ./mysql5io.sh  1 10
mysql5-co
ThCo %Con
0.00 0.00
1.00 0.66
1.00 0.66
1.00 0.66
1.00 0.66
1.00 0.66
1.00 0.66
1.00 0.66
1.00 0.66
1.00 0.66
1.00 0.66

dstat mysql5-conn,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。