diff options
| author | Dan Engelbrecht <[email protected]> | 2026-03-22 13:13:13 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-03-22 13:13:13 +0100 |
| commit | 365229bcb24426dc3e02cb632b865e79ba01a9f9 (patch) | |
| tree | 7c52640c73616e93bd993095e7a7295b1e1bcc22 /src/zenserver/hub/httphubservice.cpp | |
| parent | Upgrade mimalloc to v2.2.7 and log active memory allocator (#876) (diff) | |
| download | zen-365229bcb24426dc3e02cb632b865e79ba01a9f9.tar.xz zen-365229bcb24426dc3e02cb632b865e79ba01a9f9.zip | |
hub web UI improvements (#878)
- Improvement: Hub dashboard module list improved
- Animated state dots, with flashing transitions for hibernating, waking, provisioning, and deprovisioning
- Per-row port used by the provisioned instance
- Per-row hibernate, wake, and deprovision actions with confirmation for destructive operations
- Per-row button to open the instance dashboard in a new window
- Multi-select with bulk hibernate/wake/deprovision and select-all
- Pagination at 50 lines per page
- Inline fold-out panel per row with human-readable process metrics
Diffstat (limited to 'src/zenserver/hub/httphubservice.cpp')
| -rw-r--r-- | src/zenserver/hub/httphubservice.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zenserver/hub/httphubservice.cpp b/src/zenserver/hub/httphubservice.cpp index 03be6e85d..a91e36128 100644 --- a/src/zenserver/hub/httphubservice.cpp +++ b/src/zenserver/hub/httphubservice.cpp @@ -42,6 +42,7 @@ HttpHubService::HttpHubService(Hub& Hub) : m_Hub(Hub) { Obj << "moduleId" << ModuleId; Obj << "state" << ToString(Info.State); + Obj << "port" << Info.Port; Obj.BeginObject("process_metrics"); { Obj << "MemoryBytes" << Info.Metrics.MemoryBytes; |