Web application for viewing and killing MySQL queries on multiple servers. Designed to work behind Sproxy.
MyWatch is written in Haskell with GHC. All required Haskell libraries are listed in mywatch.cabal. Use cabal-install to fetch and build all pre-requisites automatically.
$ git clone https://github.com/zalora/mywatch.git
$ cd mywatch
$ cabal install
Type mywatch --help
to see usage summary:
Usage:
mywatch [options] MYCNF
Options:
-d, --datadir=DIR Data directory including static files [default: {cabal data dir}]
-s, --socket=SOCK Listen on this UNIX-socket [default: /tmp/mywatch.sock]
-p, --port=PORT Instead of UNIX-socket, listen on this TCP port (localhost)
-h, --help Show this message
The MYCNF
argument denotes a MySQL client config file. Each section in this
file describes a MySQL server where you can view processes. As usually, the
"client" section applies internally to all other sections, but is ignored by
MyWatch. Remember to make this file secret if it includes passwords, or use the
!include
directive. However, MyWatch does not parse included files for
more sections.
[foo]
host = example.com
user = user1
...
[bar]
host = example.net
user = user2
...
!include /run/keys/my.secret.cnf
- To access the service allow
GET
for/
,/static/%
and/serverlist.json
. - To see processes on a particular MySQL server allow
GET
andHEAD
for/server/:server/processlist.json
. - To kill processes allow
DELETE
for/server/:server/process/%
MyWatch needs the PROCESS privilege.
To be able to kill queries a procedure named mywatch_kill
must exist
in the mysql
database. MyWatch invokes CALL mysql.mywatch_kill(id)
for killing queries. It's up to you how to implement this routine, for a
safe example see sql/mywatch_kill.sql. Of cource,
MyWatch should be granted to execute this procedure. If this procedure
does not exist, MyWatch will not show this possibility in user interface,
API will work, but result in Internal Server Error (HTTP 500). There is no
filtering at application level, though the "kill" button may not be shown
in some circumstances.