Alerting

Alert for No events indexed for Sourcetypes

peter_gianusso
Communicator

Trying to create an alert that given multiple sourcetypes, will alert when there are no events by sourcetype in the last 2 hours

So if my single saved search includes 6 sourcetypes and 2 have not had an event indexed in the last 4 hours, then the alert will contain a list of the 2 sourcetypes.

I tried the following:
sourcetype="PROD_FIC_NJ_OMNI_LOG" OR sourcetype="PROD_HODA_MN_OMNI_LOG" OR sourcetype="PROD_HODA_PA_OMNI_LOG" OR sourcetype="PROD_NBCAP_OMNI_LOG") |bucket _time span=4h| stats count by sourcetype

But it only returns the sourcetypes that have events. Not the sourcetypes that have no events

Thanks!!

Tags (2)
0 Karma
1 Solution

Ayn
Legend

A much quicker and more efficient approach would be to use the metadata command instead (if these sourcetypes you define have gotten events at least at some point).

| metadata type=sourcetypes | search sourcetype="PROD_FIC_NJ_OMNI_LOG" OR sourcetype="PROD_HODA_MN_OMNI_LOG" OR sourcetype="PROD_HODA_PA_OMNI_LOG" OR sourcetype="PROD_NBCAP_OMNI_LOG" | where lastTime<now()-14400

View solution in original post

Ayn
Legend

A much quicker and more efficient approach would be to use the metadata command instead (if these sourcetypes you define have gotten events at least at some point).

| metadata type=sourcetypes | search sourcetype="PROD_FIC_NJ_OMNI_LOG" OR sourcetype="PROD_HODA_MN_OMNI_LOG" OR sourcetype="PROD_HODA_PA_OMNI_LOG" OR sourcetype="PROD_NBCAP_OMNI_LOG" | where lastTime<now()-14400
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

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

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...