1MYSQLDUMPSLOW(1)             MySQL Database System            MYSQLDUMPSLOW(1)
2
3
4

NAME

6       mysqldumpslow - Summarize slow query log files
7

SYNOPSIS

9       mysqldumpslow [options] [log_file ...]
10

DESCRIPTION

12       The MySQL slow query log contains information about queries that take a
13       long time to execute (see Section 5.4.5, “The Slow Query Log”).
14       mysqldumpslow parses MySQL slow query log files and summarizes their
15       contents.
16
17       Normally, mysqldumpslow groups queries that are similar except for the
18       particular values of number and string data values. It “abstracts”
19       these values to N and 'S' when displaying summary output. To modify
20       value abstracting behavior, use the -a and -n options.
21
22       Invoke mysqldumpslow like this:
23
24           shell> mysqldumpslow [options] [log_file ...]
25
26       Example of usage:
27
28           shell> mysqldumpslow
29           Reading mysql slow query log from /usr/local/mysql/data/mysqld80-slow.log
30           Count: 1  Time=4.32s (4s)  Lock=0.00s (0s)  Rows=0.0 (0), root[root]@localhost
31            insert into t2 select * from t1
32           Count: 3  Time=2.53s (7s)  Lock=0.00s (0s)  Rows=0.0 (0), root[root]@localhost
33            insert into t2 select * from t1 limit N
34           Count: 3  Time=2.13s (6s)  Lock=0.00s (0s)  Rows=0.0 (0), root[root]@localhost
35            insert into t1 select * from t1
36
37       mysqldumpslow supports the following options.
38
39       ·   --help Display a help message and exit.
40
41       ·   -a
42
43           Do not abstract all numbers to N and strings to 'S'.
44
45       ·   --debug, -d Run in debug mode.
46
47           This option is available only if MySQL was built using WITH_DEBUG.
48           MySQL release binaries provided by Oracle are not built using this
49           option.
50
51       ·   -g pattern
52
53           Consider only queries that match the (grep-style) pattern.
54
55       ·   -h host_name
56
57           Host name of MySQL server for *-slow.log file name. The value can
58           contain a wildcard. The default is * (match all).
59
60       ·   -i name
61
62           Name of server instance (if using mysql.server startup script).
63
64       ·   -l
65
66           Do not subtract lock time from total time.
67
68       ·   -n N
69
70           Abstract numbers with at least N digits within names.
71
72       ·   -r
73
74           Reverse the sort order.
75
76       ·   -s sort_type
77
78           How to sort the output. The value of sort_type should be chosen
79           from the following list:
80
81           ·   t, at: Sort by query time or average query time
82
83           ·   l, al: Sort by lock time or average lock time
84
85           ·   r, ar: Sort by rows sent or average rows sent
86
87           ·   c: Sort by count
88
89           By default, mysqldumpslow sorts by average query time (equivalent
90           to -s at).
91
92       ·   -t N
93
94           Display only the first N queries in the output.
95
96       ·   --verbose, -v Verbose mode. Print more information about what the
97           program does.
98
100       Copyright © 1997, 2020, Oracle and/or its affiliates.
101
102       This documentation is free software; you can redistribute it and/or
103       modify it only under the terms of the GNU General Public License as
104       published by the Free Software Foundation; version 2 of the License.
105
106       This documentation is distributed in the hope that it will be useful,
107       but WITHOUT ANY WARRANTY; without even the implied warranty of
108       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
109       General Public License for more details.
110
111       You should have received a copy of the GNU General Public License along
112       with the program; if not, write to the Free Software Foundation, Inc.,
113       51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see
114       http://www.gnu.org/licenses/.
115
116

SEE ALSO

118       For more information, please refer to the MySQL Reference Manual, which
119       may already be installed locally and which is also available online at
120       http://dev.mysql.com/doc/.
121

AUTHOR

123       Oracle Corporation (http://dev.mysql.com/).
124
125
126
127MySQL 8.0                         11/26/2020                  MYSQLDUMPSLOW(1)
Impressum