123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- {{!
- * 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.
- }}
- <!-- Flume Agents -->
- <div id="flume-summary">
- <a href="#" {{action filterHosts view.flumeHandlerComponent}}>{{view.summaryHeader}}</a>
- <a href="#" class="pull-right" {{action gotoConfigs target="controller"}}>{{t dashboard.services.flume.summary.configure}}</a>
- <div id="flume-agent-table-wrap" class="scrollable-container">
- <table class="table table-hover table-bordered table-striped" id="flume-agents-table">
- <thead>
- {{#view view.sortView contentBinding="view.filteredContent" class="label-row"}}
- {{view view.parentView.hostSort}}
- <th>{{t dashboard.services.flume.agent}}</th>
- <th><i class="icon-signin" {{translateAttr title="dashboard.services.flume.sources"}}></i></th>
- <th><i class="icon-random" {{translateAttr title="dashboard.services.flume.channels"}}></i></th>
- <th><i class="icon-signout" {{translateAttr title="dashboard.services.flume.sinks"}}></i></th>
- {{/view}}
- </thead>
- {{#if view.pageContent}}
- {{#each host in view.pageContent}}
- <tbody class="flume-agent-table-tbody">
- {{#view view.agentView contentBinding="host"}}
- <td {{bindAttr rowspan="host.rowspan"}} id="flume-host-agent-row" class="agent-host-name">
- <a href="javascript:void(null)" {{action showDetails host.agents}}>
- {{host.hostName}}
- </a>
- </td>
- <td class="agent-status">
- <div class="wrapp-flume-status">
- <div class="pull-left"><span {{bindAttr class="host.firtstAgent.healthClass"}}></span> {{host.firtstAgent.name}}</div>
- <div class="btn-wrapper">
- <div class="btn-group display-inline-block flume-agents-actions">
- <a {{bindAttr class=":btn :dropdown-toggle"}} data-toggle="dropdown" href="javascript:void(null)">{{host.firtstAgent.displayStatus}}
- <span class="caret"></span>
- </a>
- <ul class="pull-left dropdown-menu">
- <li {{bindAttr class="host.firtstAgent.isStartAgentDisabled:disabled"}}>
- <a href="javascript:void(null)"
- {{bindAttr class="host.firtstAgent.isStartAgentDisabled:disabled"}}
- {{action startFlumeAgent host.firtstAgent target="controller"}}>
- {{t services.service.summary.flume.startAgent}}</a>
- </li>
- <li {{bindAttr class="host.firtstAgent.isStopAgentDisabled:disabled"}}>
- <a href="javascript:void(null)"
- {{bindAttr class="host.firtstAgent.isStopAgentDisabled:disabled"}}
- {{action stopFlumeAgent host.firtstAgent target="controller"}}>
- {{t services.service.summary.flume.stopAgent}}</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </td>
- <td>
- {{host.firtstAgent.sourcesCount}}
- </td>
- <td>
- {{host.firtstAgent.channelsCount}}
- </td>
- <td>
- {{host.firtstAgent.sinksCount}}
- </td>
- {{/view}}
- {{#each agent in host.otherAgents}}
- {{#view view.agentView contentBinding="host"}}
- <td class="agent-status">
- <div class="wrapp-flume-status">
- <div class="pull-left"><span {{bindAttr class="agent.healthClass"}}></span> {{agent.name}}</div>
- <div class="btn-wrapper">
- <div class="btn-group display-inline-block flume-agents-actions">
- <a {{bindAttr class=":btn :dropdown-toggle"}} data-toggle="dropdown" href="javascript:void(null)">{{agent.displayStatus}}
- <span class="caret"></span>
- </a>
- <ul class="pull-left dropdown-menu">
- <li {{bindAttr class="agent.isStartAgentDisabled:disabled"}}>
- <a href="javascript:void(null)"
- {{bindAttr class="agent.isStartAgentDisabled:disabled"}}
- {{action startFlumeAgent agent target="controller"}}>
- {{t services.service.summary.flume.startAgent}}</a>
- </li>
- <li {{bindAttr class="agent.isStopAgentDisabled:disabled"}}>
- <a href="javascript:void(null)"
- {{bindAttr class="agent.isStopAgentDisabled:disabled"}}
- {{action stopFlumeAgent agent target="controller"}}>
- {{t services.service.summary.flume.stopAgent}}</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </td>
- <td class="flume-agent-sources-count">
- {{agent.sourcesCount}}
- </td>
- <td class="flume-agent-channels-count">
- {{agent.channelsCount}}
- </td>
- <td class="flume-agent-sink-count">
- {{agent.sinksCount}}
- </td>
- {{/view}}
- {{/each}}
- </tbody>
- {{/each}}
- {{else}}
- <tr>
- <td colspan="6" id="flume-agents-empty-label" class="empty-label">
- {{t services.service.summary.flume.noAgents}}
- </td>
- </tr>
- {{/if}}
- </table>
- </div>
- </div>
|