Hi,
I have generated a search which return list of hosts and the count of events for these host. sometime the host values returned as IP Address and others as Host Name. I have a lookup table which contains a list of all IP Addresses and Host Names in addition to other metadata information.
so the result of the search is something like :
Host1 100
192.168.0.2 110
Host3 120
and the lookup table something like:
Host1 192.168.0.1 App1 Owner1
Host2 192.168.0.2 App2 Owner2
Host3 192.168.0.3 App3 Owner3
I need to lookup for host value (IP or Server Name) returned in the search result and return all the metadata associated with that value.
... View more