My apologies as reviewing the search output I need to dedup fields with bunit being one of those fields. Here is my entire search: index=arp sourcetype=foo_arp NOT mac IN (incomplete)
| lookup securitygroupmembers_lookup cidr_range as ip
| lookup dnslookup clientip as ip OUTPUT clienthost as dns
| fillnull value=NULL
| search zone!=""
| eval zone=coalesce(zone,"null")
| rename zone AS bunit
| eval priority=if(like(bunit,"%foo%"), "critical" , "TBD")
| eval ip=mvdedup(ip), mac=mvdedup(mac), dns=mvdedup(dns), bunit=mvdedup(bunit), device=mvdedup(device), interface=mvdedup(interface)
| table ip, mac, nt_host, dns, owner, priority, lat, long, city, country, bunit, category, pci_domain, is_expected, should_timesync, should_update, requires_av, device, interface
| search bunit=*foo* For some reason I am getting dupes in various fields so I use an eval to dedup those fields. With bunit being a multi value field, what effect does that have? Thx
... View more