Hi all,
My Windows machines is having mounted disk named D:, i want to monitor it, if it got fallen, or someone removed by mistake, i need alert alert in zabbix dashboard. Here my question
To monitor the mounted volume disk ( Say D: drive), i have prepared the powershell script to throw an alert if the disk got unmounted/unavailable. May I know how to map this with zabbix alert ( trigger) to show same alert in zabbix dashboard.? if need to change script mean please suggest.
Here the script running in machine perfectly.
$check=Get-WmiObject Win32_LogicalDisk -filter "DeviceID = 'D:' "
if(!$check)
{"0"}
Or can we get we get the same alert with the help of event log management ?
Thanks in advance
My Windows machines is having mounted disk named D:, i want to monitor it, if it got fallen, or someone removed by mistake, i need alert alert in zabbix dashboard. Here my question
To monitor the mounted volume disk ( Say D: drive), i have prepared the powershell script to throw an alert if the disk got unmounted/unavailable. May I know how to map this with zabbix alert ( trigger) to show same alert in zabbix dashboard.? if need to change script mean please suggest.
Here the script running in machine perfectly.
$check=Get-WmiObject Win32_LogicalDisk -filter "DeviceID = 'D:' "
if(!$check)
{"0"}
Or can we get we get the same alert with the help of event log management ?
Thanks in advance
Comment