Splunk Search

how to: count(Values) where status=0

deanilol
Explorer

So I have the columns "Values" and "Status" and I only want to count Values where the status is zero. How can I do this?

here is my search:

source="*\\XML\\Example_Result\\Event_meter.xml" | table EventID EventName Value Status | join type=left EventID [search source="*\\XML\\Example_Result\\Event_map.xml" | where  EventType="Transaction" | table EventID EventName] | where EventID!=-1 | chart count(Value where status!=0) AS PASS, count(Value where status=0) AS FAIL by EventID

Thanks!

Tags (3)
0 Karma
1 Solution

aweitzman
Motivator

You want to use the following construction:

chart count(eval(status!=0)) as PASS count(eval(status=0)) as FAIL

(Question: Why the join? You already have EventName in the main search.)

View solution in original post

ngatchasandra
Builder

Hi,
Try, if you want to count only the values where status is 0, you can do this:

source="XMLExample_ResultEvent_meter.xml" | table EventID EventName Value Status | join type=left EventID [search source="XMLExample_ResultEvent_map.xml" | where EventType="Transaction" | table EventID EventName] | where EventID!=-1 OR  status==0 |chart count(Value) AS PASS  by EventID
0 Karma

aweitzman
Motivator

You want to use the following construction:

chart count(eval(status!=0)) as PASS count(eval(status=0)) as FAIL

(Question: Why the join? You already have EventName in the main search.)

Get Updates on the Splunk Community!

Why You Can't Miss .conf25: Unleashing the Power of Agentic AI with Splunk & Cisco

The Defining Technology Movement of Our Lifetime The advent of agentic AI is arguably the defining technology ...

Deep Dive into Federated Analytics: Unlocking the Full Power of Your Security Data

In today’s complex digital landscape, security teams face increasing pressure to protect sprawling data across ...

Your summer travels continue with new course releases

Summer in the Northern hemisphere is in full swing, and is often a time to travel and explore. If your summer ...