Splunk Search

Paring events in a table

trever
Loves-to-Learn

I have events that happen in pairs. A request and a response from a server. What I would like to do is be able to easily table those side by side. Right now they return in the normal table but id like to be able to see them side by side instead. Right now I'm rexing out the data to able it. Is there a way to accomplish this? I need them in pairs of 2. So if some reason there is 4, which isn't normal, it would do two rows with 2 columns.

This is what I'm doing right now:

[query]
| rex field=message "(Received|Sent) raw (?<processor>.*) (response|request) (?<raw_message>.*})"
| table raw_message
0 Karma

to4kawa
Ultra Champion
 [query]
 | rex field=message "(?<method>Received|Sent) raw (?<processor>.*) (?<status>response|request) (?<raw_message>.*})"
 |stats list(method) as method list(status) as status list(raw_message) as raw_message by processor
0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...