2020-04-22 14:40:59 +00:00
|
|
|
<div id="health-checks" class="tab-section">
|
|
|
|
<div role="tabpanel">
|
|
|
|
{{#if (gt item.ServiceChecks.length 0) }}
|
|
|
|
<section data-test-service-checks>
|
2020-06-16 13:13:29 +00:00
|
|
|
<HealthcheckList @items={{sort-by (comparator 'check' 'Status:asc') item.ServiceChecks}} @exposed={{proxy.ServiceProxy.Expose.Checks}} />
|
2020-04-22 14:40:59 +00:00
|
|
|
</section>
|
|
|
|
{{else}}
|
|
|
|
<p>
|
|
|
|
This instance has no service health checks.
|
|
|
|
</p>
|
|
|
|
{{/if}}
|
|
|
|
{{#if (gt item.NodeChecks.length 0) }}
|
|
|
|
<section data-test-node-checks>
|
2020-06-16 13:13:29 +00:00
|
|
|
<HealthcheckList @items={{sort-by (comparator 'check' 'Status:asc') item.NodeChecks}} />
|
2020-04-22 14:40:59 +00:00
|
|
|
</section>
|
|
|
|
{{else}}
|
|
|
|
<p>
|
|
|
|
This instance has no node health checks.
|
|
|
|
</p>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</div>
|