Splunk Search

Display Field Even No Values

qygoh
Engager

Hi i encounter an issues when i try to display field in table form without any values my data look like table below:

ID Values
MAIN1 1.5
MAIN2

MAIN3

MAIN4 4.3

This is my search string:

Label="MIDPM"  Order=2 |stats latest(Value) as Value by ID| eval Value=round(Value,2)| eval Value=if(isnull(VALUE),0,Value)| rename ID as Label

The result i get was display Main1 and Main4 only. I fail to replace those fields as zero. Mind to how should i resolve this issues?

0 Karma

woodcock
Esteemed Legend

Try adding this:

 ... | eval Value=if(isnum(Value),Value,0)
0 Karma

qygoh
Engager

I just tried it out it only show me the result with MAIN1 AND MAIN4

0 Karma

woodcock
Esteemed Legend

You need to decide what the name of your "value" field is: is it VALUE, Value, or Values (you use each of this in different spots). Once you use the SAME NAME CONSISTENTLY, then this answer will work.

0 Karma

qygoh
Engager

is Value i tried this as well
if(isnull($result.MAIN2$),0.00,$result.MAIN2$)
it didn't working

0 Karma

qygoh
Engager

i not sure isn't possible due Splunk 6.4 didn't compatible with "fillnull" feature

0 Karma

woodcock
Esteemed Legend

Add this:

... | fillnull value="0" Value
0 Karma

qygoh
Engager

it didn't work the value is no null or empty that why "fillnull" no working

0 Karma

woodcock
Esteemed Legend

You need to decide what the name of your "value" field is: is it VALUE, Value, or Values (you use each of this in different spots). Once you use the SAME NAME CONSISTENTLY, then this answer will work.

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi qygoh,
have VALUE in uppercase is an error in your answer or is really uppercase?
because you should use

| eval Value=if(isnull(Value),0,Value)

Bye.
Giuseppe

0 Karma

qygoh
Engager

hi my value is in lower case. sorry for the typo. But it still no working due to no result found. It didn't show as null or empty.

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...