hbc/hbc_mini: add owner config; include in os_info; server applies to host

- owner: optional top-level config key in ~/.hbc.yaml / ~/.hbc.json
- Propagated into plugin configs at load time so os_info can include it
- os_info PLG data carries owner field when set
- udp: sets host.owner from os_info if not already configured server-side
- live.html: format event log timestamps as YYYY-MM-DD HH:MM:SS (24-hour)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-08 07:25:47 -04:00
parent ca58c18802
commit 0504402a8a
6 changed files with 27 additions and 5 deletions
+2
View File
@@ -62,6 +62,8 @@ class OSInfoPlugin(InfoPlugin):
"hbc_version": hbc_version,
"hbc_type": "full",
}
if self.config.get("owner"):
data["owner"] = self.config["owner"]
# Add Linux-specific distribution info
if platform.system() == "Linux":