nmon is an OSS utility that collects and displays AIX and Linux performance and configuration information. Compatible with various Linux. Included with AIX. There is a CUI full screen mode and a mode to collect data.
There is nmon analyzer as a utility to display the data collected by nmon as a graph on MS Excel, but the operation could not be confirmed in Excel on MAC at this time.
By using nmonchart, it is possible to display graphs such as performance information from nmon data without using Excel even on MAC.
http://nmon.sourceforge.net/pmwiki.php?n=Site.Nmonchart
Graph display example (included in the above site)
https://github.com/aguther/nmonchart
# nmon -f -s 10 -c 120 -t
Output 120 times of information every 10 seconds to ./
Ksh required
##Get a git repository containing nmonchart scripts
$ git clone --depth 1 [email protected]:aguther/nmonchart.git
##Copy nmon data locally from the target machine
$ scp p8126a:p8126a_201111_1529.nmon .
##Run the script and create an html file
$ ksh nmonchart/nmonchart p8126a_201111_1529.nmon p8126a_201111_1529.nmon.html
##Display the created file in safari
$ open -a /Applications/Safari.app p8126a_201111_1529.nmon.html
Please note that the version is newer if you drop it with tar from the above site.
If you check the contents of the nmonchart script, it is assumed that it will be executed on AIX or Linux, so if there is a problem with execution on the MAC, it may be possible to avoid it by converting it to html on the nmon target node. There is.
Recommended Posts