From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <pve-devel-bounces@lists.proxmox.com> Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 623FD1FF164 for <inbox@lore.proxmox.com>; Fri, 23 May 2025 18:01:04 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id B828F1E5D1; Fri, 23 May 2025 18:01:02 +0200 (CEST) From: Aaron Lauterer <a.lauterer@proxmox.com> To: pve-devel@lists.proxmox.com Date: Fri, 23 May 2025 18:00:12 +0200 Message-Id: <20250523160029.404400-3-a.lauterer@proxmox.com> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20250523160029.404400-1-a.lauterer@proxmox.com> References: <20250523160029.404400-1-a.lauterer@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.032 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 RCVD_IN_VALIDITY_CERTIFIED_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_RPBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_SAFE_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. 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 cluster-pve8 2/2] status: handle new pve9- metrics update data X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion <pve-devel.lists.proxmox.com> List-Unsubscribe: <https://lists.proxmox.com/cgi-bin/mailman/options/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=unsubscribe> List-Archive: <http://lists.proxmox.com/pipermail/pve-devel/> List-Post: <mailto:pve-devel@lists.proxmox.com> List-Help: <mailto:pve-devel-request@lists.proxmox.com?subject=help> List-Subscribe: <https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=subscribe> Reply-To: Proxmox VE development discussion <pve-devel@lists.proxmox.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" <pve-devel-bounces@lists.proxmox.com> For PVE9 there will be additional fields in the metrics that are collected. The new columns/fields are added at the end of the current ones. Therefore, if we get the new format, we need to cut it. Paths to rrd filenames needed to be set manually to 'pve2-...' and will use the 'node' part instead of the full key, as that could also be 'pve9-...' which does not exists. Signed-off-by: Aaron Lauterer <a.lauterer@proxmox.com> --- src/pmxcfs/status.c | 51 ++++++++++++++++++++++++++++++++++++++------- src/pmxcfs/status.h | 2 ++ 2 files changed, 46 insertions(+), 7 deletions(-) diff --git a/src/pmxcfs/status.c b/src/pmxcfs/status.c index 77a18d8..3fdb179 100644 --- a/src/pmxcfs/status.c +++ b/src/pmxcfs/status.c @@ -1236,6 +1236,8 @@ rrd_skip_data( return data; } +static char* rrd_format_update_buffer = NULL; + static void update_rrd_data( const char *key, @@ -1255,9 +1257,15 @@ update_rrd_data( char *filename = NULL; + if (!rrd_format_update_buffer) { + rrd_format_update_buffer = (char*)malloc(RRD_FORMAT_BUFFER_SIZE); + } + int skip = 0; + int data_cutoff = 0; // how many columns after initial skip should be a cut-off - if (strncmp(key, "pve2-node/", 10) == 0) { + if (strncmp(key, "pve2-node/", 10) == 0 || + strncmp(key, "pve9-node/", 10) == 0) { const char *node = key + 10; skip = 2; @@ -1268,7 +1276,11 @@ update_rrd_data( if (strlen(node) < 1) goto keyerror; - filename = g_strdup_printf(RRDDIR "/%s", key); + if (strncmp(key, "pve9-node/", 10) == 0) { + data_cutoff = 13; + } + + filename = g_strdup_printf(RRDDIR "/pve2-node/%s", node); if (!g_file_test(filename, G_FILE_TEST_EXISTS)) { @@ -1277,8 +1289,15 @@ update_rrd_data( create_rrd_file(filename, argcount, rrd_def_node); } - } else if (strncmp(key, "pve2.3-vm/", 10) == 0) { - const char *vmid = key + 10; + } else if (strncmp(key, "pve2.3-vm/", 10) == 0 || + strncmp(key, "pve9-vm/", 8) == 0) { + + const char *vmid; + if (strncmp(key, "pve2.3-vm/", 10) == 0) { + vmid = key + 10; + } else { + vmid = key + 8; + } skip = 4; @@ -1288,6 +1307,10 @@ update_rrd_data( if (strlen(vmid) < 1) goto keyerror; + if (strncmp(key, "pve9-vm/", 8) == 0) { + data_cutoff = 11; + } + filename = g_strdup_printf(RRDDIR "/%s/%s", "pve2-vm", vmid); if (!g_file_test(filename, G_FILE_TEST_EXISTS)) { @@ -1297,7 +1320,8 @@ update_rrd_data( create_rrd_file(filename, argcount, rrd_def_vm); } - } else if (strncmp(key, "pve2-storage/", 13) == 0) { + } else if (strncmp(key, "pve2-storage/", 13) == 0 || + strncmp(key, "pve9-storage/", 13) == 0) { const char *node = key + 13; const char *storage = node; @@ -1315,7 +1339,7 @@ update_rrd_data( if (strlen(storage) < 1) goto keyerror; - filename = g_strdup_printf(RRDDIR "/%s", key); + filename = g_strdup_printf(RRDDIR "/pve2-storage/%s", node); if (!g_file_test(filename, G_FILE_TEST_EXISTS)) { @@ -1335,7 +1359,20 @@ update_rrd_data( const char *dp = skip ? rrd_skip_data(data, skip) : data; - const char *update_args[] = { dp, NULL }; + if (data_cutoff) { + const char *cut = rrd_skip_data(dp, data_cutoff); + const int data_len = cut - dp - 1; // -1 to remove last colon + snprintf(rrd_format_update_buffer, RRD_FORMAT_BUFFER_SIZE, "%.*s", data_len, dp); + } else { + snprintf(rrd_format_update_buffer, RRD_FORMAT_BUFFER_SIZE, "%s", dp); + } + + const char *update_args[] = { rrd_format_update_buffer, NULL }; + + // TODO: remove in non RFC, but useful for debug logging to see if data is handled correctly + // cfs_message("KEY: %s", key); + // cfs_message("DATA: %s", dp); + // cfs_message("BUFFER: %s", rrd_format_update_buffer); if (use_daemon) { int status; diff --git a/src/pmxcfs/status.h b/src/pmxcfs/status.h index 041cb34..1a38f43 100644 --- a/src/pmxcfs/status.h +++ b/src/pmxcfs/status.h @@ -34,6 +34,8 @@ #define CFS_MAX_STATUS_SIZE (32*1024) +#define RRD_FORMAT_BUFFER_SIZE (1024 * 1024) // 1 MiB + typedef struct cfs_clnode cfs_clnode_t; typedef struct cfs_clinfo cfs_clinfo_t; -- 2.39.5 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel