Creating a Shared Context for Monitoring the Health of an Application

By: Johnathon Wright on: March 17, 2009

As part of my vital signs project, I'm building a framework for monitoring the health of an application based on various ways of 'taking its temperature'. Each vital sign will measure something specific (drive space left on the server,  database requests per second, etc.).  

The point of this project is to quickly give  any  viewer an idea of the health of the system. I mean  any  viewer. If the Grand Poobah in charge of Water Buffalo stops by, I want the new intern to be able to bring the VIP up to speed on the results immediately. 

Unfortunately, raw data requires too much context. Hard drive space is bad below 50,000 and db requests per second are bad above 150, and there are 10, 100 or 1000 metrics with different thresholds. While we do need to collect all this very disparate raw data, we  must  display results in that are simple and uniform.  

By convention, we'll report all results on a scale from 0 to 100: 100 => Optimal 75 .. 99 => Acceptable 50 .. 74 => Check Engine 25 .. 49 => Warning Will Robinson! 01 .. 24 => Critical 00 => Down

If a VP passes looks up at the 42-inch monitor in his office (which flashes charts and ... whatever ... ) and notices that db requests per second is at 30, I want that person to pick up the phone, call me, and say, "Hey, something's wrong." This is way better than hearing, "How could you let this happen? And why is 30,000 requests per second a problem, anyway?"

Hopefully the end result will look something like this: * Overall Health is Prominent (and uses Shared Context) * Nested Data uses Shared Context for Results * Color Coded for Additional Context * I would also like to see "Spark Lines":http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0001OR for historical context.

APPLICATION HEALTH: 70/100  84  Drive Space 92  DB Requests per Second 52  HTTP Request Time 64 Longest Running DB Request





Comments:

Just checking that you are human. What would be the result of this code?

a = 3*(4/2); b = 1; a+b

Back