Splunk Search

Compare columns in same table

carlospalma03
Engager

Hello, I have the following table:

column1 column2

Andrew Andrew
George George
Paris Berlin

I would like to get as output the following:

column 1 column2

Paris Berlin

Tables come from the use of the | table command

| table column1,column2

Is there any way this can be done?

I tried | table column1, column2 | where NOT match(column1,column2) but no results are found

0 Karma

oda
Communicator

Try the following command.

| table column1, column2 |where column1!= column2

carlospalma03
Engager

Turns out that one of my column names came from a json. Something like this:
|spath "object.property"| ....|table "object.property",column2

and oda's solution was not working at first until I did

|spath "object.property" output column1 | table column1,column2

My bad for not providing more info. Looks like to compare both things have to be strings and for some reason you cannot just use the path in the json

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...