We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6ec088 commit 5654f16Copy full SHA for 5654f16
src/module_utils/filesystem_collector.py
@@ -110,8 +110,11 @@ def _parse_filesystem_data(
110
111
if not matched:
112
for nfs_share in afs_storage_data:
113
+ storage_account_name = nfs_share.get("Pool", "")
114
share_address = nfs_share.get("NFSAddress", "")
- if ":" in share_address and share_address.split(":")[0] == nfs_address:
115
+ if (
116
+ ":" in share_address and share_address.split(":")[0] == nfs_address
117
+ ) or storage_account_name in nfs_address:
118
filesystem_entry["max_mbps"] = nfs_share.get("ThroughputMibps", 0)
119
filesystem_entry["max_iops"] = nfs_share.get("IOPS", 0)
120
filesystem_entry["nfs_type"] = "AFS"
0 commit comments