Regarding my last post MySQL Administrator useful InnoDB graphs here are the explanations of some of the graphs.
idb storage page
- reads graph: number of reads; it monitors if the system is under heavy or light read access.
- pending reads graph: number of pending read requests to the underlying data file (the database must wait to gain access). If this value increases it could indicate serious contention issue. Seeing this graph always close to the bottom line it’s very good.
- writes graph: number of writes; it monitors if the system is under heavy or light write access.
- pending writes graph: number of pending write requests to the underlying data file. If this value climbs requires attention. Seeing this graph …