56 lines
1.5 KiB
Handlebars
56 lines
1.5 KiB
Handlebars
{{#each @items as |item|}}
|
|
<a class="card"
|
|
href={{href-to "dc.services.show.index" item.Name}}
|
|
data-permission={{service/intention-permissions item}}
|
|
id="{{item.Namespace}}{{item.Name}}"
|
|
>
|
|
<p>
|
|
{{item.Name}}
|
|
</p>
|
|
<div class="details">
|
|
{{#if (and (and nspace (env 'CONSUL_NSPACES_ENABLED')) @type)}}
|
|
<dl class="nspace">
|
|
<dt>
|
|
<Tooltip>
|
|
Namespace
|
|
</Tooltip>
|
|
</dt>
|
|
<dd>
|
|
{{item.Namespace}}
|
|
</dd>
|
|
</dl>
|
|
{{/if}}
|
|
{{#if (eq item.Datacenter @dc)}}
|
|
{{#let (service/health-percentage item) as |percentage|}}
|
|
{{#if (not-eq percentage.passing 0)}}
|
|
<span class="passing">{{percentage.passing}}%</span>
|
|
{{/if}}
|
|
{{#if (not-eq percentage.warning 0)}}
|
|
<span class="warning">{{percentage.warning}}%</span>
|
|
{{/if}}
|
|
{{#if (not-eq percentage.critical 0)}}
|
|
<span class="critical">{{percentage.critical}}%</span>
|
|
{{/if}}
|
|
{{/let}}
|
|
{{else}}
|
|
<dl class="health">
|
|
<dt>
|
|
<Tooltip>
|
|
We are unable to determine the health status of services in remote datacenters.
|
|
</Tooltip>
|
|
</dt>
|
|
<dd>
|
|
Health
|
|
</dd>
|
|
</dl>
|
|
{{/if}}
|
|
</div>
|
|
{{#if @hasMetricsProvider }}
|
|
{{#if (eq @type 'upstream')}}
|
|
<TopologyMetrics::Stats @endpoint='upstream-summary-for-service' @service={{@service}} @item={{item.Name}} />
|
|
{{else}}
|
|
<TopologyMetrics::Stats @endpoint='downstream-summary-for-service' @service={{@service}} @item={{item.Name}} />
|
|
{{/if}}
|
|
{{/if}}
|
|
</a>
|
|
{{/each}} |