feat: show admin node pool capacity

This commit is contained in:
Dobromir Popov
2026-07-14 16:11:18 +02:00
parent 22467f145c
commit 8cb00e951f
4 changed files with 54 additions and 7 deletions

View File

@@ -3366,6 +3366,11 @@ class _TrackerHandler(http.server.BaseHTTPRequestHandler):
"endpoint": node.endpoint,
"relay_addr": node.relay_addr,
"peer_id": node.peer_id,
"wallet_address": node.wallet_address,
"hardware_profile": dict(node.hardware_profile),
"ram_bytes": node.ram_bytes,
"vram_bytes": node.vram_bytes,
"max_loaded_shards": node.max_loaded_shards,
}
for node in tracker_nodes
],