I am currently using the below script in custom rules to highlight the session green and put "found" into the custom column, if the word "hello" is found in the session.
What I am trying to workout now, is how can I adjust this to display a count of "hello" into the custom column?
Script:
if (oSession.utilFindInResponse("hello", false)>-1 && oSession.utilFindInResponse("startMap", false)>-1){
oSession["ui-color"] = "green"
oSession["ui-customcolumn"]="found"
Thanks