Splunk Search

Is it possible to perform stats within a transaction?

the_wolverine
Champion

I have a transaction with multiple values for the same field. Is it possible for me to do a dc(other_field) within a transaction?

My search | transaction same_field maxspan=1m | stats dc(other_field)

Above doesn't seem to work, it just throws away my transactions.

Tags (2)
1 Solution

wpreston
Motivator

I think mvcount() could be your friend here. Something along these lines:

your search | transaction same_field maxspan=1m | eval same_field_count=mvcount(same_field)

...something like that. same_field_count should be a count of the distinct values of same_field within each transaction. If you want a total count of ALL values of same_field (including duplicates) within each transaction, use the mvlist option within your transaction. I'm not where I can test this search but I think it will be pretty close to what you need.

View solution in original post

wpreston
Motivator

I think mvcount() could be your friend here. Something along these lines:

your search | transaction same_field maxspan=1m | eval same_field_count=mvcount(same_field)

...something like that. same_field_count should be a count of the distinct values of same_field within each transaction. If you want a total count of ALL values of same_field (including duplicates) within each transaction, use the mvlist option within your transaction. I'm not where I can test this search but I think it will be pretty close to what you need.

nivedita_viswan
Path Finder

I dont believe mvcount returns a count of the distinct values. It simply returns a count of the number of values

0 Karma

wpreston
Motivator

Sure, happy to help!

0 Karma

the_wolverine
Champion

Yes! Thank you!!

0 Karma

kristian_kolb
Ultra Champion

eventstats perhaps?

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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 GA in US-AWS!

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