Performance Schema accounts Table

You are viewing an old version of this article. View the current version here.
MariaDB starting with 10.0

The accounts table, along with many other new Performance Schema tables, was added in MariaDB 10.0

Description

Each account that connects to the server is stored as a row in the accounts table, along with current and total connections.

The table size is determined at startup by the value of the performance_schema_accounts_size system variable. If this is set to 0, account statistics will be disabled.

ColumnDescription
USERThe connection's client user name for the connection, or NULL if an internal thread.
HOSTThe connection client's host name, or NULL if an internal thread.
CURRENT_CONNECTIONSCurrent connections for the account.
TOTAL_CONNECTIONSTotal connections for the account.

The USER and HOST values shown here are the username and host used for user connections, not the patterns used to check permissions.

Example

SELECT * FROM performance_schema.accounts;
+------------------+-----------+---------------------+-------------------+
| USER             | HOST      | CURRENT_CONNECTIONS | TOTAL_CONNECTIONS |
+------------------+-----------+---------------------+-------------------+
| root             | localhost |                   1 |                 2 |
| NULL             | NULL      |                  20 |                23 |
| debian-sys-maint | localhost |                   0 |                35 |
+------------------+-----------+---------------------+-------------------+

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.