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!

🔐 Trust at Every Hop: How mTLS in Splunk Enterprise 10.0 Makes Security Simpler

From Idea to Implementation: Why Splunk Built mTLS into Splunk Enterprise 10.0  mTLS wasn’t just a checkbox ...

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...