mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-04 14:29:45 +00:00
* rename frontend to web and update contributing guide * rename this time * fix build * restructure rust code * update documentation * update descriptions * Update CONTRIBUTING.md Co-authored-by: J H <2364004+Blu-J@users.noreply.github.com> --------- Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> Co-authored-by: J H <2364004+Blu-J@users.noreply.github.com>
26 lines
834 B
HTML
26 lines
834 B
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-buttons slot="start">
|
|
<ion-back-button [defaultHref]="'/services/' + pkgId"></ion-back-button>
|
|
</ion-buttons>
|
|
<ion-title>Monitor</ion-title>
|
|
<ion-title slot="end">
|
|
<ion-spinner name="dots" class="fader"></ion-spinner>
|
|
</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content class="ion-padding with-widgets">
|
|
<skeleton-list *ngIf="loading"></skeleton-list>
|
|
<ion-item-group *ngIf="!loading">
|
|
<ion-item *ngFor="let metric of metrics | keyvalue : asIsOrder">
|
|
<ion-label>{{ metric.key }}</ion-label>
|
|
<ion-note *ngIf="metric.value" slot="end" class="metric-note">
|
|
<ion-text style="color: white">
|
|
{{ metric.value.value }} {{ metric.value.unit }}
|
|
</ion-text>
|
|
</ion-note>
|
|
</ion-item>
|
|
</ion-item-group>
|
|
</ion-content>
|