Super simple qps statistics method (recommended)

Super simple qps statistics method (recommended)

Statistics of QPS values ​​in the last N seconds (including select, insert, etc. per second)

mysql> select variable_name,sum(per_sec) as qps from (select straight_join lower(gs0.variable_name) as variable_name, (gs1.variable_value - gs0.variable_value)/5 as per_sec from ( select variable_name ,variable_value from information_schema.global_status where variable_name in ('com_select','com_update','com_insert','com_replace','com_delete') union all select '',sleep(5) from dual ) as gs0 join information_schema.global_status gs1 using (variable_name)) t group by variable_name with rollup;

+---------------+---------+
| variable_name | qps |
+---------------+---------+
| com_delete | 0 |
| com_insert | 2.2 |
| com_replace | 0 |
| com_select | 11524.8 |
| com_update | 3 |
| NULL | 11530 |
+---------------+---------+
6 rows in set (5.00 sec)

Statistics on qps value, number of slow queries, etc. since db was started

mysql> \s
--------------
mysql Ver 14.14 Distrib 5.5.35, for Linux (x86_64) using readline 5.1


Connection id: 98313987
Current database: udb
Current user: [email protected]
SSL: Not in use
Current pager: stdout
Using outfile: ''
Using delimiter: ;
Server version: 5.5.35-log MySQL Community Server (GPL) by Remi
Protocol version: 10
Connection: 172.23.9.201 via TCP/IP
Server characterset: utf8
Db characterset: utf8
Client characterset: utf8
Conn. characterset: utf8
TCP port: 3206
Uptime: 274 days 1 hour 22 minutes 29 seconds


Threads: 172 Questions: 7559640986 Slow queries: 150149138 Opens: 7799 Flush tables: 15 Open tables: 973 Queries per second avg: 319.261

The above super simple qps statistics method (recommended) is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • The meaning and calculation method of QPS and TPS of MySQL database
  • What is the maximum number of concurrent connections on your IIS server?
  • Limit the number of concurrent connections per virtual host in Apache! ! ! !
  • Redis method to improve throughput through pipeline
  • How to improve throughput under high concurrency in springboot
  • What do TPS (throughput), QPS (query rate per second), concurrency, and RT (response time) mean?

<<:  Sample code for implementing music player with native JS

>>:  Detailed explanation of the construction and use of docker private warehouse

Recommend

JavaScript to achieve simple drag effect

This article shares the specific code of JavaScri...

Detailed process of upgrading glibc dynamic library in centos 6.9

glibc is the libc library released by gnu, that i...

Solution to using html2canvas to process Dom elements with Baidu map into images

Problem 1: Baidu Map uses tiled images (the map i...

Sample code for seamless scrolling with flex layout

This article mainly introduces the sample code of...

How to install MySQL Community Server 5.6.39

This article records the detailed tutorial of MyS...

Detailed process of using vmware to test PXE batch installation server

Table of contents 1. Preparation 1. Prepare the e...

Summary of Nginx location and proxy_pass path configuration issues

Table of contents 1. Basic configuration of Nginx...

MySQL 5.7.23 version installation tutorial and configuration method

It took me three hours to install MySQL myself. E...

8 Reasons Why You Should Use Xfce Desktop Environment for Linux

For several reasons (including curiosity), I star...

A great collection of web standards learning resources

These specifications are designed to allow for bac...

A line of CSS code that crashes Chrome

General CSS code will only cause minor issues wit...

Navicat for MySQL 11 Registration Code\Activation Code Summary

Recommended reading: Navicat12.1 series cracking ...

Summary of CSS counter and content

The content property was introduced as early as C...