open-consul/ui-v2/app/components/consul-service-list/index.hbs

79 lines
2.2 KiB
Handlebars
Raw Normal View History

{{#if (gt items.length 0)}}
<ListCollection @items={{items}} @linkable={{action "isLinkable"}} class="consul-service-list" as |item index|>
2020-06-17 09:25:54 +00:00
<BlockSlot @name="header">
<dl class={{item.MeshStatus}}>
<dt>
Health
</dt>
2020-06-17 09:25:54 +00:00
<dd>
<Tooltip @position="top-start">
{{#if (eq 'critical' item.MeshStatus)}}
2020-06-17 09:25:54 +00:00
At least one health check on one instance is failing.
{{else if (eq 'warning' item.MeshStatus)}}
2020-06-17 09:25:54 +00:00
At least one health check on one instance has a warning.
{{else if (eq 'passing' item.MeshStatus)}}
2020-06-17 09:25:54 +00:00
All health checks are passing.
{{else}}
There are no health checks.
{{/if}}
</Tooltip>
</dd>
</dl>
{{#if (gt item.InstanceCount 0)}}
{{#if (eq item.Kind 'terminating-gateway')}}
<a data-test-service-name href={{href-to "dc.services.show.services" item.Name}}>
{{item.Name}}
</a>
{{else if (eq item.Kind 'ingress-gateway')}}
<a data-test-service-name href={{href-to "dc.services.show.upstreams" item.Name}}>
{{item.Name}}
</a>
{{else}}
<a data-test-service-name href={{href-to "dc.services.show.instances" item.Name}}>
{{item.Name}}
</a>
{{/if}}
{{else}}
<p data-test-service-name>
{{item.Name}}
</p>
{{/if}}
2020-06-17 09:25:54 +00:00
</BlockSlot>
<BlockSlot @name="details">
{{#if (and nspace (env 'CONSUL_NSPACES_ENABLED'))}}
{{#if (not-eq item.Namespace nspace)}}
<dl class="nspace">
<dt>
<Tooltip>
Namespace
</Tooltip>
</dt>
<dd>
{{item.Namespace}}
</dd>
</dl>
{{/if}}
{{/if}}
<ConsulKind @item={{item}} />
<ConsulExternalSource @item={{item}} />
{{#if (not-eq item.InstanceCount 0)}}
<span>
{{format-number item.InstanceCount}} {{pluralize item.InstanceCount 'Instance' without-count=true}}
</span>
{{/if}}
{{#if item.Proxy}}
<dl class="proxy">
<dt>
<Tooltip>
This service uses a proxy for the Consul service mesh
</Tooltip>
</dt>
<dd data-test-proxy>
2020-06-17 09:25:54 +00:00
connected with proxy
</dd>
</dl>
{{/if}}
<TagList @item={{item}} />
2020-06-17 09:25:54 +00:00
</BlockSlot>
</ListCollection>
{{/if}}