| dbquery Server1 "SELECT value1, value2 FROM db1.table"
| join type=left value2 [| dbquery Server2 "SELECT value3 FROM db2.table"]
| table value1, value2, value3
I have two tables, in two databases on two different servers that I need to join. They have a single common value (we'll say value2 here). When running the actual code, "value3" is the same for every row. I'm not sure where I have this wrong, but I don't understand how the splunk join works between two servers like this.
Thoughts?
... View more