Add Docker telemetry collector

This commit is contained in:
2026-08-03 16:28:52 -04:00
parent 757ac99908
commit 9d67469c53
+8 -1
View File
@@ -81,6 +81,13 @@ function telemetryStatus(systems) {
label: systems.git.state === 'online' ? 'Healthy' : 'Attention', label: systems.git.state === 'online' ? 'Healthy' : 'Attention',
value: systems.git.detail, value: systems.git.detail,
detail: systems.git.summary detail: systems.git.summary
} },
{
name: 'Docker',
state: systems.docker.state,
label: systems.docker.state === 'online' ? 'Healthy' : 'Attention',
value: systems.docker.summary,
detail: systems.docker.detail
}
]; ];
} }