blob: a2b17578834e49c9de62ea7ffb4e5e6e23583ecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
import { Component, OnInit } from '@angular/core';
import {ExternalComponentStatus} from "../shared/models/externalComponentStatus";
import {HealthStatusService} from "../shared/server/healthStatusService/health-status.service";
@Component({
selector: 'app-health-status',
templateUrl: './health-status.component.html',
styleUrls: ['./health-status.component.scss']
})
export class HealthStatusComponent implements OnInit {
componentStatuses: Array<ExternalComponentStatus> = [];
dataIsReady: boolean;
lastUpdatedDate: Date;
constructor(private _healthStatusService: HealthStatusService) {
}
ngOnInit() {
this.refreshData();
}
refreshData(): void {
this.dataIsReady = false;
this._healthStatusService.getProbe()
.subscribe((res: Array<ExternalComponentStatus>) => {
this.componentStatuses = res;
this.dataIsReady = true;
this.lastUpdatedDate = new Date();
})
}
getMetadata(status : ExternalComponentStatus):string {
let metadata = status.metadata;
delete metadata.rawData;
return metadata;
}
isAvailable(componentStatus: ExternalComponentStatus) {
return componentStatus.available;
}
}
|