Rechercher dans le manuel MySQL
26.4.4 Pre-Filtering by Instrument
The setup_instruments
table lists
the available instruments:
- FROM performance_schema.setup_instruments;
- +---------------------------------------------------+---------+-------+
- | NAME | ENABLED | TIMED |
- +---------------------------------------------------+---------+-------+
- ...
- ...
- | statement/sql/flush | YES | YES |
- ...
- | wait/synch/mutex/sql/LOCK_global_read_lock | YES | YES |
- | wait/synch/mutex/sql/LOCK_global_system_variables | YES | YES |
- | wait/synch/mutex/sql/LOCK_lock_db | YES | YES |
- | wait/synch/mutex/sql/LOCK_manager | YES | YES |
- ...
- | wait/synch/rwlock/sql/LOCK_grant | YES | YES |
- | wait/synch/rwlock/sql/LOGGER::LOCK_logger | YES | YES |
- | wait/synch/rwlock/sql/LOCK_sys_init_connect | YES | YES |
- | wait/synch/rwlock/sql/LOCK_sys_init_slave | YES | YES |
- ...
- | wait/io/file/sql/binlog | YES | YES |
- | wait/io/file/sql/binlog_index | YES | YES |
- | wait/io/file/sql/casetest | YES | YES |
- | wait/io/file/sql/dbopt | YES | YES |
- ...
To control whether an instrument is enabled, set its
ENABLED
column to YES
or
NO
. To configure whether to collect timing
information for an enabled instrument, set its
TIMED
value to YES
or
NO
. Setting the TIMED
column affects Performance Schema table contents as described in
Section 26.4.1, “Performance Schema Event Timing”.
Modifications to most
setup_instruments
rows affect
monitoring immediately. For some instruments, modifications are
effective only at server startup; changing them at runtime has
no effect. This affects primarily mutexes, conditions, and
rwlocks in the server, although there may be other instruments
for which this is true.
The setup_instruments
table
provides the most basic form of control over event production.
To further refine event production based on the type of object
or thread being monitored, other tables may be used as described
in Section 26.4.3, “Event Pre-Filtering”.
The following examples demonstrate possible operations on the
setup_instruments
table. These
changes, like other pre-filtering operations, affect all users.
Some of these queries use the LIKE
operator and a pattern match instrument names. For additional
information about specifying patterns to select instruments, see
Section 26.4.9, “Naming Instruments or Consumers for Filtering Operations”.
Disable all instruments:
Now no events will be collected.
Disable all file instruments, adding them to the current set of disabled instruments:
Disable only file instruments, enable all other instruments:
Enable all but those instruments in the
mysys
library:Disable a specific instrument:
To toggle the state of an instrument, “flip” its
ENABLED
value:Disable timing for all events:
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-performance-schema-instrument-filtering.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.