I'm a beginner Zabbix user, so please direct me to a better resource if I'm not in the right place.
I'd love to monitor if volumes are mounted in Macintosh (OSX).
For example, the following Bash one liner does the trick (echoes 1 if both are mounted):
if [ -d /Volumes/Data ] && [ -d /Volumes/Data-BACKUP ] ; then echo 1; else echo 0; fi
How can I implement a check for this in Zabbix?
Thanks in advance,
Dan
I'd love to monitor if volumes are mounted in Macintosh (OSX).
For example, the following Bash one liner does the trick (echoes 1 if both are mounted):
if [ -d /Volumes/Data ] && [ -d /Volumes/Data-BACKUP ] ; then echo 1; else echo 0; fi
How can I implement a check for this in Zabbix?
Thanks in advance,
Dan
Comment