github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/ui/app/templates/components/client-node-row.hbs (about) 1 <td data-test-icon class="is-narrow"> 2 {{#if this.node.unhealthyDrivers.length}} 3 <span class="tooltip text-center" role="tooltip" aria-label="Client has unhealthy drivers"> 4 {{x-icon "alert-triangle" class="is-warning"}} 5 </span> 6 {{/if}} 7 </td> 8 <td data-test-client-id><LinkTo @route="clients.client" @model={{this.node.id}} class="is-primary">{{this.node.shortId}}</LinkTo></td> 9 <td data-test-client-name class="is-200px is-truncatable" title="{{this.node.name}}">{{this.node.name}}</td> 10 <td data-test-client-composite-status> 11 <span class="tooltip" aria-label="{{this.node.status}} / {{if this.node.isDraining "draining" "not draining"}} / {{if this.node.isEligible "eligible" "not eligible"}}"> 12 <span class="{{this.compositeStatusClass}}">{{this.node.compositeStatus}}</span> 13 </span> 14 </td> 15 <td data-test-client-address>{{this.node.httpAddr}}</td> 16 <td data-test-client-datacenter>{{this.node.datacenter}}</td> 17 <td data-test-client-volumes>{{if this.node.hostVolumes.length this.node.hostVolumes.length}}</td> 18 <td data-test-client-allocations> 19 {{#if this.node.allocations.isPending}} 20 ... 21 {{else}} 22 {{this.node.runningAllocations.length}} 23 {{/if}} 24 </td>