mysql 查看连接时间吗_查看mysql连接数 sql语句执行时间

查看mysql连接数

1./mysqladmin -uroot -p123456 -h192.168.9.172 processlist

可以查看具体详细信息

[root@sznagios bin]# pwd

/usr/bin

[root@nagios bin]# ./mysqladmin -uroot -p123456 -h192.168.9.172 processlist

+--------+-----------+---------------------+-----------------+---------+-------+-------+------------------+

| Id     | User      | Host                | db              | Command | Time  | State | Info             |

+--------+-----------+---------------------+-----------------+---------+-------+-------+------------------+

| 27     | centreon  | 192.168.9.172:47700 | centreon_status | Sleep   | 0     |       |                  |

| 78     | cactiuser | localhost           | syslog          | Sleep   | 55    |       |                  |

+--------+-----------+---------------------+-----------------+---------+-------+-------+------------------+

或者 进入mysql也可以查看:

mysql> show full processlist;

+-------+-----------+---------------------+------------------+---------+-------+-------+-----------------------+

| Id    | User      | Host                | db               | Command | Time  | State | Info                  |

+-------+-----------+---------------------+------------------+---------+-------+-------+-----------------------+

|    15 | cactiuser | localhost           | syslog           | Sleep   |     0 |       | NULL                  |

|   225 | centreon  | localhost           | centreon_status  | Sleep   |     1 |       | NULL                  |

| 76778 | root      | 172.16.200.53:54830 | NULL             | Sleep   | 15344 |       | NULL                  |

| 76779 | root      | 172.16.200.53:54831 | centreon_storage | Sleep   | 15342 |       | NULL                  |

| 76789 | root      | 172.16.200.53:54841 | centreon_storage | Sleep   | 15322 |       | NULL                  |

| 76790 | root      | 172.16.200.53:54843 | centreon_storage | Sleep   | 15317 |       | NULL                  |

| 84523 | root      | localhost           | NULL             | Query   |     0 | NULL  | show full processlist |

+-------+-----------+---------------------+------------------+---------+-------+-------+-----------------------+

7 rows in set (0.00 sec)

2./mysqladmin -ucentreon -p123456 -h172.25.128.35 status

可以查看总数 (Threads就是连接数)

[root@sznagios bin]#  ./mysqladmin -ucentreon -p123456 -h192.168.9.172status

Uptime: 57809  Threads: 76  Questions: 19264613  Slow queries: 33  Opens: 39310  Flush tables: 1  Open tables: 64  Queries per second avg: 333.245

3   sql语句执行时间

3.1profiles方法默认profiles不打开

mysql> show profiles;

Empty set (0.00 sec)

mysql> show variables like "%pro%";

+---------------------------+-------+

| Variable_name             | Value |

+---------------------------+-------+

| profiling                 | OFF   |

| profiling_history_size    | 15    |

| protocol_version          | 10    |

| slave_compressed_protocol | OFF   |

+---------------------------+-------+

4 rows in set (0.00 sec)

打开profiles

mysql> set profiling=1;

Query OK, 0 rows affected (0.00 sec)

mysql> use mysql;

Database changed

mysql> select * from user;

+-----------------------+-----------+-------------------------------------------+-------------+-------------+-------------+-------------+-------------+-----------+-------------+---------------+--------------+-----------+------------+-----------------+------------+------------+--------------+------------+-----------------------+------------------+--------------+-----------------+------------------+------------------+----------------+-------

mysql> show profiles;

+----------+------------+--------------------+

| Query_ID | Duration   | Query              |

+----------+------------+--------------------+

|        1 | 0.00020300 | SELECT DATABASE()  |

|        2 | 0.00067100 | select * from user |

+----------+------------+--------------------+

2 rows in set (0.00 sec)

3.2timestampdiff来查看测试时间

mysql> set @d=now();Query OK, 0 rows affected (0.00 sec)mysql> select * from user;+-----------------------+-----------+-------------------------------------------+-------------+-------------+-------------+-------------+-------------+-----------+-------------+---------------+--------------+-----------+------------+-----------------+------------+------------+--------------+------------+-----------------------+------------------+--------------+-----------------+------------------+------------------+----------------+---------------------+--------------mysql> select timestampdiff(second,@d,now());+--------------------------------+

| timestampdiff(second,@d,now()) |

+--------------------------------+

|                             39 |

+--------------------------------+

1 row in set (0.00 sec)

注意:三条sql语句要尽量连一起执行,不然误差太大

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值