I Have a look up file called dataset.csv which will have one field,
dataset_name
dataset1
dataset2
dataset3
I need to display the dataset_names in a table which are not present in the search results but present in lookup , i use the below query to retrieve all the datasets . but using lookup it does not show the missing names.
QUERY :
index = dataIntegration source=piedpiper lambda_events| search event.proc_stat_cd = "SCSS" AND event.s3_location = "*"s3:*//lake/depositescrow*"*" AND "event.module_name"=EMR | rename event.dataset_id as "Id" |rename event.regrd_dataset_nm as Name |rename event.proc_ts as "DateTime"| table "Id" , "Name","DateTime"
I want the results like,how can i achieve this
DatasetName
FilesMoved
Time
dataset1
YES
dataset2
NO
... View more