La tabella users del Performance Schema
Spiegazione
Per ogni utente che si connette al server viene scritta una nuova riga nella tabella users, insieme al numero di connessioni attuale e totale.
Le dimensioni della tabella sono determinate all'avvio dal valore della variabile di sistema performance_schema_users_size. Se è impostata a 0
, le statistiche sugli utenti sono disabilitate.
Colonna | Spiegazione |
---|---|
USER | Il nome utente usato dal client per connettersi, o NULL se è un thread interno. |
CURRENT_CONNECTIONS | Numero connessioni attive di questo utente. |
TOTAL_CONNECTIONS | Numero connessioni totali di questo utente. |
Esempio
SELECT * FROM performance_schema.users; +------------------+---------------------+-------------------+ | USER | CURRENT_CONNECTIONS | TOTAL_CONNECTIONS | +------------------+---------------------+-------------------+ | debian-sys-maint | 0 | 35 | | NULL | 20 | 23 | | root | 1 | 2 | +------------------+---------------------+-------------------+
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.