I have two indexes indexA and indexB . IndexA contains userID and Salary , IndexB contains userID, Name i want to print a dash board with Name , salary ( matching userIDs from both indexes
There are a number of ways to do that, but the simplest is
index=indexA OR index=indexB
| stats values(*) by userID
| table Name, Salary