Splunk Search

How to filter out specific rows in a table based on column values?

parizanov
New Member

Hello,

I have a table like the one below, with a column containing repeated id numbers form one side and respective messages for each id on the other side. I want to make a search which can show the id numbers that have only "Error" message as value and skip repeating ids that have Error and OK. Any help is much appreciated.

col1       col2
11111      Error
11111      OK
55555      Error

In the example, successful query should return 55555.

Tags (4)
0 Karma
1 Solution

sundareshr
Legend

Try this

base search | chart count over col1 by col2 | where col2=0

*OR*

base search | eventstats values(col2) as status by col1 | where isnull(mvfind(status, "OK"))

View solution in original post

0 Karma

sundareshr
Legend

Try this

base search | chart count over col1 by col2 | where col2=0

*OR*

base search | eventstats values(col2) as status by col1 | where isnull(mvfind(status, "OK"))
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...