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!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...