github.com/manicqin/nomad@v0.9.5/ui/app/templates/components/client-node-row.hbs (about)

     1  <td data-test-icon class="is-narrow">
     2    {{#if node.unhealthyDrivers.length}}
     3      <span class="tooltip text-center" role="tooltip" aria-label="Client has unhealthy drivers">
     4        {{x-icon "warning" class="is-warning"}}
     5      </span>
     6    {{/if}}
     7  </td>
     8  <td data-test-client-id>{{#link-to "clients.client" node.id class="is-primary"}}{{node.shortId}}{{/link-to}}</td>
     9  <td data-test-client-name class="is-200px is-truncatable" title="{{node.name}}">{{node.name}}</td>
    10  <td data-test-client-composite-status>
    11    <span class="tooltip" aria-label="{{node.status}} / {{if node.isDraining "draining" "not draining"}} / {{if node.isEligible "eligible" "not eligible"}}">
    12      <span class="{{compositeStatusClass}}">{{node.compositeStatus}}</span>
    13    </span>
    14  </td>
    15  <td data-test-client-address>{{node.httpAddr}}</td>
    16  <td data-test-client-datacenter>{{node.datacenter}}</td>
    17  <td data-test-client-allocations>
    18    {{#if node.allocations.isPending}}
    19      ...
    20    {{else}}
    21      {{node.allocations.length}}
    22    {{/if}}
    23  </td>