123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- {{!
- * 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.
- }}
- <div class="links">
- <ul>
- <li class="thumbnail row">
- <a {{bindAttr class=":corner-icon :span1 view.parentView.isMoving:hidden"}} href="#" {{action deleteWidget target="view"}}>
- <i class="icon-remove-sign icon-large"></i>
- </a>
- <div class="caption span10"> {{view.title}}</div>
- <div class="widget-content" >
- {{#if view.isHAEnabled }}
- <table>
- <!--Active NameNode-->
- <tr class="active-namenode-link">
- {{#if view.isActiveNNValid}}
- <td><a href="#" {{action showDetails view.model.activeNameNode.host}}>{{t dashboard.widgets.HDFSLinks.activeNameNode}}</a></td>
- {{else}}
- <td><a class="disabled-hdfs-link">{{t dashboard.widgets.HDFSLinks.activeNameNode}}</a></td>
- {{/if}}
- </tr>
- <!--Standby NameNodes-->
- <tr class="standby-namenode-link">
- {{#if view.isStandbyNNValid}}
- {{#if view.isTwoStandbyNN}}
- <!--Two Standby NameNodes-->
- <td><a href="#" {{action filterHosts view.twoStandbyComponent}}>{{t dashboard.widgets.HDFSLinks.standbyNameNodes}}</a></td>
- {{else}}
- <!--One Standby NameNode-->
- <td><a href="#" {{action showDetails view.model.standbyNameNode.host}}>{{t dashboard.widgets.HDFSLinks.standbyNameNode}}</a></td>
- {{/if}}
- {{else}}
- <td><a class="disabled-hdfs-link">{{t dashboard.widgets.HDFSLinks.standbyNameNode}}</a></td>
- {{/if}}
- </tr>
- <!--Data Nodes-->
- <tr class="datanode-link">
- <td>
- <a href="#" {{action filterHosts view.component}}>{{view.model.dataNodesTotal}} {{t dashboard.services.hdfs.datanodes}}</a>
- </td>
- </tr>
- </table>
- {{else}}
- <table>
- <!--NameNode-->
- <tr class="namenode-link">
- <td><a href="#" {{action showDetails view.model.nameNode.host}}>{{t dashboard.services.hdfs.nanmenode}}</a></td>
- </tr>
- <!--SecondaryNameNode-->
- <tr class="secondary-namenode-link">
- <td><a href="#" {{action showDetails view.model.snameNode.host}}>{{t dashboard.services.hdfs.snanmenode}}</a></td>
- </tr>
- <!--Data Nodes-->
- <tr class="datanode-link">
- <td>
- <a href="#" {{action filterHosts view.component}}>{{view.model.dataNodesTotal}} {{t dashboard.services.hdfs.datanodes}}</a>
- </td>
- </tr>
- </table>
- {{/if}}
- </div>
- <div class="link-button">
- {{#if view.model.quickLinks.length}}
- {{#view App.QuickLinksView contentBinding="view.model"}}
- <div class="btn-group">
- <a class="btn btn-mini dropdown-toggle" data-toggle="dropdown" href="#">
- {{t common.more}}
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu">
- {{#if view.isLoaded}}
- {{#if view.quickLinksArray}}
- <!--there are multiple masters eg, HBase multiple masters or HDFS HA enabled-->
- {{#each quickLinks in view.quickLinksArray}}
- <li class="dropdown-submenu">
- <a href="javascript:void(null)">{{quickLinks.publicHostNameLabel}} </a>
- <ul class="dropdown-menu">
- {{#each quickLinks}}
- <li><a {{bindAttr href="url"}} target="_blank">{{label}}</a></li>
- {{/each}}
- </ul>
- </li>
- {{/each}}
- {{else}}
- {{#each view.quickLinks}}
- <li><a {{bindAttr href="url"}} target="_blank">{{label}}</a></li>
- {{/each}}
- {{/if}}
- {{else}}
- {{view App.SpinnerView}}
- {{/if}}
- </ul>
- </div>
- {{/view}}
- {{/if}}
- </div>
- </li>
- </ul>
- </div>
|