Splunk Search

How to generate a search that will filter data from a CSV file?

laudai
Path Finder

hi guys I'm new to Splunk

I have two csv files: A and B
A has name, ages, height, weight
B is the limitation factor for A file, it's has name, ages, height, weight too.

how can I list :

where a.name = b.name AND a.ages >b.ages AND a.height < b.height AND a.weight < b.weight

Thank you for your answer.

0 Karma
1 Solution

DalJeanis
Legend
| inputcsv a.csv 
| rename ages as agesA, height as heightA, weight as weightA 
| table name agesA heightA weightA
| join type=left 
   [inputcsv b.csv 
    | rename ages as agesB, height as heightB, weight as weightB 
    | table name agesB heightB weightB] 
| where agesA>agesB AND heightA<heightB AND weightA<weightB

The renames are not both necessary, but it clarifies which field is which for you.

You could also use a lookup instead of a join, but this one will work fine.

View solution in original post

DalJeanis
Legend
| inputcsv a.csv 
| rename ages as agesA, height as heightA, weight as weightA 
| table name agesA heightA weightA
| join type=left 
   [inputcsv b.csv 
    | rename ages as agesB, height as heightB, weight as weightB 
    | table name agesB heightB weightB] 
| where agesA>agesB AND heightA<heightB AND weightA<weightB

The renames are not both necessary, but it clarifies which field is which for you.

You could also use a lookup instead of a join, but this one will work fine.

laudai
Path Finder

Thank you for your answer.

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 ...