{% extends 'server/status/base.twig' %} {% set active = 'status' %} {% block content %} {% if is_data_loaded %}
{{ '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' %} |
---|---|---|
{{ each_traffic.name }} | {{ each_traffic.number }} | {{ each_traffic.per_hour }} |
{% trans 'Connections' %} | # | ø {% trans 'per hour' %} | % |
---|---|---|---|
{{ connection.name }} | {{ connection.number }} | {{ connection.per_hour }} | {{ connection.percentage }} |
{% 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 %}