Splunk Search

Count objects grouped by transaction

mpdharley
Engager

I need to count the number objects grouped by a transaction command. The command is:

index=* sourcetype="pan:*"
| transaction src_ip maxspan=2min
| table src_ip, app

I need to provide a count for "app" and then limit the results to only those groups with more than 5 apps returned within the time frame.

Thank you,

Mike

Labels (2)
0 Karma
1 Solution

scelikok
SplunkTrust
SplunkTrust

Hi @mpdharley,

Please try below;

index=* sourcetype="pan:*"
| transaction src_ip maxspan=2min
| stats dc(app) as count values(app) as app by src_ip
| where count>5

 

If this reply helps you an upvote and "Accept as Solution" is appreciated.

View solution in original post

scelikok
SplunkTrust
SplunkTrust

Hi @mpdharley,

Please try below;

index=* sourcetype="pan:*"
| transaction src_ip maxspan=2min
| stats dc(app) as count values(app) as app by src_ip
| where count>5

 

If this reply helps you an upvote and "Accept as Solution" is appreciated.

mpdharley
Engager

Worked perfectly, thanks!

0 Karma
Get Updates on the Splunk Community!

AI for AppInspect

We’re excited to announce two new updates to AppInspect designed to save you time and make the app approval ...

App Platform's 2025 Year in Review: A Year of Innovation, Growth, and Community

As we step into 2026, it’s the perfect moment to reflect on what an extraordinary year 2025 was for the Splunk ...

Operationalizing Entity Risk Score with Enterprise Security 8.3+

Overview Enterprise Security 8.3 introduces a powerful new feature called “Entity Risk Scoring” (ERS) for ...