Splunk Search

How to select one event from a transaction?

juanpavergara
Engager

I need to group the events (in this case by JSESSIONID) and select the one with the max date

I have the groups with the following query:

date_month="march" date_mday>="25" date_mday<="26" | transaction JSESSIONID

How can I get every transaction only with the newest event?

TKS!

0 Karma

niketn
Legend

@juanpavergara... do you need only one event for each JSESSIONID with only the latest event(or you need correlated events as well with time of transaction as latest time?)
Instead of transaction you should try dedup command, as transaction will be very expensive command specially when you do not need correlated event rather just the latest event. Since latest data is fetched first, dedup will get only the latest match for each JSESSIONID

date_month="march" date_mday>="25" date_mday<="26" 
| dedup JSESSIONID
| table _time JSESSIONID _raw

Instead of _raw you can select specific fields you need.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

koshyk
Super Champion

hi
can u please try

date_month="march" date_mday>="25" date_mday<="26" | transaction JSESSIONID | stats latest(JSESSIONID)

may be you can try any of the option try to fit whichever best

first(JSESSIONID)
latest(JSESSIONID)
last(JSESSIONID)
earliest(JSESSIONID) 
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!

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...

Event Series: Level up your SOC: Advancing with Splunk Enterprise Security

AI has fundamentally raised the stakes for security operations, and this three-part series is your guide to ...

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...