├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── nagios_plugins └── .gitignore ├── patches ├── README.md └── pt-kill_dynamic-time_2.1.1.patch ├── tcollector ├── .gitignore └── ptTcpModel.sh └── tools ├── README.md ├── db-strace-longest-trx.sh └── trx_monitor.pl /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/mysqlutilities/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/mysqlutilities/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/mysqlutilities/HEAD/README.md -------------------------------------------------------------------------------- /nagios_plugins/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/mysqlutilities/HEAD/patches/README.md -------------------------------------------------------------------------------- /patches/pt-kill_dynamic-time_2.1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/mysqlutilities/HEAD/patches/pt-kill_dynamic-time_2.1.1.patch -------------------------------------------------------------------------------- /tcollector/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tcollector/ptTcpModel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/mysqlutilities/HEAD/tcollector/ptTcpModel.sh -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/mysqlutilities/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/db-strace-longest-trx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/mysqlutilities/HEAD/tools/db-strace-longest-trx.sh -------------------------------------------------------------------------------- /tools/trx_monitor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/mysqlutilities/HEAD/tools/trx_monitor.pl --------------------------------------------------------------------------------