12

What tools do you use to monitor the health of your MySQL server instance? Are they for free or commercial?

HopelessN00b
  • 53,795
  • 33
  • 135
  • 209
Sebastian Hoitz
  • 3,169
  • 3
  • 24
  • 19

17 Answers17

10

Try MySQL Cacti Templates.

andyhky
  • 2,732
  • 2
  • 25
  • 26
6

mytop provides some handy CLI info, it's free (*unix only).

Adam Gibbins
  • 7,317
  • 2
  • 29
  • 42
2

Mysql has a free one called Mysql Administrator which is part of the mysql GUI tools package.

Mysql Administrator connection documentation.

There is also the Mysql Enterprise Monitor which has many more monitoring features. You can monitor Mysql on other servers see faq question 7.

Mark
  • 754
  • 1
  • 7
  • 12
1

innotop has been fantastic for monitoring. i believe its recommended in both editions of high performance mysql.

matt
  • 129
  • 1
  • 5
1

I like SQLyog for remote administration of mySQL. Nice GUI environment, and there is a free community edition.

This company also makes MONyog, a mySQL monitoring solution, but it's not free and I haven't played with it.

Simon Gillbee
  • 416
  • 1
  • 5
  • 10
1

As basic as it is, I've used:

$ watch -n1 "mysqladmin processlist -u root -pYouWillNeverGuessThis"

This provides me with a list of connections, users, hosts, databases, commands etc, updated every second. It's a real-time "who's doing what right now?" solution.

Very simple, but also useful.

mlambie
  • 1,221
  • 2
  • 16
  • 22
1

I have a custom Zabbix configuration for extracting useful data points from MySQL. I should get around to opening these scripts up to the community.

Jon Topper
  • 802
  • 9
  • 17
1

Apart from running cacti to graph the mysql performance over time, we have mysqltuner.com setup to send us a daily report of any variables on the server we should be keeping an eye on.

Rodney Amato
  • 196
  • 1
  • 3
0

I use a cronjob running every 5 minutes with mysqladmin processlist. See also this question .

In addition, phpMyAdmin has some monitoring features.

Palmin
  • 350
  • 6
  • 10
0

Cacti, as mentioned above. Also mytop sometimes to monitor current activity.

talonx
  • 313
  • 2
  • 12
0

Basic monitoring via the nagios nagios_mysql plugin, added a small custom script to monitor slaves status and slavelag.

Karsten
  • 318
  • 3
  • 11
0

It's not strictly monitoring but you can use mysqlreport to have a good overview of how well your mysql server is performing and if it is properly configured.

http://hackmysql.com/mysqlreport

Guillaume
  • 136
  • 1
0

Actually it depends on the database(s) that is running on the sever.

I usually check for the

  • number of queries
    • depending on database
  • indexes
  • slow query log
  • mysqlping
  • mysql connection from a remote host to a certain database
    • check that it works from the right hosts
    • check that it fails from the right hosts
  • select the current time to be sure it's correct
  • select for collations/encodings
  • connected users

on the framework side I'm using munin for everything that could give me metrics and nagios (soon to be icinga) for everything that gives me status information.

serverhorror
  • 6,478
  • 2
  • 25
  • 42
0

For more comprehensive monitoring of MySQL (but commercial, so only if your database is worth it) check out www.LogicMonitor.com. No configuration required (detects storage engine types, replication status, etc); provides tuning recommendations; full historical graphing and alerting in one system; very extensible, and will monitor the rest of your datacenter infrastructure.

0

We use hyperic, it is an open source application, but there is a commercial product as well if you want. It also monitors the operating system, web servers etc.

David Rabinowitz
  • 135
  • 1
  • 11
0

Don't forget to monitor the underlying platform. I would monitor

  • IOPS on the log, data and tmp devices (you do have those on three seperate LUNs don't you ?)
  • Swapping (more than a few pages / second is bad for mysql, google "mysql swappiness" to find out why)
  • Memory statistics for the host OS. A general rule of thumb I follow is to allocate no more than 80% to the mysql process to leave some room for the OS and the buffer cache

You can use SNMP and Cacti to monitor all of these things

Dave Cheney
  • 18,567
  • 8
  • 49
  • 56
0

mtop is great for monitoring current running queries and system variables.

Will Glass
  • 927
  • 2
  • 12
  • 21