Splunk Dev

Two transactions results in one query

dwong2
New Member

....search
| eval View=case(like(publishId,"%U"),"unsubscribed",like(publishId,"%S"),"subscribed")
| transaction startswith="Enter" endswith="Exit" by deviceID View maxpause=300s
| table View accountExId deviceID action dateTime eventcount duration
| stats count(deviceID) as count by View

How can I get the transactions that are greater than 300s in duration as well?

Is there a way to show the transactions that are greater than 300s as well in one search?

Tags (1)
0 Karma

jkat54
SplunkTrust
SplunkTrust

....search
| eval View=case(like(publishId,"%U"),"unsubscribed",like(publishId,"%S"),"subscribed")
| transaction startswith="Enter" endswith="Exit" by deviceID View
| table View accountExId deviceID action dateTime eventcount duration
| stats count(deviceID) as count by View

The same search but remove maxpause=300

If you want to append see the other answer regarding append.

You could also do the above and use the duration field that is created by the transaction command. You can use eval and a case statement involving the duration field to creat low, medium, and high values for a field called severity... for example

0 Karma

adonio
Ultra Champion

can you kindly share a some sample data?
you might be able to get all transactions and duration just by removing the maxpause=300s attribute

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...