We need assistance with exceptions from the ICMP logs when the ICMP probe stops collecting metrics or a proactive approach from the UIM application where we can proactively monitor the ICMP probe when the metrics stop collecting.
Sample query that can be used:
SELECT
sd.probe,
sd.qos,
sd.source,
sd.target,
sd.r_table,
ss.sampletime,
ss.samplevalue
FROM S_QOS_SNAPSHOT
ss JOIN S_QOS_DATA sd ON ss.table_id = sd.table_id
WHERE ss.sampletime > DATEADD(hour, -24, GETDATE())
AND sd.probe = 'icmp';
Using sqlserver you can create and run an sql query and if there are any empty/null values in the results, using the configuration options->generate an alarm.