Splunk Search

How do I get mvcount to display 0 when no field exists?

DamianS
Explorer

Hi all,

I have a search that looks something like this:

foo | extract pairdelim="|;]}" kvdelim="=:" mv_add=true | eval legs=mvcount(Leg)+1 | stats count by id, legs

The multi value field "Leg" has one of the 3 possible values "", "2", "2 3". I expected mvcount to work like count and when there are no values to display 0. Is there a way to display what I would I expect? Explicitly the mapping I wanted to do was from the multi value field "Leg": No Value -> 1, "2" -> 2, "2 3" -> 3

Any idea?

Tags (2)
0 Karma

cphair
Builder

The documentation says mvcount returns the number of values of the field if it's multivalued, 1 if it's singlevalued, and NULL otherwise. Given the mapping you describe, I think you want to do something like this:


... | eval legs=if(isnull(Leg),1,mvcount(Leg)+1)

cphair
Builder

You're welcome, @DamianS. Would you mind clicking the checkmark next to my answer to accept it? Thanks.

0 Karma

DamianS
Explorer

Perfect! Thanks for your help!

0 Karma
Get Updates on the Splunk Community!

New in Observability Cloud - Explicit Bucket Histograms

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

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...