diff options
| author | Dan Engelbrecht <[email protected]> | 2026-04-02 19:59:28 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-04-02 19:59:28 +0200 |
| commit | e417ba62801edc1d05aecd00c7da9e419ad23787 (patch) | |
| tree | 13650e35b056f797058086500f780d49a64750f0 /src/zenserver/frontend | |
| parent | 5.8.2 (diff) | |
| download | zen-e417ba62801edc1d05aecd00c7da9e419ad23787.tar.xz zen-e417ba62801edc1d05aecd00c7da9e419ad23787.zip | |
fix hub consule health endpoint registration (#917)
* use correct health endpoint for zenhubserver consul registration
* add total disk space on hub resource pane
Diffstat (limited to 'src/zenserver/frontend')
| -rw-r--r-- | src/zenserver/frontend/html/pages/hub.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zenserver/frontend/html/pages/hub.js b/src/zenserver/frontend/html/pages/hub.js index 274e3fd35..c9652f31e 100644 --- a/src/zenserver/frontend/html/pages/hub.js +++ b/src/zenserver/frontend/html/pages/hub.js @@ -236,6 +236,7 @@ export class Page extends ZenPage const left = columns.tag().classify("tile-metrics"); this._metric(left, Friendly.bytes(disk_used), "disk used", true); + this._metric(left, Friendly.bytes(machine.disk_total_bytes), "disk total"); if (disk_limit > 0) { this._metric(left, Friendly.bytes(disk_limit), "disk limit"); } const right = columns.tag().classify("tile-metrics"); |