Splunk Search

How to search CSV data to filter out events with null values in ColumnA, then only return events where values in ColumnB are found in ColumnA?

gajananh999
Contributor

Hello All,

I have CSV data and it consists of 3 columns “Name”, “Number” and “Data”.

We need to filter out data based on the “Number” column first, and then check if the “Data” column has values which are there in the “Name” column for that particular value of “Number“ column.

Ex.

Name       Number      Data
Dragonfruit  4      Chocolate
Honey          4     
Chocolate      4          Kiwi
Icecream        4    
Custardapple    4         Error
Apple          4     

and we need to first remove Data=Null
Final Output should be like this.

Name    Number  Data

Chocolate   4   Kiwi

Custardapple    4   Error

May I know how we can achieve this in a search?

Thanks
Gajanan Hiroji

Tags (4)
0 Karma

stephanefotso
Motivator

Hello! Just try some thing like this

<your  base search> |were Data!=" "|table  Name Number Data

Thanks

SGF
0 Karma

gajananh999
Contributor

Hello Thanks for the reply but how do you match Data column values with Name Column values with respect to particular number?

0 Karma

stephanefotso
Motivator

Here you go:

   <your  base search> |were Data!=" "|stats values(Name) as Name, values(Data) as Data by Number|table Number  Data  Name 
SGF
0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

Splunk is officially part of Cisco

Revolutionizing how our customers build resilience across their entire digital footprint.   Splunk ...

Splunk APM & RUM | Planned Maintenance March 26 - March 28, 2024

There will be planned maintenance for Splunk APM and RUM between March 26, 2024 and March 28, 2024 as ...