Hi,
I'm aware that I can filter by specific type of exception, but in my case I need more detailed filtering by summary of exception.
Lets say we have couple of exceptions from type/name FaultException. Bellow are the examples:
1. System.ServiceModel.FaultException= communication error with gateway
2. System.ServiceModel.FaultException = Option Is Not Valid For Job Status
Second one is expected business exception and we want that excluded from notifications (alerts). If I exclude the whole type FaultException I would miss the real exceptions (in our case the 1st one)
... View more