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!

Introducing ITSI 5.0: Unified Visibility and Actionable Insights

Introducing ITSI 5.0: Unified Visibility and Actionable Insights Tuesday, July 21, 2026  |  10:00AM PT / ...

Inside Splunk Agent Observability: Understanding Agent Behavior, Tokens & Costs

Inside Splunk Agent Observability:Understanding Agent Behavior, Tokens & Costs Thursday, August 06, ...

From Data to Insight: Announcing the Winners of the Splunk Dashboard Contest

Hi Splunkers, First off, thank you to everyone who participated in our very first From Data to Insight: The ...