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!

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...

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 ...