I have a request from a application group that wants the following:
On the servers running "someapp"
- When a filesystem >= 90% utilization, alert us
- When a filesystem with the name "Paging" in the caption has <= 50Mb, alert us
In the case of the server in question the filesystems are captioned:
- C:\ Label: 904559dc
\ Label:DATA 20042e63- E:\ Label:Paging 1863a06d
The E: drive is being used as a dedicated pagefile disk.
I have constructed the following trigger condition to solve the request inside one alert.

Question 1: Does this make sense?
Question 2: How can I test the alert (and I already know about the test button)?
I considered the following technique
- find the volumes attached to the node in the database with the following sql:
select volumeid, volumedescription, volumepercentused, volumespaceused, volumespaceavailable from volumes where nodeid=2234;
This returns the following:

- use the following sql to push the C: VolumePercentUsed over the trigger limit:
update volumes set VolumePercentUsed=99 where volumeid=5627;
- Wait for the alert.
Unfortunately the alert doesn't come. So how can I confirm this alert works as I expect?
Chris Gregors