{% 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_primary and is_replica %} {% trans 'This MySQL server works as primary and replica in replication process.' %} {% elseif is_primary %} {% trans 'This MySQL server works as primary in replication process.' %} {% elseif is_replica %} {% trans 'This MySQL server works as replica in replication process.' %} {% endif %}