Add system and certificate telemetry collectors

This commit is contained in:
2026-08-03 16:43:45 -04:00
parent 9d67469c53
commit dc5c8ec1da
4 changed files with 132 additions and 1 deletions
+16 -1
View File
@@ -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
},
];
}