The following discussion enumerates the sources of process information, the privileges required to see process information, and describes the content of process list entries.
Process information is available from these sources:
- The - SHOW PROCESSLISTstatement: Section 13.7.5.29, “SHOW PROCESSLIST Statement”
- The mysqladmin processlist command: Section 4.5.2, “mysqladmin — A MySQL Server Administration Program” 
- The - INFORMATION_SCHEMA- PROCESSLISTtable: Section 24.3.18, “The INFORMATION_SCHEMA PROCESSLIST Table”
- The Performance Schema - processlisttable: Section 25.12.16.3, “The processlist Table”
- The Performance Schema - threadstable columns with names having a prefix of- PROCESSLIST_: Section 25.12.16.4, “The threads Table”
- The - sysschema- processlistand- sessionviews: Section 26.4.3.22, “The processlist and x$processlist Views”, and Section 26.4.3.33, “The session and x$session Views”
          The threads table compares to
          SHOW PROCESSLIST,
          INFORMATION_SCHEMA
          PROCESSLIST, and
          mysqladmin processlist as follows:
- Access to the - threadstable does not require a mutex and has minimal impact on server performance. The other sources have negative performance consequences because they require a mutex.Note- As of MySQL 5.7.39, an alternative implementation for - SHOW PROCESSLISTis available based on the Performance Schema- processlisttable, which, like the- threadstable, does not require a mutex and has better performance characteristics. For details, see Section 25.12.16.3, “The processlist Table”.
- The - threadstable displays background threads, which the other sources do not. It also provides additional information for each thread that the other sources do not, such as whether the thread is a foreground or background thread, and the location within the server associated with the thread. This means that the- threadstable can be used to monitor thread activity the other sources cannot.
- You can enable or disable Performance Schema thread monitoring, as described in Section 25.12.16.4, “The threads Table”. 
          For these reasons, DBAs who perform server monitoring using
          one of the other thread information sources may wish to
          monitor using the threads table
          instead.
        
          The sys schema
          processlist view presents
          information from the Performance Schema
          threads table in a more
          accessible format. The sys schema
          session view presents
          information about user sessions like the
          sys schema
          processlist view, but with
          background processes filtered out.
          For most sources of process information, if you have the
          PROCESS privilege, you can see
          all threads, even those belonging to other users. Otherwise
          (without the PROCESS
          privilege), nonanonymous users have access to information
          about their own threads but not threads for other users, and
          anonymous users have no access to thread information.
        
          The Performance Schema threads
          table also provides thread information, but table access uses
          a different privilege model. See
          Section 25.12.16.4, “The threads Table”.
          Each process list entry contains several pieces of
          information. The following list describes them using the
          labels from SHOW PROCESSLIST
          output. Other process information sources use similar labels.
- Idis the connection identifier for the client associated with the thread.
- Userand- Hostindicate the account associated with the thread.
- dbis the default database for the thread, or- NULLif none has been selected.
- Commandand- Stateindicate what the thread is doing.- Most states correspond to very quick operations. If a thread stays in a given state for many seconds, there might be a problem that needs to be investigated. - The following sections list the possible - Commandvalues, and- Statevalues grouped by category. The meaning for some of these values is self-evident. For others, additional description is provided.Note- Applications that examine process list information should be aware that the commands and states are subject to change. 
- Timeindicates how long the thread has been in its current state. The thread's notion of the current time may be altered in some cases: The thread can change the time with- SET TIMESTAMP =. For a replica SQL thread, the value is the number of seconds between the timestamp of the last replicated event and the real time of the replica host. See Section 16.2.3, “Replication Threads”.- value
- Infoindicates the statement the thread is executing, or- NULLif it is executing no statement. For- SHOW PROCESSLIST, this value contains only the first 100 characters of the statement. To see complete statements, use- SHOW FULL PROCESSLIST(or query a diffferent process information source).