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!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...