I am just wondering if its possible to trace MySQL queries on my linux server as they happen?

For example I'd love to set up some sort of listener, then request a web page and view all of the queries the engine executed, or just view all of the queries being run on a production server.

Are there tools to do this?

Thank you,

link|improve this question

feedback

5 Answers

up vote 12 down vote accepted

You can run the mysql command "show processlist" to see what queries are being processed at any given time, but that probably won't achieve what you're hoping for.

The best method to get a history without having to modify every application using the server is probably through triggers. You could set up triggers so that every query run results in the query being inserted into some sort of history table, and then create a separate page to access this information.

Do be aware that this will probably considerably slow down everything on the server though, with adding an extra INSERT on top of every single query.


Edit: another alternative is the General Query Log, but having it written to a flat file would remove a lot of possibilities for flexibility of displaying, especially in real-time. If you just want a simple, easy-to-implement way to see what's going on though, enabling the GQL and then using running tail -f on the logfile would do the trick.

link|improve this answer
This may sound silly but how exactly can I enable the GQL? I have added log_output=file, general_log=1, and general_log_file=/pathtofile, and tail'd the log file, hit the site and got nothing. What am I doing wrong? – barfoon Feb 20 '09 at 7:35
I can't be sure of anything, but make sure that you restarted the server, and also that the file you chose is one that mysql would have write access to. – Chad Birch Feb 20 '09 at 15:22
Chad - the file/directory is accessible by mysql user, and ive restarted the server several times. Still nothing. Any other ideas? – barfoon Feb 20 '09 at 21:13
Hmm, you did use "tail -f <filename>", right? Is the file appearing, or not being written at all? Another possibility: make sure that you're using the correct settings for your mysql version, that page of the documentation explains several different ways, which will only work on the right version. – Chad Birch Feb 20 '09 at 21:37
2  
I have figured it out - all I needed in my.cnf was log=/path/to/log Then I just did the tail on that and it displays all the queries. – barfoon Feb 20 '09 at 21:53
show 1 more comment
feedback

You can log every query to a long file really easily:

mysql> SHOW VARIABLES LIKE "general_log%";

+------------------+----------------------------+
| Variable_name    | Value                      |
+------------------+----------------------------+
| general_log      | OFF                        |
| general_log_file | /var/run/mysqld/mysqld.log |
+------------------+----------------------------+

mysql> SET GLOBAL general_log = 'ON';

Do your queries (on any db). Grep or otherwise examine /var/run/mysqld/mysqld.log

Then don't forget to

mysql> SET GLOBAL general_log = 'OFF';

or the performance will plummet and your disk will fill!

link|improve this answer
feedback

Check out mtop.

link|improve this answer
Yes, but good luck installing it on Debian or Ubuntu: bugs.launchpad.net/ubuntu/+source/mtop/+bug/77980 – mlissner Aug 27 '11 at 22:01
Managed to get it running on debian, but its kindof worthless since it misses a lot of queries. I can see the query counter going up constantly but it rarely displays any queries. Looks like it only displays the queries that take longer than approx 1 second. – Cobra_Fast Jan 17 at 11:07
feedback

I'm in a particular situation where I do not have permissions to turn logging on, and wouldn't have permissions to see the logs if they were turned on. I could not add a trigger, but I did have permissions to call show processlist. So, I gave it a best effort and came up with this:

Create a bash script called "showsqlprocesslist":

#!/bin/bash

while [ 1 -le 1 ]
do
         mysql --port=**** --protocol=tcp --password=**** --user=**** --host=**** -e "show processlist\G" | grep Info | grep -v processlist | grep -v "Info: NULL";
done

Execute the script:

./showsqlprocesslist > showsqlprocesslist.out &

Tail the output:

tail -f showsqlprocesslist.out

Bingo bango. Even though it's not throttled, it only took up 2-4% CPU on the boxes I ran it on. I hope maybe this helps someone.

link|improve this answer
feedback

I've been looking to do the same, and have cobbled together a solution from various posts, plus created a small console app to output the live query text as it's written to the log file. This was important in my case as I'm using Entity Framework with MySQL and I need to be able to inspect the generated SQL.

Steps to create the log file (some duplication of other posts, all here for simplicity):

  1. Edit the file located at:

    C:\Program Files (x86)\MySQL\MySQL Server 5.5\my.ini
    

    Add "log=development.log" to the bottom of the file. (Note saving this file required me to run my text editor as an admin).

  2. Use MySql workbench to open a command line, enter the password.

    Run the following to turn on general logging which will record all queries ran:

    SET GLOBAL general_log = 'ON';
    
    To turn off:
    
    SET GLOBAL general_log = 'OFF';
    

    This will cause running queries to be written to a text file at the following location.

    C:\ProgramData\MySQL\MySQL Server 5.5\data\development.log
    
  3. Create / Run a console app that will output the log information in real time:

    Source available to download here

    Source:

    using System;
    using System.Configuration;
    using System.IO;
    using System.Threading;
    
    namespace LiveLogs.ConsoleApp
    {
      class Program
      {
        static void Main(string[] args)
        {
            // Console sizing can cause exceptions if you are using a 
            // small monitor. Change as required.
    
            Console.SetWindowSize(152, 58);
            Console.BufferHeight = 1500;
    
            string filePath = ConfigurationManager.AppSettings["MonitoredTextFilePath"];
    
            Console.Title = string.Format("Live Logs {0}", filePath);
    
            var fileStream = new FileStream(filePath, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite);
    
            // Move to the end of the stream so we do not read in existing
            // log text, only watch for new text.
    
            fileStream.Position = fileStream.Length;
    
            StreamReader streamReader;
    
            // Commented lines are for duplicating the log output as it's written to 
            // allow verification via a diff that the contents are the same and all 
            // is being output.
    
            // var fsWrite = new FileStream(@"C:\DuplicateFile.txt", FileMode.Create);
            // var sw = new StreamWriter(fsWrite);
    
            int rowNum = 0;
    
            while (true)
            {
                streamReader = new StreamReader(fileStream);
    
                string line;
                string rowStr;
    
                while (streamReader.Peek() != -1)
                {
                    rowNum++;
    
                    line = streamReader.ReadLine();
                    rowStr = rowNum.ToString();
    
                    string output = String.Format("{0} {1}:\t{2}", rowStr.PadLeft(6, '0'), DateTime.Now.ToLongTimeString(), line);
    
                    Console.WriteLine(output);
    
                    // sw.WriteLine(output);
                }
    
                // sw.Flush();
    
                Thread.Sleep(500);
            }
        }
      }
    }
    
link|improve this answer
1  
This looks real cool and I am definitely going to take a look at it, be great to take this on as a OSS project and create a profiling tool! – Rippo Feb 22 at 16:49
I think that's a good idea. I've put an SVN repo on google code. Probably the smallest OS project ever, but this has been very useful so far. I'll probably extend it, be interested to see if anyone else takes it further. code.google.com/p/livelogs – Cognize Feb 22 at 21:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.