Is there a way to either report on or configure alerts for CBT failures? Right now, the only way we can catch them is by seeing that the job is running longer than expected. Running 11.36
Alerts for failed changed block tracking

Best answer by Kirk Brown
I wasn’t able to get this info easily from Commvault, but found that the error was being sent to Splunk/syslog. I was able to create a report there. This query gets me a list of VMs that generated this error over the given time period.
index=[ours] sourcetype=[ours] "{91:461}"
| eval Timestamp=strftime(_time, "%Y-%m-%d %H:%M:%S")
| eval Computer=replace(Computer,"[{}]","")
| rex field=Description "Changed block tracking verification failed for disk \[(?<VMDK>[\w\.\-\[\]\/ ]+)\] on virtual machine \[(?<VM>[\w\.]+)\]; performing a full backup of the disk."
| table Timestamp,Computer,Jobid,Description,VMDK,VM
| sort -Timestamp
| stats count by VM
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.