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 2581F1FF187 for ; Mon, 25 Aug 2025 10:10:49 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 2CBC0B921; Mon, 25 Aug 2025 10:10:48 +0200 (CEST) From: Dominik Csapak To: pdm-devel@lists.proxmox.com Date: Mon, 25 Aug 2025 10:08:39 +0200 Message-ID: <20250825081042.797559-4-d.csapak@proxmox.com> X-Mailer: git-send-email 2.47.2 In-Reply-To: <20250825081042.797559-1-d.csapak@proxmox.com> References: <20250825081042.797559-1-d.csapak@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.022 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] [PATCH datacenter-manager v3 3/8] server: api: add remote-tasks statistics 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 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pdm-devel-bounces@lists.proxmox.com Sender: "pdm-devel" this new api call returns task status counts by remote and by type, so that the ui can display that without having to count these on the client side. Signed-off-by: Dominik Csapak --- lib/pdm-api-types/src/lib.rs | 41 +++++++++++++++++++ server/src/api/remote_tasks.rs | 74 +++++++++++++++++++++++++++++++++- 2 files changed, 113 insertions(+), 2 deletions(-) diff --git a/lib/pdm-api-types/src/lib.rs b/lib/pdm-api-types/src/lib.rs index 37da134..c506544 100644 --- a/lib/pdm-api-types/src/lib.rs +++ b/lib/pdm-api-types/src/lib.rs @@ -1,5 +1,6 @@ //! Basic API types used by most of the PDM code. +use std::collections::HashMap; use std::fmt; use anyhow::{bail, Error}; @@ -280,6 +281,46 @@ pub struct TaskListItem { pub status: Option, } +#[api] +/// Count of tasks by status +#[derive(Clone, Serialize, Deserialize, Default, PartialEq)] +#[serde(rename_all = "lowercase")] +pub struct TaskCount { + /// The number of successful tasks + pub ok: u64, + /// The number of tasks with warnings + pub warning: u64, + /// The number of failed tasks + pub error: u64, + /// The number of tasks with an unknown status + pub unknown: u64, +} + +#[api{ + properties: { + "by-type": { + type: Object, + properties: {}, + additional_properties: true, + }, + "by-remote": { + type: Object, + properties: {}, + additional_properties: true, + }, + }, +}] +/// Lists the task status counts by type and by remote +#[derive(Clone, Serialize, Deserialize, PartialEq)] +#[serde(rename_all = "kebab-case")] +pub struct TaskStatistics { + /// A map of worker-types to status counts + pub by_type: HashMap, + /// A map of remotes to status counts + #[serde(default)] + pub by_remote: HashMap, +} + pub const NODE_TASKS_LIST_TASKS_RETURN_TYPE: ReturnType = ReturnType { optional: false, schema: &ArraySchema::new("A list of tasks.", &TaskListItem::API_SCHEMA).schema(), diff --git a/server/src/api/remote_tasks.rs b/server/src/api/remote_tasks.rs index db9fadf..7b97b9c 100644 --- a/server/src/api/remote_tasks.rs +++ b/server/src/api/remote_tasks.rs @@ -1,6 +1,11 @@ +use std::collections::HashMap; + use anyhow::Error; -use pdm_api_types::{remotes::REMOTE_ID_SCHEMA, TaskFilters, TaskListItem}; +use pdm_api_types::{ + remotes::REMOTE_ID_SCHEMA, RemoteUpid, TaskCount, TaskFilters, TaskListItem, TaskStateType, + TaskStatistics, +}; use proxmox_router::{list_subdirs_api_method, Permission, Router, SubdirMap}; use proxmox_schema::api; use proxmox_sortable_macro::sortable; @@ -12,7 +17,13 @@ pub const ROUTER: Router = Router::new() .subdirs(SUBDIRS); #[sortable] -const SUBDIRS: SubdirMap = &sorted!([("list", &Router::new().get(&API_METHOD_LIST_TASKS)),]); +const SUBDIRS: SubdirMap = &sorted!([ + ("list", &Router::new().get(&API_METHOD_LIST_TASKS)), + ( + "statistics", + &Router::new().get(&API_METHOD_TASK_STATISTICS) + ), +]); #[api( // FIXME:: see list-like API calls in resource routers, we probably want more fine-grained @@ -42,3 +53,62 @@ async fn list_tasks( Ok(tasks) } + +#[api( + // FIXME:: see list-like API calls in resource routers, we probably want more fine-grained + // checks.. + access: { + permission: &Permission::Anybody, + }, + input: { + properties: { + filters: { + type: TaskFilters, + flatten: true, + }, + remote: { + schema: REMOTE_ID_SCHEMA, + optional: true, + }, + }, + }, +)] +/// Get task statistics for the specified filters. +async fn task_statistics( + filters: TaskFilters, + remote: Option, +) -> Result { + let tasks = remote_tasks::get_tasks(filters, remote).await?; + + let mut by_type: HashMap = HashMap::new(); + let mut by_remote: HashMap = HashMap::new(); + + for task in tasks { + let status: TaskStateType = match task.status.as_deref() { + Some(status) => TaskStateType::new_from_str(status), + None => continue, + }; + let entry = by_type.entry(task.worker_type).or_default(); + match status { + TaskStateType::OK => entry.ok += 1, + TaskStateType::Warning => entry.warning += 1, + TaskStateType::Error => entry.error += 1, + TaskStateType::Unknown => entry.unknown += 1, + } + + let remote = match task.upid.parse::() { + Ok(upid) => upid.remote().to_owned(), + Err(_) => continue, + }; + + let entry = by_remote.entry(remote).or_default(); + match status { + TaskStateType::OK => entry.ok += 1, + TaskStateType::Warning => entry.warning += 1, + TaskStateType::Error => entry.error += 1, + TaskStateType::Unknown => entry.unknown += 1, + } + } + + Ok(TaskStatistics { by_type, by_remote }) +} -- 2.47.2 _______________________________________________ pdm-devel mailing list pdm-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel