Splunk Search

help to remove an empty line

jip31
Motivator

hI

I use the request below
sometimes I have only value for Free_Space and sometimes only value for TotalSpace instead both
I need a way to don't dispalay the result (in table) if one of these 2 fields is NULL
Could you help ME please??

(eventtype="TotalSpace" OR ( eventtype="DiskHealthSize" AND Value<15)) 
| eval time = strftime(_time, "%m/%d/%Y %H:%M") 
| eval Value = round(Value, 1). " %" 
| eval TotalSpace = TotalSpaceKB/1024 
| eval TotalSpace = round(TotalSpace/1024,1). " GB" 
| stats latest(Value) as Free_Space latest(TotalSpace) as TotalSpace by host 
| sort +Free_Space limit=10

Thanks

Tags (1)
0 Karma
1 Solution

vnravikumar
Champion

Hi @jip31

Try like

your query...
|search Value=* AND TotalSpace=*
| stats latest(Value) as Free_Space latest(TotalSpace) as TotalSpace by host 
 | sort +Free_Space limit=10

View solution in original post

0 Karma

Vijeta
Influencer

can you share your events ?

0 Karma

jip31
Motivator

Hi
Thanks but i am not sure that * is the better day? I try with fillnull but i dont succeed

0 Karma

vnravikumar
Champion

Or try with |where Value !="" AND TotalSpace !=""

0 Karma

vnravikumar
Champion

or |where isnotnull(Value ) AND isnotnull(TotalSpace )

0 Karma

jip31
Motivator

yes many thanks

0 Karma

vnravikumar
Champion

@jip31 have you tried?

0 Karma

vnravikumar
Champion

Hi @jip31

Try like

your query...
|search Value=* AND TotalSpace=*
| stats latest(Value) as Free_Space latest(TotalSpace) as TotalSpace by host 
 | sort +Free_Space limit=10
0 Karma
Get Updates on the Splunk Community!

Combine Multiline Logs into a Single Event with SOCK - a Guide for Advanced Users

This article is the continuation of the “Combine multiline logs into a single event with SOCK - a step-by-step ...

Everything Community at .conf24!

You may have seen mention of the .conf Community Zone 'round these parts and found yourself wondering what ...

Index This | I’m short for "configuration file.” What am I?

May 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with a Special ...