Rechercher dans le manuel MySQL
27.4.4.2 The diagnostics() Procedure
Creates a report of the current server status for diagnostic purposes.
This procedure disables binary logging during its execution by
manipulating the session value of the
sql_log_bin
system variable.
That is a restricted operation, so the procedure requires
privileges sufficient to set restricted session variables. See
Section 5.1.9.1, “System Variable Privileges”.
Data collected for diagnostics()
includes this information:
Information from the
metrics
view (see Section 27.4.3.21, “The metrics View”)Information from other relevant
sys
schema views, such as the one that detemines queries in the 95th percentileInformation from the
ndbinfo
schema, if the MySQL server is part of NDB ClusterReplication status (both master and slave)
Some of the sys schema views are calculated as initial (optional), overall, and delta values:
The initial view is the content of the view at the start of the
diagnostics()
procedure. This output is the same as the start values used for the delta view. The initial view is included if thediagnostics.include_raw
configuration option isON
.The overall view is the content of the view at the end of the
diagnostics()
procedure. This output is the same as the end values used for the delta view. The overall view is always included.The delta view is the difference from the beginning to the end of procedure execution. The minimum and maximum values are the minimum and maximum values from the end view, respectively. They do not necessarily reflect the minimum and maximum values in the monitored period. Except for the
metrics
view, the delta is calculated only between the first and last outputs.
Parameters
in_max_runtime INT UNSIGNED
: The maximum data collection time in seconds. UseNULL
to collect data for the default of 60 seconds. Otherwise, use a value greater than 0.in_interval INT UNSIGNED
: The sleep time between data collections in seconds. UseNULL
to sleep for the default of 30 seconds. Otherwise, use a value greater than 0.in_auto_config ENUM('current', 'medium', 'full')
: The Performance Schema configuration to use. Permitted values are:current
: Use the current instrument and consumer settings.medium
: Enable some instruments and consumers.full
: Enable all instruments and consumers.
NoteThe more instruments and consumers enabled, the more impact on MySQL server performance. Be careful with the
medium
setting and especially thefull
setting, which has a large performance impact.Use of the
medium
orfull
setting requires theSUPER
privilege.If a setting other than
current
is chosen, the current settings are restored at the end of the procedure.
diagnostics()
operation can be
modified using the following configuration options or their
corresponding user-defined variables (see
Section 27.4.2.1, “The sys_config Table”):
debug
,@sys.debug
If this option is
ON
, produce debugging output. The default isOFF
.diagnostics.allow_i_s_tables
,@sys.diagnostics.allow_i_s_tables
If this option is
ON
, thediagnostics()
procedure is permitted to perform table scans on theINFORMATION_SCHEMA.TABLES
table. This can be expensive if there are many tables. The default isOFF
.diagnostics.include_raw
,@sys.diagnostics.include_raw
If this option is
ON
, thediagnostics()
procedure output includes the raw output from querying themetrics
view. The default isOFF
.statement_truncate_len
,@sys.statement_truncate_len
The maximum length of statements returned by the
format_statement()
function. Longer statements are truncated to this length. The default is 64.
Create a diagnostics report that starts an iteration every 30 seconds and runs for at most 120 seconds using the current Performance Schema settings:
To capture the output from the
diagnostics()
procedure in a file as it
runs, use the mysql client tee
and
filename
notee
commands (see
Section 4.5.1.2, “mysql Client Commands”):
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 26/06/2006, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/mysql-rf-sys-diagnostics.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.