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!

Aligning Observability Costs with Business Value: Practical Strategies

 Join us for an engaging Tech Talk on Aligning Observability Costs with Business Value: Practical ...

Mastering Data Pipelines: Unlocking Value with Splunk

 In today's AI-driven world, organizations must balance the challenges of managing the explosion of data with ...

Splunk Up Your Game: Why It's Time to Embrace Python 3.9+ and OpenSSL 3.0

Did you know that for Splunk Enterprise 9.4, Python 3.9 is the default interpreter? This shift is not just a ...