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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...