Module monitors one or more mysql servers
Requirements:
It will produce following charts (if data is available):
- Bandwidth in kilobits/s
- in
- out
- Queries in queries/sec
- queries
- questions
- slow queries
- Queries By Type in queries/s
- select
- delete
- update
- insert
- cache hits
- replace
- Handlerse in handlers/s
- commit
- delete
- prepare
- read first
- read key
- read next
- read prev
- read rnd
- read rnd next
- rollback
- savepoint
- savepoint rollback
- update
- write
- Table Locks in locks/s
- immediate
- waited
- Table Select Join Issuess in joins/s
- full join
- full range join
- range
- range check
- scan
- Table Sort Issuess in joins/s
- merge passes
- range
- scan
- Tmp Operations in created/s
- disk tables
- files
- tables
- Connections in connections/s
- all
- aborted
- Connections Active in connections/s
- active
- limit
- max active
- Binlog Cache in threads
- disk
- all
- Threads in transactions/s
- connected
- cached
- running
- Threads Creation Rate in threads/s
- created
- Threads Cache Misses in misses
- misses
- InnoDB I/O Bandwidth in KiB/s
- read
- write
- InnoDB I/O Operations in operations/s
- reads
- writes
- fsyncs
- InnoDB Pending I/O Operations in operations/s
- reads
- writes
- fsyncs
- InnoDB Log Operations in operations/s
- waits
- write requests
- writes
- InnoDB OS Log Pending Operations in operations
- fsyncs
- writes
- InnoDB OS Log Operations in operations/s
- fsyncs
- InnoDB OS Log Bandwidth in KiB/s
- write
- InnoDB Current Row Locks in operations
- current waits
- InnoDB Row Operations in operations/s
- inserted
- read
- updated
- deleted
- InnoDB Buffer Pool Pagess in pages
- data
- dirty
- free
- misc
- total
- InnoDB Buffer Pool Flush Pages Requests in requests/s
- flush pages
- InnoDB Buffer Pool Bytes in MiB
- data
- dirty
- InnoDB Buffer Pool Operations in operations/s
- disk reads
- wait free
- QCache Operations in queries/s
- hits
- lowmem prunes
- inserts
- no caches
- QCache Queries in Cache in queries
- queries
- QCache Free Memory in MiB
- free
- QCache Memory Blocks in blocks
- free
- total
- MyISAM Key Cache Blocks in blocks
- unused
- used
- not flushed
- MyISAM Key Cache Requests in requests/s
- reads
- writes
- MyISAM Key Cache Requests in requests/s
- reads
- writes
- MyISAM Key Cache Disk Operations in operations/s
- reads
- writes
- Open Files in files
- files
- Opened Files Rate in files/s
- files
- Binlog Statement Cache in statements/s
- disk
- all
- Connection Errors in errors/s
- accept
- internal
- max
- peer addr
- select
- tcpwrap
- Slave Behind Seconds in seconds
- time
- I/O / SQL Thread Running State in bool
- sql
- io
- Replicated Writesets in writesets/s
- rx
- tx
- Replicated Bytes in KiB/s
- rx
- tx
- Galera Queue in writesets
- rx
- tx
- Replication Conflicts in transactions
- bf aborts
- cert fails
- Flow Control in ms
- paused
You can provide, per server, the following:
- username which have access to database (defaults to 'root')
- password (defaults to none)
- mysql my.cnf configuration file
- mysql socket (optional)
- mysql host (ip or hostname)
- mysql port (defaults to 3306)
- ssl connection parameters
- key: the path name of the client private key file.
- cert: the path name of the client public key certificate file.
- ca: the path name of the Certificate Authority (CA) certificate file. This option, if used, must specify the same certificate used by the server.
- capath: the path name of the directory that contains trusted SSL CA certificate files.
- cipher: the list of permitted ciphers for SSL encryption.
Here is an example for 3 servers:
update_every : 10
priority : 90100
local:
'my.cnf' : '/etc/mysql/my.cnf'
priority : 90000
local_2:
user : 'root'
pass : 'blablablabla'
socket : '/var/run/mysqld/mysqld.sock'
update_every : 1
remote:
user : 'admin'
pass : 'bla'
host : 'example.org'
port : 9000
If no configuration is given, module will attempt to connect to mysql server via unix socket at /var/run/mysqld/mysqld.sock
without password and with username root