Skip to content

Instantly share code, notes, and snippets.

@alexcherkesov
Created May 11, 2018 09:56
Show Gist options
  • Save alexcherkesov/4fb2fb14aed818309419a4cecb2e96b0 to your computer and use it in GitHub Desktop.
Save alexcherkesov/4fb2fb14aed818309419a4cecb2e96b0 to your computer and use it in GitHub Desktop.
select
*
from
information_schema.processlist
where
ID <> connection_id() and
USER not in ('system user', 'repl', 'rdsrepladmin') and
COMMAND not in ('Sleep', 'Daemon')
order by
TIME desc;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment