[1/4] netexternal.cgi: Fixed bug13834 - tun0 graph missing in external net traffic

Message ID 20250515114920.12919-1-adolf.belka@ipfire.org
State New
Headers
Series [1/4] netexternal.cgi: Fixed bug13834 - tun0 graph missing in external net traffic |

Commit Message

Adolf Belka May 15, 2025, 11:49 a.m. UTC
  - Some additional rrd directory and file name changes missed from collect-5 update.

Fixes: bug13834
Tested-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 html/cgi-bin/netexternal.cgi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Patch

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"));
 }