Hi,
I am trying to get the top 10 table from Index-A to have corresponding asset information from Index-B as additional columns.
Hostnames field in index-A is called: HostxA
Hostnames field in index-B is called: HostxB
There are some duplicate entries in both.
Currently my search is able to find top 10 from Index-A and remove the dedups based on IP addresses
however, I am having difficulty using the "HostxA" field "DNS" as an input to find correlating data in index-B
index="indexA" HOSTSUMMARY OS="Windows Server*" | dedup IP | sort -Errors_5 | head 10 | table DNS, IP, Errors_5, Errors_4, Errors_3, Total_Errors
second table:
index="indexB" Hostname=DNS | table Asset-ID, Asset-Tag
Resulting table DNS, IP, Errors_5, Errors_4, Errors_3, Total_Errors, Asset-ID, Asset-Tag
Will appreciate some guidance.
Thanks
... View more