/usr/share/phpmyadmin/templates/server/status/status
Edit: /usr/share/phpmyadmin/templates/server/status/status/index.twig (2664B)
{% extends 'server/status/base.twig' %}
{% set active = 'status' %}
{% block content %}
{% if is_data_loaded %}
{{ 'Network traffic since startup: %s'|trans|format(network_traffic) }}
{{ 'This MySQL server has been running for %1$s. It started up on %2$s.'|trans|format(uptime, start_time) }}
|
{% trans 'Traffic' %}
{{ show_hint('On a busy server, the byte counters may overrun, so those statistics as reported by the MySQL server may be incorrect.'|trans) }}
|
# |
{% trans 'ø per hour' %} |
{% for each_traffic in traffic %}
| {{ each_traffic.name }} |
{{ each_traffic.number }} |
{{ each_traffic.per_hour }} |
{% endfor %}
| {% trans 'Connections' %} |
# |
{% trans 'ø per hour' %} |
% |
{% for connection in connections %}
| {{ connection.name }} |
{{ connection.number }} |
{{ connection.per_hour }} |
{{ connection.percentage }} |
{% endfor %}
{% if is_master or is_slave %}
{% if is_master and is_slave %}
{% trans 'This MySQL server works as master and slave in replication process.' %}
{% elseif is_master %}
{% trans 'This MySQL server works as master in replication process.' %}
{% elseif is_slave %}
{% trans 'This MySQL server works as slave in replication process.' %}
{% endif %}
{% trans 'Replication status' %}
{{ replication|raw }}
{% endif %}
{% else %}
{{ 'Not enough privilege to view server status.'|trans|error }}
{% endif %}
{% endblock %}