[Mc4j-cvs] mc4j/application/dashboards/jre15 JRE15_Logging.xml,NONE,1.1 JRE15_SystemInfo.xml,1.3,1.4
Brought to you by:
ghinkl
From: Greg H. <gh...@us...> - 2006-05-22 02:38:56
|
Update of /cvsroot/mc4j/mc4j/application/dashboards/jre15 In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv32360/application/dashboards/jre15 Modified Files: JRE15_SystemInfo.xml JRE15_Deadlock.xml Added Files: JRE15_Logging.xml Log Message: Visual tweaks Index: JRE15_Deadlock.xml =================================================================== RCS file: /cvsroot/mc4j/mc4j/application/dashboards/jre15/JRE15_Deadlock.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** JRE15_Deadlock.xml 12 Apr 2006 19:14:01 -0000 1.2 --- JRE15_Deadlock.xml 22 May 2006 02:38:52 -0000 1.3 *************** *** 3,24 **** <Dashboard version="2.0" name="Deadlock" autoRefresh="true" refreshControl="true" standardHeader="true"> - - <Description>Deadlocked threads.</Description> - - <DashboardMatch type="Global" location="/JVM"> - <BeanMatch id="threadingBean" type="Single"> - <Condition type="BeanObjectNameRegexCondition" filter="type=Threading"/> - </BeanMatch> - </DashboardMatch> ! <LayoutManager type="java.awt.BorderLayout"/> ! <Content> ! <Component type="org.mc4j.jre15.components.DeadlockDetectionComponent"> ! <Attribute name="bean" value="threadingBean"/> ! </Component> ! </Content> </Dashboard> --- 3,22 ---- <Dashboard version="2.0" name="Deadlock" autoRefresh="true" refreshControl="true" standardHeader="true"> ! <Description>Deadlocked threads.</Description> + <DashboardMatch type="Global" location="/JVM"> + <BeanMatch id="Threading" type="Single"> + <Condition type="BeanObjectNameRegexCondition" filter="type=Threading"/> + </BeanMatch> + </DashboardMatch> + <LayoutManager type="java.awt.BorderLayout"/> + <Content> ! <Component type="org.mc4j.jre15.components.DeadlockDetectionComponent"> ! <Attribute name="bean" value="#Threading"/> ! </Component> ! </Content> </Dashboard> Index: JRE15_SystemInfo.xml =================================================================== RCS file: /cvsroot/mc4j/mc4j/application/dashboards/jre15/JRE15_SystemInfo.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** JRE15_SystemInfo.xml 17 Apr 2006 03:07:26 -0000 1.3 --- JRE15_SystemInfo.xml 22 May 2006 02:38:52 -0000 1.4 *************** *** 26,33 **** <Condition type="BeanObjectNameRegexCondition" filter="java.lang"/> </BeanMatch> ! <BeanMatch id="Compilation" type="Single"> <Condition type="BeanObjectNameRegexCondition" filter="type=Compilation"/> <Condition type="BeanObjectNameRegexCondition" filter="java.lang"/> ! </BeanMatch> <BeanMatch id="garbageCollectors" type="Multiple"> <Condition type="BeanObjectNameRegexCondition" filter="type=GarbageCollector"/> --- 26,33 ---- <Condition type="BeanObjectNameRegexCondition" filter="java.lang"/> </BeanMatch> ! <!--<BeanMatch id="Compilation" type="Single"> <Condition type="BeanObjectNameRegexCondition" filter="type=Compilation"/> <Condition type="BeanObjectNameRegexCondition" filter="java.lang"/> ! </BeanMatch>--> <BeanMatch id="garbageCollectors" type="Multiple"> <Condition type="BeanObjectNameRegexCondition" filter="type=GarbageCollector"/> *************** *** 84,88 **** <tr> <td align="right"><b>Total classes loaded:</b></td><td> ${ClassLoading.TotalLoadedClassCount}</td> ! <td align="right"><b>Compile time:</b></td><td> ${#format.timeMillis(Compilation.TotalCompilationTime)}</td> </tr> --- 84,88 ---- <tr> <td align="right"><b>Total classes loaded:</b></td><td> ${ClassLoading.TotalLoadedClassCount}</td> ! <td align="right"><!-- not on jd6? <b>Compile time:</b></td><td> ${#format.timeMillis(Compilation.TotalCompilationTime)}--></td> </tr> --- NEW FILE: JRE15_Logging.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE Dashboard PUBLIC "-//MC4J//DTD Dashboard 2.0//EN" "http://mc4j.org/Dashboard_2_0.dtd"> <Dashboard version="2.0" name="Logging" autoRefresh="true" refreshControl="true" standardHeader="true"> <Description>JDK Loggers and Levels</Description> <DashboardMatch type="Global" location="/JVM"> <BeanMatch id="Logging" type="Single"> <Condition type="BeanObjectNameCondition" filter="java.util.logging:type=Logging"/> </BeanMatch> </DashboardMatch> <LayoutManager type="java.awt.BorderLayout"/> <Content> <Component type="org.mc4j.jre15.components.LogManager"> <Attribute name="bean" value="#Logging"/> </Component> </Content> </Dashboard> |