From 7d011d93fa89ebd0f44f39b86dd5293129966082 Mon Sep 17 00:00:00 2001 From: mbecker20 Date: Sun, 18 Aug 2024 18:05:56 -0400 Subject: [PATCH] Fix: Periphery should flter out "overlay" volumes, not include them --- bin/periphery/src/stats.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/periphery/src/stats.rs b/bin/periphery/src/stats.rs index df7731808..c904152bb 100644 --- a/bin/periphery/src/stats.rs +++ b/bin/periphery/src/stats.rs @@ -107,7 +107,7 @@ impl StatsClient { .list() .iter() .filter(|d| { - if d.file_system() != "overlay" { + if d.file_system() == "overlay" { return false; } let path = d.mount_point();