I need to devlop an alert that can determine if a mount point is mounted or not. Is this possible with Orion NPM and if not would it be possible with Orion Storage Profiler. Is this out of the box functionality with either product?
Maybe I'm missing something here but assuming it's currently mounted, couldn't you add it as one of the node's resources to monitor? Then simply create an alert whenever the volume status is not up.
Yeah, what Quang Le said. Also, if you wanted to confirm that you could read/write to it you could use a SAM linux/unix script monitor. Something like:
#!/bin/sh
echo "Statistic: 0"
cd /path/to/mount && touch file && rm file && exit 0
exit 1