JDK-6471936 : CPU usage graph is inappropriately quantized
  • Type: Bug
  • Component: tools
  • Sub-Component: jconsole
  • Affected Version: 6
  • Priority: P4
  • Status: Closed
  • Resolution: Duplicate
  • OS: generic
  • CPU: generic
  • Submitted: 2006-09-18
  • Updated: 2010-07-29
  • Resolved: 2006-11-15
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 7
7Resolved
Related Reports
Duplicate :  
Description
JConsole includes a graph of CPU usage in JDK 6.  The plotted values are in per cent.  The instantaneous value shown at the bottom of this graph has a precision of two decimal places in the per cent (for example, 7.98%) but the actual value that is graphed is rounded to the nearest integer per cent (for example, 8%).  This has the result of showing an artificially stepped graph.  The stepping does not correspond to anything that is really happening in the monitored JVM.

It seems that the graphed value should either be a float-point value or (if we only know how to graph integers) it should be (say) 100 times the real per cent value that is then reduced back into a per cent.  For example, we could tell the plotter to graph 798 but show that as 7.98%.

Comments
EVALUATION See bug 6471559, which is fixed as suggested here in the description.
15-11-2006