Hello, I have a very involved query involving 4 joins and I am looking for a way to speed it up. The purpose of this is for a dashboard that cleanly presents the needed data in a single table instead of 5 separate panels (as per the requirements given to me). One of the problems I am running into is that some of the queries have different indexes, so I need to have the multiple searches for them, and appendcols doesn't seem to work since the only real thing in common between them is that 3 share the same index so there isn't one clean base search to use. I'm not sure I could post the query here due to regulations, So I will try to be as specific as possible. How smart is splunk when it comes to queries? 3 of the queries I have the same index, so could I do something like the below: index=xyz (A and B and C) OR (D and E and F) OR (G and H and I) | stats based on (A and B and C) | stats based on (D and E and F) | stats based on (G and H and I) If you have any other tips or resources on speeding up joined queries that could help, that would be great as well
... View more