From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id 63B631FF165 for ; Thu, 6 Nov 2025 13:45:45 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id C0D0115B67; Thu, 6 Nov 2025 13:46:26 +0100 (CET) Mime-Version: 1.0 Date: Thu, 06 Nov 2025 13:46:22 +0100 To: "Shannon Sterz" Message-Id: X-Mailer: aerc 0.20.0 References: <20251028164435.576642-1-s.sterz@proxmox.com> In-Reply-To: <20251028164435.576642-1-s.sterz@proxmox.com> From: "Shannon Sterz" X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1762433163802 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.060 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pdm-devel] Superseded: Re: [PATCH datacenter-manager/proxmox/yew-comp 0/6] add node status panel to proxmox datacenter manager X-BeenThere: pdm-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Datacenter Manager development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox Datacenter Manager development discussion Cc: pdm-devel@lists.proxmox.com Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pdm-devel-bounces@lists.proxmox.com Sender: "pdm-devel" Superseded-by: https://lore.proxmox.com/all/20251106124334.189955-1-s.sterz@proxmox.com/T/#m3bc594a213c2d92d1806a18867786f852b277358 On Tue Oct 28, 2025 at 5:44 PM CET, Shannon Sterz wrote: > this series adds a node status panel to the administration menu of > proxmox datacenter manager. it allows for getting a rough overview of > system load as well as accessing the node's fingerprint and rebooting > and powering off the node. > > the fist patch moves the api endpoints from proxmox-backup server to > their own proxmox-rs crate. the next two commits extend yew-comp to > allow implementing a node status panel of the newly extracted api > endpoints return types. > > the next three commits first add the new api endpoints to proxmox > datacenter manager, add the ui panel to the Administration menu and > remove a suproflous macro. > > the last two commits are sent as RFC, as i am not sure whether we want > to have the panel in that menu or should maybe treat it as a widget for > the new view feature. while the last commit is just a clean up > suggestion i came accross while implementing this. > > proxmox: > > Shannon Sterz (1): > node-status: add node status crate > > Cargo.toml | 1 + > proxmox-node-status/Cargo.toml | 37 +++++ > proxmox-node-status/debian/changelog | 5 + > proxmox-node-status/debian/control | 65 ++++++++ > proxmox-node-status/debian/copyright | 18 +++ > proxmox-node-status/debian/debcargo.toml | 7 + > proxmox-node-status/src/api.rs | 184 +++++++++++++++++++++++ > proxmox-node-status/src/lib.rs | 11 ++ > proxmox-node-status/src/types.rs | 184 +++++++++++++++++++++++ > 9 files changed, 512 insertions(+) > create mode 100644 proxmox-node-status/Cargo.toml > create mode 100644 proxmox-node-status/debian/changelog > create mode 100644 proxmox-node-status/debian/control > create mode 100644 proxmox-node-status/debian/copyright > create mode 100644 proxmox-node-status/debian/debcargo.toml > create mode 100644 proxmox-node-status/src/api.rs > create mode 100644 proxmox-node-status/src/lib.rs > create mode 100644 proxmox-node-status/src/types.rs > > > proxmox-yew-comp: > > Shannon Sterz (2): > node info: extend NodeStatus enum to include NodeStatus from > proxmox-rs > node status panel: add a panel that show the current status of a node > > Cargo.toml | 1 + > src/lib.rs | 3 + > src/node_info.rs | 38 ++++++ > src/node_status_panel.rs | 244 +++++++++++++++++++++++++++++++++++++++ > 4 files changed, 286 insertions(+) > create mode 100644 src/node_status_panel.rs > > > proxmox-datacenter-manager: > > Shannon Sterz (3): > api-types/api: add endpoints for querying the node's status > ui: add NodeStatusPanel to the administration menu > nodes: remove unnecessary rustfmt::skip macro > > Cargo.toml | 2 ++ > lib/pdm-api-types/src/acl.rs | 2 ++ > server/Cargo.toml | 1 + > server/src/api/nodes/mod.rs | 3 ++- > server/src/api/nodes/status.rs | 18 ++++++++++++++++++ > server/src/bin/proxmox-datacenter-api/main.rs | 2 ++ > ui/src/administration/mod.rs | 15 ++++++++++++++- > 7 files changed, 41 insertions(+), 2 deletions(-) > create mode 100644 server/src/api/nodes/status.rs > > > Summary over all repositories: > 20 files changed, 839 insertions(+), 2 deletions(-) > > -- > Generated by git-murpp 0.8.1 _______________________________________________ pdm-devel mailing list pdm-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel