Fix: Periphery should flter out "overlay" volumes, not include them

This commit is contained in:
mbecker20
2024-08-18 18:05:56 -04:00
parent bffdea4357
commit 7d011d93fa

View File

@@ -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();