I would like to replicate low disk space alerts from basic to advanced (So I can filter using custom properties) . I would like our Dev team to get alerts for DEV servers, apps for apps servers, etc. I have the query setup and working properly, but the only values that I can send in an alert is Bytes available(${Volumes.VolumeSpaceAvailable}). This is not very readable for most people. Is there any way to modify the bytes to MB/GB like the basic alerts do.
I don't like editing the basic alerts every time we add a new disk or server. It leads to inconsistent monitoring, and I like the idea of custom properties, so the alerts will trigger the correct resources.
Thanks
Here is the SQL command I use. This divides the value in VolumeSpaceAvailable until its in GB and rounds to the tenth decimal place.
${SQL:Select round((VolumeSpaceAvailable / 1024 / 1024 / 1024),1) from Volumes WHERE VolumeID='${VolumeID}'}
Nice!
SAM
Thanks PatWill,
That's officially a "keeper" in my book!
Don