Splunk Search

How to write a search to omit transactions unless the URLs are different in the transaction?

edookati
Path Finder

I am using the below query, but i need to omit the transactions unless the URLs are different in the transaction.

index=olb_logs sourcetype="access-API" (URL="/bankapi/session" method=POST ) OR (URL="/bankapi/accounts" method=GET) | transaction sessionID maxspan=3s

Thanks.

Tags (1)
0 Karma

martin_mueller
SplunkTrust
SplunkTrust

Your URLs likely are stored in a multi-value field, so you can exploit that to filter:

... | where mvcount(URL) > 1

Alternatively, if you have to make sure two specific URLs are present, you can again use the multi-value property to filter like this:

... | search URL="/bankapi/session" URL="/bankapi/accounts"

Note, that's using an implicit AND instead of OR... both will yield true for the transactions you want because the MV field contains both values.

0 Karma

somesoni2
SplunkTrust
SplunkTrust

It would be helpful if you can post some sample events and your expected output of transaction command.

0 Karma

somesoni2
SplunkTrust
SplunkTrust

Try this

index=olb_logs sourcetype="access-API" (URL="/bankapi/session" method=POST ) OR (URL="/bankapi/accounts" method=GET) | dedup URL| transaction sessionID maxspan=3s
0 Karma

edookati
Path Finder

even this is not giving me accurate results.
Thanks a lot, for the response.

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...