Splunk Search

Group event

Nadeige
New Member

Hello,

I have some log events that are structured like that:

<timestamp> - [INFO] <serialnumber 1>
<timestamp> - [INFO] <errocode>
<timestamp> - [INFO] <errocode>
<timestamp> - [INFO] <serialnumber 2>
<timestamp> - [INFO] <errocode>

How can I group the error_code events with the corresponding serialnumber event, meaning the previous event?

Thank you

Labels (1)
0 Karma

to4kawa
Ultra Champion
| makeresults
| eval _raw="- [INFO] 123456
- [INFO] 402
- [INFO] 404
- [INFO] 789012
- [INFO] 412"
| multikv noheader=t
| table _time _raw
| streamstats count
| eval _time = _time + count * 2
| rex "(?<serialnumber>\d{6})"
| rex "\b(?<error_code>\d{3}"\b)
| streamstats count(eval(serialnumber)) as session
| eventstats list(error_code) by session

like above?
sort _time (or reverse) and try streamstats

0 Karma

isoutamo
SplunkTrust
SplunkTrust

Are you looking for search or indexing time solutions?

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas     Cisco Live 2026 is almost here, and this ...

What Is the Name of the USB Key Inserted by Bob Smith? (BOTS Hint, Not the Answer)

Hello Splunkers,   So you searched, “what is the name of the usb key inserted by bob smith?”  Not gonna lie… ...

Automating Threat Operations and Threat Hunting with Recorded Future

    Automating Threat Operations and Threat Hunting with Recorded Future June 29, 2026 | Register   Is your ...