Splunk Search

How to edit my search to alert when a certain field value occurs more than 10 times in an hour and display results in a table?

kiran331
Builder

Hi all,

I'm trying to trigger an alert when an ID occurs more than 10 times in an hour and alert should be in a table format. This is the search I'm using:

index="abc"|stats count by ID|where count>10| table count ID TIME  MACHINE NAME
0 Karma
1 Solution

sundareshr
Legend

In your search, the only fields available after the stats command will be count and ID. You need to include the other fields as well. Try something like this

index="abc"|bin span=1h _time as Time | eventstats count AS occurrence by Time ID|where occurrence >10| table count ID Time MACHINE NAME

View solution in original post

sundareshr
Legend

In your search, the only fields available after the stats command will be count and ID. You need to include the other fields as well. Try something like this

index="abc"|bin span=1h _time as Time | eventstats count AS occurrence by Time ID|where occurrence >10| table count ID Time MACHINE NAME
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...