Detailed Process Resource Monitoring

Usually we monitor processes with Nagios or Naemon but sometimes you want to have really detailed graphs of resource usage of single processes in realtime resolution. Maybe to find and visualize memory leaks or to watch resource usage over time. Nagios based solutions are not worth the effort since you probably just want to nail down a specific single problem. So i used this opportunity to write a small desktop application with node-webkit.

proc graph

Node-Webkit

Node-Webkit is a great tool, especially if you are used to write web applications and therefor html, javascript and css are well known already. You just create a normal webapplication in javascript which can be deployed later as standalone desktop application.

Another advantage is the huge amount of web libraries which can be used. In this case we make use of jQuery, Bootstrap and the Flot graphing library.

ProcGraph

This little tool runs top in the background to display a list of current processes. It’s possible to log into remote hosts via ssh and watch those processes too. After selecting the process of choice, procgraph will draw a realtime graph of the cpu and memory usage of this process.