Splunk Search

Can i count the value for the multivalue field?

jasklee
Engager

I want to count the number for the multivalue field

count(eval x=commands("search passed | search sub_areaA")) AS sub_areaAPass

is there any other way or which part of this am i wrong?

Tags (3)
0 Karma

somesoni2
Revered Legend

You want to count the no of values inside the multivalued field? Look for "mvcount" command available with eval.

0 Karma

wpreston
Motivator

Try using streamstats, like:

... your search ... | streamstats count(YourMultiValueField) window=1 global=f | ...rest of your search or report commands...
0 Karma

jasklee
Engager

is it like this?

streamstats count(eval(status="passed"|sub_area="sub_areaA") window=1 global=f

??

or other format?

0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...