Skip to content

Commit 2e4fe45

Browse files
authored
Fix max value for thread util % (#92)
1 parent e6ab862 commit 2e4fe45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coherence-visualvm-plugin/src/main/java/com/oracle/coherence/plugin/visualvm/tracer/service/SelectedServiceThreadUtilizationProbe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private static ProbeItemDescriptor[] createItemDescriptors()
7272
{
7373
ProbeItemDescriptor.continuousLineFillItem(Localization.getLocalText(LBL),
7474
getMonitorsString(LBL), ItemValueFormatter.DEFAULT_PERCENT,
75-
1d, 0, 0)
75+
1d, 0, 1000)
7676
};
7777
}
7878

0 commit comments

Comments
 (0)