This is the current search I am running. Replacing the .com/.net with a comma at the end then separating it on the comma | inputlookup last_activity.csv | eval executionTime=strftime(now(), "%Y-%m-%d %H.%M.%S") | fields fqdn, ci_name_instance, first_onboarded, last_phone_home_time, executionTime | where isnotnull(fqdn) | replace "*.com*" WITH "*.com,*" IN ci_name_instance | replace "*.net*" WITH "*.net,*" IN ci_name_instance | eval ci_name_instance=split(ci_name_instance,",") | mvexpand ci_name_instance | replace "" WITH "NULL" IN ci_name_instance | where ci_name_instance != "NULL" | eval ci_name_instance = replace (ci_name_instance, "\n","") Below is a search result without the row separation (blurred out for confidentiality reasons)
... View more