Server IP : 85.214.239.14 / Your IP : 3.147.68.18 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /var/www/wordpress/phpMyAdmin/templates/server/status/queries/ |
Upload File : |
{% extends 'server/status/base.twig' %} {% set active = 'queries' %} {% block content %} {% if is_data_loaded %} <h3 id="serverstatusqueries"> {% trans %} Questions since startup: {% notes %} Questions is the name of a MySQL Status variable {% endtrans %} {{ format_number(stats.total, 0) }} {{ show_mysql_docu('server-status-variables', false, null, null, 'statvar_Questions') }} </h3> <ul> <li>ø {% trans 'per hour:' %} {{ format_number(stats.per_hour, 0) }}</li> <li>ø {% trans 'per minute:' %} {{ format_number(stats.per_minute, 0) }}</li> {% if stats.per_second >= 1 %} <li>ø {% trans 'per second:' %} {{ format_number(stats.per_second, 0) }}</li> {% endif %} </ul> <table id="serverstatusqueriesdetails" class="width100 data sortable noclick"> <colgroup> <col class="namecol"> <col class="valuecol" span="3"> </colgroup> <thead> <tr> <th>{% trans 'Statements' %}</th> <th>{% trans %}#{% notes %}# = Amount of queries{% endtrans %}</th> <th>ø {% trans 'per hour' %}</th> <th>%</th> </tr> </thead> <tbody> {% for query in queries %} <tr> <th class="name">{{ query.name }}</th> <td class="value">{{ format_number(query.value, 5, 0, true) }}</td> <td class="value">{{ format_number(query.per_hour, 4, 1, true) }}</td> <td class="value">{{ format_number(query.percentage, 0, 2) }}</td> </tr> {% endfor %} </tbody> </table> <div id="serverstatusquerieschart" class="width100" data-chart="{{ chart|json_encode }}"></div> {% else %} {{ 'Not enough privilege to view query statistics.'|trans|error }} {% endif %} {% endblock %}