Splunk Search

How to limit the aggregate value like 'having' in sql

arunbs
Explorer

Hi, I want to filter the records after aggrigating it, almost similar to 'having' in sql. Here is search query:

source="rest://Data" 
| eval limit = substr(CreationDate, 1,4) | where limit = 2013 
| where 
(projectName=="Proj-1")  OR  
| chart 
dc(eval(case(State=="QA",ObjectID))) as "QA", 
dc(eval(case(State=="Dev",ObjectID))) as "Dev"
by Owner

Here, i want to show only those owners who have a non-zero QA count.

Thanks in advance.
Arun.

Tags (2)
0 Karma
1 Solution

kristian_kolb
Ultra Champion

I'm not quite sure I follow what you want to achieve. You can probably do this more efficiently;

The following would be a good start, but there was a missing statement after the 'OR' in your search:

source="rest://data" CreationDate=2013* State = QA OR State = Dev projectName=Proj-1 OR <something else> | chart dc(ObjectID) by State, Owner

Hope this helps,

K

View solution in original post

arunbs
Explorer

Thanks kristian and daniels for the quick answers. It indeed helps us to get what we wanted and also optimized it.

0 Karma

sdaniels
Splunk Employee
Splunk Employee

Take a look at this. Gives a nice comparison and a Splunk example to match the SQL.

http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/SQLtoSplunk

kristian_kolb
Ultra Champion

I'm not quite sure I follow what you want to achieve. You can probably do this more efficiently;

The following would be a good start, but there was a missing statement after the 'OR' in your search:

source="rest://data" CreationDate=2013* State = QA OR State = Dev projectName=Proj-1 OR <something else> | chart dc(ObjectID) by State, Owner

Hope this helps,

K

Get Updates on the Splunk Community!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...