Splunk Search

Help creating a table that shows unique events from last 24hrs, that have not occurred within the last 30days

JAvnaim
Explorer

Hello,

I have an index with ALPR (license plate) data. I'd like to create a table, that shows unique plates detected within the last 24hrs, that were not previously detected within the last 30 days. I tried using the search below, however, it's not returning the desired results.
I think it's because I have not indicated which field to search on (in this case, it would be Plate).

Any help would be greatly appreciated. Thanks!

index="alpr_logs" source="http:openalpr" Is_Parked=False earliest=-1d latest=now NOT [search index="alpr_logs" source="http:openalpr" Is_Parked=False earliest=-30d latest=-1d] | table Plate Region Color Make Model Year
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Your suspicion is correct. The subsearch needs to be more specific about what it returns.

index="alpr_logs" source="http:openalpr" Is_Parked=False earliest=-1d latest=now NOT 
  [ search index="alpr_logs" source="http:openalpr" Is_Parked=False earliest=-30d latest=-1d | fields Plate | format ] 
| table Plate Region Color Make Model Year
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

Your suspicion is correct. The subsearch needs to be more specific about what it returns.

index="alpr_logs" source="http:openalpr" Is_Parked=False earliest=-1d latest=now NOT 
  [ search index="alpr_logs" source="http:openalpr" Is_Parked=False earliest=-30d latest=-1d | fields Plate | format ] 
| table Plate Region Color Make Model Year
---
If this reply helps you, Karma would be appreciated.

JAvnaim
Explorer

This worked great; thank you!

0 Karma
Get Updates on the Splunk Community!

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...

Let’s Get You Certified – Vegas-Style at .conf24

Are you ready to level up your Splunk game? Then, let’s get you certified live at .conf24 – our annual user ...