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
Get Updates on the Splunk Community!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI! Discover how Splunk’s agentic AI ...

[Puzzles] Solve, Learn, Repeat: Dereferencing XML to Fixed-length events

This challenge was first posted on Slack #puzzles channelFor a previous puzzle, I needed a set of fixed-length ...

Stay Connected: Your Guide to December Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...