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 D88BC1FF170 for ; Tue, 17 Dec 2024 10:32:29 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id F14DC1BD86; Tue, 17 Dec 2024 10:32:40 +0100 (CET) From: Dominik Csapak To: pve-devel@lists.proxmox.com Date: Tue, 17 Dec 2024 10:32:07 +0100 Message-Id: <20241217093207.930119-2-d.csapak@proxmox.com> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20241217093207.930119-1-d.csapak@proxmox.com> References: <20241217093207.930119-1-d.csapak@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.016 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: [pve-devel] [PATCH container] vmstatus: document more return types X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" namely 'cpu' and 'mem' Signed-off-by: Dominik Csapak --- src/PVE/LXC.pm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/PVE/LXC.pm b/src/PVE/LXC.pm index e78e365..4d20645 100644 --- a/src/PVE/LXC.pm +++ b/src/PVE/LXC.pm @@ -127,6 +127,12 @@ our $vmstatus_return_properties = { type => 'string', enum => ['stopped', 'running'], }, + mem => { + description => "Currently used memory in bytes.", + type => 'integer', + optional => 1, + renderer => 'bytes', + }, maxmem => { description => "Maximum memory in bytes.", type => 'integer', @@ -191,6 +197,11 @@ our $vmstatus_return_properties = { optional => 1, renderer => 'duration', }, + cpu => { + description => "Current CPU usage.", + type => 'number', + optional => 1, + }, cpus => { description => "Maximum usable CPUs.", type => 'number', -- 2.39.5 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel