comparison src/org/dancres/blitz/stats/IOStat.java @ 34:6f68e94c1fb8 default tip

Add CondensedStats monitoring utility, equivalent to vmstat
author Dominic Cleal <dominic-cleal@cdo2.com>
date Thu, 05 Aug 2010 11:07:25 +0100
parents 3dc0c5604566
children
comparison
equal deleted inserted replaced
33:0b9265358617 34:6f68e94c1fb8
44 44
45 public int getQueueSize() { 45 public int getQueueSize() {
46 return theQueueSize; 46 return theQueueSize;
47 } 47 }
48 48
49 public int getThrottleCount() {
50 return theThrottleCount;
51 }
52
49 public String toString() { 53 public String toString() {
50 return "IO TPI: " + theTimePerIn + " TPO: " + theTimePerOut + " IOR: " + 54 return "IO TPI: " + theTimePerIn + " TPO: " + theTimePerOut + " IOR: " +
51 theInOutRatio + " QSZ: " + theQueueSize + " THROTTLE: " + 55 theInOutRatio + " QSZ: " + theQueueSize + " THROTTLE: " +
52 theThrottleCount; 56 theThrottleCount;
53 } 57 }