From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4ZypQx2tbqz347s for ; Thu, 15 May 2025 11:49:29 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R10" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4ZypQs6t6Lz2yHY for ; Thu, 15 May 2025 11:49:25 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4ZypQr089Mz2Z0; Thu, 15 May 2025 11:49:23 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1747309764; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=irlDl+SzaaoWGxN+o1K6NR1qI21tRpvOzefYpLhwQUk=; b=gCTmvqk+BAiJVzgbpcM+owAXojxAQUBvm6hPmnZFnoZm0HEgFHHYQxZohZiPqyepDjOLwK mb7Q73pN5nhXS5Cw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1747309764; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=irlDl+SzaaoWGxN+o1K6NR1qI21tRpvOzefYpLhwQUk=; b=itOk/m2OOq0sgnGKYvJUqbw/C/3CyYSGDDmsJycWBdysLNVd4XsWXdnx+KJWgJWmOgh5m3 NtfIhv5XqnBjFq5YyMxsBTQsxN77xs7nunNRo3FDdEL2y2JeKJq31YBZ5vRZcEBQzzGq4I ZmWh6pxDpXPZ3IpFByatBL4amkF8dJ0ENNPAoX3iUImCW/PUXT49n04jLXXhVegyJWGHkC VEALSWQ5vvKF7PsDaKOpBWMFgqpQuW1l+nnnAmO5UmuAC6/tUY/mv6S1uHxuHu+TXP7hba trOPG9vsYUOFckknD5b9AS79FVvUizm1q5B/wd1jEKemMirEu8gtoYYhgYps3g== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 1/4] netexternal.cgi: Fixed bug13834 - tun0 graph missing in external net traffic Date: Thu, 15 May 2025 13:49:17 +0200 Message-ID: <20250515114920.12919-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit - Some additional rrd directory and file name changes missed from collect-5 update. Fixes: bug13834 Tested-by: Adolf Belka Signed-off-by: Adolf Belka --- html/cgi-bin/netexternal.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/cgi-bin/netexternal.cgi b/html/cgi-bin/netexternal.cgi index fb1097d61..79ba1c0b8 100644 --- a/html/cgi-bin/netexternal.cgi +++ b/html/cgi-bin/netexternal.cgi @@ -55,11 +55,11 @@ if ($netsettings{'RED_TYPE'} ne 'PPPOE'){ push (@graphs, "ppp0"); } -if (-e "/var/log/rrd/collectd/localhost/interface/if_octets-ipsec0.rrd"){ +if (-e "/var/log/rrd/collectd/localhost/interface-ipsec0/if_octets.rrd"){ push (@graphs, ("ipsec0")); } -if (-e "/var/log/rrd/collectd/localhost/interface/if_octets-tun0.rrd"){ +if (-e "/var/log/rrd/collectd/localhost/interface-tun0/if_octets.rrd"){ push (@graphs, ("tun0")); } -- 2.49.0