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; +---------------+---------+ Statistics on qps value, number of slow queries, etc. since db was started mysql> \s 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:
|
<<: Sample code for implementing music player with native JS
>>: Detailed explanation of the construction and use of docker private warehouse
This article shares the specific code of JavaScri...
glibc is the libc library released by gnu, that i...
Problem 1: Baidu Map uses tiled images (the map i...
This article mainly introduces the sample code of...
Table of contents Overview 1. How to animate a DO...
This article records the detailed tutorial of MyS...
Table of contents 1. Preparation 1. Prepare the e...
Table of contents 1. Basic configuration of Nginx...
We all know that Jmeter provides native result vi...
It took me three hours to install MySQL myself. E...
For several reasons (including curiosity), I star...
These specifications are designed to allow for bac...
General CSS code will only cause minor issues wit...
Recommended reading: Navicat12.1 series cracking ...
The content property was introduced as early as C...