Need a query to be able be able to list the fields in the table that have text "mouse" and what that count is, for example:
col_1 col_2 col_3
dog cat mouse
cat cat mouse
mouse bird dog
Result for "mouse"
col_3 2
col_1 1
The practical application of this is to determine what fields in the Windows SecurityEvents log will have a computer name in them. As Azure Sentinel logs are not normalized there is no expectation to always find a computer name in the same place across all event types.
As an alternative we've had to feed event exports to a python script, this works just fine but doing this within KQL would certainly make things easier.
Can't find any alternatives.