org.jppf.ui.options.xml.TopologyHealth.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jppf-admin Show documentation
Show all versions of jppf-admin Show documentation
JPPF, the open source grid computing solution
<?xml version="1.0" encoding="UTF-8"?> <!-- JPPF. Copyright (C) 2005-2015 JPPF Team. http://www.jppf.org Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!-- XML descriptor for the JVM health monitoring view of the admin console. --> <opt:main xmlns:opt="http://www.jppf.org/Options.xsd" name="health.page" type="page" i18n="org.jppf.ui.i18n.NodeDataPage"> <!--<property name="label" value="Graph View"/>--> <property name="layoutConstraints" value="flowy, fill, gap rel, insets 0"/> <property name="icon" value="/org/jppf/ui/resources/utilities-system-monitor-3.png"/> <property name="scrollable" value="true"/> <!-- ===================================================================== --> <!-- Toolbar --> <!-- ===================================================================== --> <child name="health.toolbar" type="page"> <property name="componentConstraints" value="gap rel"/> <property name="layoutConstraints" value="insets 4 2 0 2"/> <child name="health.gc" type="Button"/> <child name="health.thread.dump" type="Button"/> <child name="health.heap.dump" type="Button"/> <!-- <child name="sep2" type="ToolbarSeparator"/> <child name="health.button.refresh" type="Button"> <property name="icon" value="/org/jppf/ui/resources/refresh.gif"/> <listener type="script"> <script language="groovy"> def graph = option.findFirstWithName("/health.treetable"); //graph.populate(); </script> </listener> </child> --> <child name="sep2" type="ToolbarSeparator"/> <child name="health.update.thresholds" type="Button"/> <child name="sep3" type="ToolbarSeparator"/> <child name="health.expand" type="Button"> <property name="icon" value="/org/jppf/ui/resources/expand.gif"/> <listener type="script"> <script language="groovy">option.findFirstWithName("/health.treetable").getTreeTable().expandAll()</script> </listener> </child> <child name="health.collapse" type="Button"> <property name="icon" value="/org/jppf/ui/resources/collapse.gif"/> <listener type="script"> <script language="groovy">option.findFirstWithName("/health.treetable").getTreeTable().collapseAll()</script> </listener> </child> <child name="sep4" type="ToolbarSeparator"/> <child name="health.select.drivers" type="Button"/> <child name="health.select.nodes" type="Button"/> <child name="health.select.all" type="Button"/> <child name="sep5" type="ToolbarSeparator"/> <child name="health.show.hide" type="Button"/> </child> <!-- ===================================================================== --> <!-- Graph area --> <!-- ===================================================================== --> <child name="health.treeTableContainer" type="page"> <property name="layoutConstraints" value="fill, nogrid"/> <property name="componentConstraints" value="grow, span, push, width 0"/> <child name="health.treetable" type="Custom"> <property name="impl.class" value="org.jppf.ui.monitoring.diagnostics.JVMHealthPanel"/> <property name="componentConstraints" value="grow, width 0"/> <property name="value" value=""/> <initializer type="script"> <script language="groovy"> option.setupTableColumns(); option.loadThresholds(); option.setupActions(); option.init(); </script> </initializer> <finalizer type="script"> <script language="groovy">option.saveTableColumnsWidth();</script> </finalizer> </child> </child> </opt:main>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy