Splunk Search

Is there another way to use min max?

karu0711
Communicator

I am running search.
basesearch  |eventstats count values(date) as Date by ID 

result I get count 2 or 3 or 1
how do I get count=1 OR count=3. 
how I use max(count)  and min(count). 
I need this because min(count) will new data and max(count) will old data. 
Is there any other way to do this?

 

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Perhaps you mean streamstats to number the events which would normally be in reverse chronological order i.e. newest first?

basesearch
| streamstats count by ID

karu0711
Communicator

but I want only output new finding separate table and old in separate table. 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

For new use:

basesearch
| streamstats count by ID
| where count == 1

For old use:

basesearch
| streamstats count by ID
| eventstats max(count) as last by ID
| where count == last
0 Karma
Get Updates on the Splunk Community!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...