You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it's look like the metricbeat not collecting any data of devices without drive letter on windows machines (mount path), the reason for that is metricbeat relay wrong command:
get-psdrive -PSProvider filesystem
this powershell syntax by design not returning mount path.
they should relay on different command:
Get-WmiObject Win32_Volume | Format-Table Name, Label, FreeSpace, Capacity
metricbeat 6.2.4
The text was updated successfully, but these errors were encountered:
I have started a branch to try to list filesystems using WMI, with this I have managed to list volumes configured with access paths but without a drive letter.
I still have to do some tests with this.
Hi,
it's look like the metricbeat not collecting any data of devices without drive letter on windows machines (mount path), the reason for that is metricbeat relay wrong command:
get-psdrive -PSProvider filesystem
this powershell syntax by design not returning mount path.
they should relay on different command:
Get-WmiObject Win32_Volume | Format-Table Name, Label, FreeSpace, Capacity
metricbeat 6.2.4
The text was updated successfully, but these errors were encountered: