Steps to reproduce:
- Windows Server with multiple filesystem volumes
- Volumes mounted to a folder path (not assigned a drive letter)
- format volume
- Add Drive Letter or Path
- Mount in the following empty NTFS folder
- zabbix_get -s localhost -k vfs.fs.discovery
- JSON only includes logical disks with drive letters assigned
Result:
{
"data": [
{
"{#FSNAME}": "C:",
"{#FSTYPE}": "NTFS",
"{#FSDRIVETYPE}": "fixed"
},
{
"{#FSNAME}": "D:",
"{#FSTYPE}": "UNKNOWN",
"{#FSDRIVETYPE}": "cdrom"
}
]
}
Expected:
{
"data": [
{
"{#FSNAME}": "C:",
"{#FSTYPE}": "NTFS,
"{#FSDRIVETYPE}": "fixed"
},
{
"{#FSNAME}": "C:\\mounts
Data1",
"{#FSTYPE}": "NTFS,
"{#FSDRIVETYPE}": "fixed"
}
]
}
- duplicates
-
ZBXNEXT-1595 Discover windows mount points (mounted to folder)
- Closed