Jun 13 2022 08:49 PM
Hi,
I am using a Watchlist having all the usernames and their device names. I would like to get device names and add them to the CommonSecurityLog/CEF table. How can I do it using join or lookup? Please share some thoughts or a query sample.
Note: The CEF logs do have usernames that we can match.
Thanks
Jun 14 2022 04:28 AM
Solution@gsingh_ You will not be able to add the data to the other tables as there is no feature within KQL to add data to a table, only look at data.
If you want to do a join to look at data, you can do something like:
let watchListTable = _GetWatchlist('Watchlist');
CommonSecurityLog
| join watchListTable on $left.key == $right.key
Jun 14 2022 06:01 PM