{% extends "baseTemplate/index.html" %} {% load static %} {# MySQL Manager: server status + live process list. Administrator only -- #} {# see databases.views.admin_only / mysqlManager. #} {% block title %}MySQL Manager{% endblock %} {% block content %}

MySQL Manager

Live MariaDB status and connections. This page is administrator only: every row here belongs to the server, not to one customer.

MariaDB did not answer the status query. It may be down, or the panel's database account may be missing the PROCESS privilege.

{$ status.version || '—' $} Server version up {$ formatUptime(status.uptimeSeconds) $}
{$ status.connections || 0 $} Connections of {$ status.maxConnections $} allowed
{$ status.threadsRunning || 0 $} Threads running
{$ status.queriesPerSecond || 0 $} Queries / sec {$ status.questions || 0 $} total
{$ status.slowQueries || 0 $} Slow queries
{$ status.bufferPoolUsagePercent || 0 $}% InnoDB buffer pool used {$ status.bufferPoolSizeMB $} MB total

Process list

connections right now.

Loading…

No connections were reported.

Id User Host Database Command Time (s) State Info Actions
{$ proc.id $} {$ proc.user $} system {$ proc.host $} {$ proc.db || '—' $} {$ proc.command $} {$ proc.time $} {$ proc.state || '—' $} {$ (proc.info || '—').slice(0, 80) $}
{% endblock %} {% block scripts %} {% endblock %}