27 lines
769 B
HTML
27 lines
769 B
HTML
<h1>Watch Dog</h1>
|
|
|
|
<div class="watchdog-count">
|
|
<p>OK {{count.OK || 0}}</p>
|
|
<p>NOT GOOD {{count.NOT_GOOD || 0 }}</p>
|
|
<p>DEAD {{count.DEAD || 0 }}</p>
|
|
<p>UNKNOWN {{count.UNKNOWN || 0}}</p>
|
|
</div>
|
|
|
|
|
|
<h2>OK {{count.OK}}</h2>
|
|
<div class="watchdog-ok" *ngFor="let metric of ok">
|
|
<app-metric-list-item [metric]="metric"/>
|
|
</div>
|
|
<h2>NOT GOOD {{count.NOT_GOOD}}</h2>
|
|
<div class="watchdog-notgood" *ngFor="let metric of notGood">
|
|
<app-metric-list-item [metric]="metric"/>
|
|
</div>
|
|
<h2>DEAD {{count.DEAD}}</h2>
|
|
<div class="watchdog-dead" *ngFor="let metric of deads">
|
|
<app-metric-list-item [metric]="metric"/>
|
|
</div>
|
|
<h2>UNKNOWN {{count.UNKNOWN}}</h2>
|
|
<div class="watchdog-unknown" *ngFor="let metric of unknown">
|
|
<app-metric-list-item [metric]="metric"/>
|
|
</div>
|