Moving to this fork - do I need to reinstall the spokes' binaries? #306
-
|
Hello. I am running a hub & spoke setup from the original AnalogJ. The hub is on docker without yaml, only a compose.yaml. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi @cookiemonsteruk, thanks for the question! Short answer: Your existing AnalogJ collector binaries will continue to work with this fork's web server for standard SMART monitoring, so no immediate reinstall is required. The core collector API endpoints ( When you WOULD need to update the collector binaries
Migration stepsFor a minimal migration:
For full feature access (recommended when convenient):
There's no urgency to update all spokes at once. You can do it gradually since both old and new collectors work against the fork's web server (as long as auth is not enabled). Hope that helps, let me know if you have any other questions! |
Beta Was this translation helpful? Give feedback.
Hi @cookiemonsteruk, thanks for the question!
Short answer: Your existing AnalogJ collector binaries will continue to work with this fork's web server for standard SMART monitoring, so no immediate reinstall is required.
The core collector API endpoints (
POST /api/devices/registerandPOST /api/device/:wwn/smart) are fully backward compatible. The fork adds new optional fields to these endpoints, but the server gracefully handles their absence (they default to empty/zero values). Your existingcollector.yamlconfig files also work without changes.When you WOULD need to update the collector binaries
Authentication - If you enable
web.auth.enabled: trueon the hub, the old collector can'…