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!

Splunk + ThousandEyes: Correlate frontend, app, and network data to troubleshoot ...

 Are you tired of troubleshooting delays caused by siloed frontend, application, and network data? We've got a ...

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

🔐 Trust at Every Hop: How mTLS in Splunk Enterprise 10.0 Makes Security Simpler

From Idea to Implementation: Why Splunk Built mTLS into Splunk Enterprise 10.0  mTLS wasn’t just a checkbox ...