|
@@ -17,7 +17,7 @@
|
|
|
}}
|
|
|
|
|
|
<div class="row">
|
|
|
- <div class="col-lg-12">
|
|
|
+ <div class="col-lg-12 col-md-12">
|
|
|
<div class="row">
|
|
|
{{#if (eq model.queues.firstObject.type "capacity")}}
|
|
|
{{yarn-queue.capacity-queue-info model=model}}
|
|
@@ -28,7 +28,7 @@
|
|
|
{{/if}}
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="col-lg-12 yarn-applications-container">
|
|
|
+ <div class="col-lg-12 col-md-12 yarn-applications-container">
|
|
|
{{#if model.apps}}
|
|
|
{{em-table columns=columns rows=model.apps definition=tableDefinitio}}
|
|
|
{{else}}
|
|
@@ -38,4 +38,47 @@
|
|
|
</div>
|
|
|
{{/if}}
|
|
|
</div>
|
|
|
+ {{!-- Active User Info --}}
|
|
|
+ {{#if model.selectedQueue.users}}
|
|
|
+ <div class="col-lg-12 col-md-12">
|
|
|
+ <div class="panel panel-default active-user-panel">
|
|
|
+ <div class="panel-heading">
|
|
|
+ Active User Info: {{ model.selected }}
|
|
|
+ </div>
|
|
|
+ <div class="panel-body">
|
|
|
+ <table class="table table-striped table-bordered active-user-table">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th>User Name</th>
|
|
|
+ <th>Max Resource</th>
|
|
|
+ <th>Used Resource</th>
|
|
|
+ <th>Max AM Resource</th>
|
|
|
+ <th>Used AM Resource</th>
|
|
|
+ <th>Active Apps</th>
|
|
|
+ <th>Pending Apps</th>
|
|
|
+ <th>Weight</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ <tr style="display: none">
|
|
|
+ {{!-- Fix to start odd row background color from third row --}}
|
|
|
+ </tr>
|
|
|
+ {{#each model.selectedQueue.users as |user|}}
|
|
|
+ <tr>
|
|
|
+ <td>{{ user.name }}</td>
|
|
|
+ <td><memory: {{user.maxMemoryMB}} MB, vCores: {{user.maxVCore}}></td>
|
|
|
+ <td><memory: {{user.usedMemoryMB}} MB, vCores: {{user.usedVCore}}></td>
|
|
|
+ <td><memory: {{user.maxAMMemoryMB}} MB, vCores: {{user.maxAMVCore}}></td>
|
|
|
+ <td><memory: {{user.amUsedMemoryMB}} MB, vCores: {{user.amUsedVCore}}></td>
|
|
|
+ <td>{{user.activeApps}}</td>
|
|
|
+ <td>{{user.pendingApps}}</td>
|
|
|
+ <td>{{user.userWeight}}</td>
|
|
|
+ </tr>
|
|
|
+ {{/each}}
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ {{/if}}
|
|
|
</div>
|