Splunk Search

How to build a table from two index sources with a common id

nottheboss
Engager

I am completely new to splunk so correct me if i am wrong
i have 2 sources of data which contains status codes for the request with an id
1) index=some_index_1 source=some_source_1 status_code=* id=*
2) index=some_index_2 source=some_source_2 status_code=* id=*

i would like a table with
id, status_code (from index_1), status_code (from index_2)

how can i join the two data together and return a table with the fields?

Tags (1)
0 Karma
1 Solution

elliotproebstel
Champion

This can be a start, and you can adjust it as needed:

index=some_index_1 OR index=some_index_2 source=some_source1 OR source=some_source_2 
| eval status_code_1=if(index=some_index_1, status_code, NULL), status_code_2=if(index=some_index_2, status_code, NULL)
| stats values(status_code_1) AS status_code_1, values(status_code_2) AS status_code_2 BY id

View solution in original post

elliotproebstel
Champion

This can be a start, and you can adjust it as needed:

index=some_index_1 OR index=some_index_2 source=some_source1 OR source=some_source_2 
| eval status_code_1=if(index=some_index_1, status_code, NULL), status_code_2=if(index=some_index_2, status_code, NULL)
| stats values(status_code_1) AS status_code_1, values(status_code_2) AS status_code_2 BY id
Get Updates on the Splunk Community!

Observability Unlocked: Kubernetes Monitoring with Splunk Observability Cloud

  Ready to master Kubernetes and cloud monitoring like the pros?Join Splunk’s Growth Engineering team for an ...

Wrapping Up Cybersecurity Awareness Month

October might be wrapping up, but for Splunk Education, cybersecurity awareness never goes out of season. ...

🌟 From Audit Chaos to Clarity: Welcoming Audit Trail v2

🗣 You Spoke, We Listened  Audit Trail v2 wasn’t written in isolation—it was shaped by your voices.  In ...