Hello All, I have a search that uses stats command and displays the results as follows. Note: I have stripped out some columns. index=index1 sourceType=xxxx
| eventstats count(action) as Per_User_failures by user
| stats latest(_time) as _time, values(host), values(src_ip), dc(src_ip) as srcIpCount, values(user), values(Failure_Reason), dc(user) as userCount, values(Per_User_failures) as Per_User_failures by Workstation_Name Now, if i further add | where Per_User_failures > 10 condition, the search shows "No Results Found". index=index1 sourceType=xxxx
| eventstats count(action) as Per_User_failures by user
| stats latest(_time) as _time, values(host), values(src_ip), dc(src_ip) as srcIpCount, values(user), values(Failure_Reason), dc(user) as userCount, values(Per_User_failures) as Per_User_failures by Workstation_Name
| where Per_User_failures >10 This is incorrect as you can see there are some values where Per_user_Failures is greater than 10 such as 11,12,13, 1037 etc. How can i make the where clause check any of the values under the "Per_user_failures" column.
... View more