feat(place/driver_health): report driver process health across the cluster - #627
Merged
Conversation
…uster Checks every driver process on every core node and exposes a name, running state and check timestamp for each, so cluster health can be inspected in backoffice or exported to InfluxDB. Core nodes are read from the `core` service registration, the same one Proxy::RemoteDriver uses to route module requests, then each node is asked about its own driver processes over core's internal API. No API key or request to an external PlaceOS instance is involved. A driver process that isn't using any memory isn't running. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Your trial has ended. Reactivate Greptile to resume code reviews.
…iver name InfluxDB can't aggregate boolean fields (mean, sum) without mapping them first, so `running` is now an Int32 of 1 or 0. The `drivers` status uses the complex metric hint with `name` as a tag key so each driver process is its own series rather than a field to pivot on. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KDPGfoXsCRxWNCSUpZvzhh
There was a problem hiding this comment.
Your trial has ended. Reactivate Greptile to resume code reviews.
…mit, tag by hostname Driver executables are named `<source>_<commit>_<arch>` by the build service. DriverState now carries `hostname`, `driver` and `commit` as their own fields (architecture is dropped) and `name` is `<hostname>.<driver>` so it tags cleanly in InfluxDB across builds. `hostname` is also exposed as a tag key. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KDPGfoXsCRxWNCSUpZvzhh
There was a problem hiding this comment.
Your trial has ended. Reactivate Greptile to resume code reviews.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Checks every driver process on every core node and exposes a name, running state and check timestamp for each, so cluster health can be inspected in backoffice or exported to InfluxDB.
Core nodes are read from the
coreservice registration, the same one Proxy::RemoteDriver uses to route module requests, then each node is asked about its own driver processes over core's internal API. A driver process that isn't using any memory isn't running.