/usr/share/phpmyadmin/templates/sql
NameSizeModeActions
bookmark.twig13760644editdlrm
enum_column_dropdown.twig1940644editdlrm
no_results_returned.twig5060644editdlrm
profiling_chart.twig28150644editdlrm
query.twig99920644editdlrm
relational_column_dropdown.twig2070644editdlrm
set_column.twig3150644editdlrm
sql_query_results.twig2420644editdlrm
Edit: /usr/share/phpmyadmin/templates/sql/profiling_chart.twig (2815B)
{% trans 'Profiling' %}

{% trans 'Detailed profile' %}

{% for state in profiling.profile %} {% endfor %}
{% trans 'Order' %}
{% trans 'State' %}
{% trans 'Time' %}
{{ loop.index }} {{ state.status }} {{ state.duration }}s {{ state.duration_raw }}

{% trans 'Summary by state' %}{{ show_mysql_docu('general-thread-states') }}

{% for name, stats in profiling.states %} {% endfor %}
{% trans 'State' %}
{% trans 'Total Time' %}
{% trans '% Time' %}
{% trans 'Calls' %}
{% trans 'ø Time' %}
{{ name }} {{ format_number(stats.total_time, 3, 1) }}s {{ stats.total_time }} {{ format_number(100 * (stats.total_time / profiling.total_time), 0, 2) }}% {{ stats.calls }} {{ format_number(stats.total_time / stats.calls, 3, 1) }}s {{ (stats.total_time / stats.calls)|number_format(8, '.', '') }}
{{- profiling.chart|json_encode() -}}