I would like to trigger an alert if a production server rebooted. When I choose LASTBOOT has changed and convert it into a customer SQL Alert, I get the following sql:
(Nodes.LastBoot = Nodes.LastBoot and ((select count(*) from AlertValueChanges where TableName = 'Nodes' and FieldName = 'LastBoot') > 0) and (NodeID in (select NodeID from AlertValueChanges where TableName = 'Nodes' and FieldName = 'LastBoot' and (DateDiff(s, Changed, getdate()) < (1101INTERVAL1101 * 1.2)))) /* Do not remove this comment HAS1101CHANGEDTBL|FLDNodes|LastBootHAS1101CHANGED */)
)
I'm having trouble determining where the 1101INTERVAL1101 value is coming from. Is this the alert evaluation frequency converted into seconds? I'm hoping I can use this code with my additional criteria to limit which nodes I get the alert for. Where can I get a list of other fields that are available?
Thanks!!