Add system and certificate telemetry collectors
This commit is contained in:
+16
-1
@@ -88,6 +88,21 @@ function telemetryStatus(systems) {
|
||||
label: systems.docker.state === 'online' ? 'Healthy' : 'Attention',
|
||||
value: systems.docker.summary,
|
||||
detail: systems.docker.detail
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'Certificates',
|
||||
state: systems.certificates.state,
|
||||
label: systems.certificates.state === 'online' ? 'Healthy' : 'Attention',
|
||||
value: systems.certificates.detail,
|
||||
detail: systems.certificates.summary
|
||||
},
|
||||
{
|
||||
name: 'System',
|
||||
state: systems.system.state,
|
||||
label: systems.system.state === 'online' ? 'Healthy' : 'Attention',
|
||||
value: systems.system.summary,
|
||||
detail: systems.system.detail
|
||||
},
|
||||
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user