Could it possible to create an operator "contain" which will allow to modify the status message according key words or strings.
Exemple:
use Warning status if ('%SuggestedReply%' contains 'Job Cancellation')
use Normal status if ('%SuggestedReply%' contains 'Job Completed')
Thanks
NTevent logs test and status
But not always...Usually you may use several test items when you need to check for different events
It's clearer and quicker to create just one test to check backup state with status processing:
use Warning status if ('%SuggestedReply%' contains 'Job Cancellation')
or ('%SuggestedReply%' contains 'Job Failed)
use Normal status if ('%SuggestedReply%' contains 'Job Completed')
that to create 3 tests to check each issues ('Job Cancellation', 'Job Failed' and 'Job Completed')