You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
subheaderprint "Performance schema: TOP 15 most row look queries (95% percentile)";
3988
-
$nbL=1;
3989
-
formy$lQuery(select_array ('use sys;select db, query, rows_examined AS search from statements_with_runtimes_in_95th_percentile ORDER BY rows_examined DESC LIMIT 15;')) {
3990
-
infoprint " +-- $nbL: $lQuery";
3991
-
$nbL++;
3992
-
}
3993
-
infoprint "No information found or indicators desactivated."if ($nbL == 1);
3994
-
3995
-
3996
-
subheaderprint "Performance schema: TOP 15 max latency queries (95% percentile)";
3997
-
$nbL=1;
3998
-
formy$lQuery(select_array ('use sys;select db, query, max_latency AS search from statements_with_runtimes_in_95th_percentile ORDER BY max_latency DESC LIMIT 15;')) {
3999
-
infoprint " +-- $nbL: $lQuery";
4000
-
$nbL++;
4001
-
}
4002
-
infoprint "No information found or indicators desactivated."if ($nbL == 1);
4003
-
4004
-
subheaderprint "Performance schema: TOP 15 average latency queries (95% percentile)";
4005
-
$nbL=1;
4006
-
formy$lQuery(select_array ('use sys;select db, query, avg_latency AS search from statements_with_runtimes_in_95th_percentile ORDER BY avg_latency DESC LIMIT 15;')) {
4007
-
infoprint " +-- $nbL: $lQuery";
4008
-
$nbL++;
4009
-
}
4010
-
infoprint "No information found or indicators desactivated."if ($nbL == 1);
4011
-
4012
-
subheaderprint "Performance schema: XXXXXXX";
4013
-
$nbL=1;
4014
-
formy$lQuery(select_array ('select "none";')) {
4015
-
infoprint " +-- $nbL: $lQuery";
4016
-
$nbL++;
4017
-
}
4018
-
infoprint "No information found or indicators desactivated."if ($nbL == 1);
0 commit comments