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!

Index This | Why did the turkey cross the road?

November 2025 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  🚀 Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Feel the Splunk Love: Real Stories from Real Customers

Hello Splunk Community,    What’s the best part of hearing how our customers use Splunk? Easy: the positive ...