Hi
In a dashboard I use a doropdown list
the dropdown list is updated like this :
| inputlookup toto.csv
| fields SITE
| dedup SITE
| table SITE
| sort +SITE
Then, I use the search below in order to be able to filter the search results by SITE
it works, but I also want to be able to display the hosts from host.csv which have no SITE in toto.csv because sometimes this field is empty
what I have to add in the static option to do this please?
| inputlookup host.csv
| lookup patchlevel.csv "Computer" as host
| lookup toto.csv HOSTNAME as host output SITE
| search SITE=$tok_filtersite|s$
| stats count(flag_patch_version)
thanks
↧