we want to monitor failures of the backup jobs running at a SQL server instance. For now we set the sp_readerrorlog procedure as a starting point to get the information from the log.
EXEC sp_readerrorlog 0, 1, 'flush', 'failure'
This is an example how the procedure output look like: 215 | 2021-06-25 13:331:02.750 | spid59 | BackupVirtualDeviceFile: RequestDurableMedia: Flush failure in device 'EMC#ea45d....'
Question is, does an easy solution exists within PRTG to throw a notification when the above "fail" strings are detected?
Add comment