123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <!--
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- */
- -->
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:include href="dfsclusterhealth_utils.xsl" />
- <xsl:output method="html" encoding="UTF-8" />
- <xsl:template match="/">
- <html>
- <head>
- <link rel="stylesheet" type="text/css" href="static/hadoop.css" />
- <title>
- Hadoop cluster
- <xsl:value-of select="cluster/@clusterId" />
- </title>
- </head>
- <body>
- <h1>
- Cluster '
- <xsl:value-of select="cluster/@clusterId" />
- '
- </h1>
- <h2>Decommissioning Status</h2>
- <xsl:if test="count(cluster/decommissioningReport/item)">
- <div id="dfstable">
- <table>
- <tbody>
- <xsl:for-each select="cluster/decommissioningReport/item">
- <tr class="rowNormal">
- <td id="col1">
- <xsl:value-of select="@label" />
- </td>
- <td id="col2">:</td>
- <td id="col3">
- <xsl:value-of select="@value" />
- </td>
- </tr>
- </xsl:for-each>
- </tbody>
- </table>
- </div>
- <br />
- </xsl:if>
- <xsl:if test="count(cluster/datanodes/node)">
- <div id="dfstable">
- <table border="1" cellpadding="10" cellspacing="0">
- <thead>
- <xsl:for-each select="cluster/datanodes/node[1]/item">
- <th>
- <xsl:value-of select="@label" />
- </th>
- </xsl:for-each>
- </thead>
- <tbody>
- <xsl:for-each select="cluster/datanodes/node">
- <tr>
- <xsl:for-each select="item">
- <td>
- <xsl:call-template name="displayValue">
- <xsl:with-param name="value">
- <xsl:value-of select="@value" />
- </xsl:with-param>
- <xsl:with-param name="unit">
- <xsl:value-of select="@unit" />
- </xsl:with-param>
- <xsl:with-param name="link">
- <xsl:value-of select="@link" />
- </xsl:with-param>
- </xsl:call-template>
- </td>
- </xsl:for-each>
- </tr>
- </xsl:for-each>
- </tbody>
- </table>
- </div>
- </xsl:if>
- <xsl:if test="count(cluster/unreportedNamenodes/node)">
- <h2>Unreported Namenodes</h2>
- <div id="dfstable">
- <table border="1" cellpadding="10" cellspacing="0">
- <tbody>
- <xsl:for-each select="cluster/unreportedNamenodes/node">
- <tr class="rowNormal">
- <td id="col1">
- <xsl:value-of select="@name" />
- </td>
- <td id="col2">
- <xsl:value-of select="@exception" />
- </td>
- </tr>
- </xsl:for-each>
- </tbody>
- </table>
- </div>
- </xsl:if>
- <xsl:if test="count(cluster/message/item)">
- <h4>Exception</h4>
- <xsl:for-each select="cluster/message/item">
- <xsl:value-of select="@msg" />
- </xsl:for-each>
- </xsl:if>
- </body>
- </html>
- </xsl:template>
- </xsl:stylesheet>
|