Alerting

How does Splunk work internally when I create an alert and gets loaded to savedsearches.conf?

paramagurukarth
Builder

How do Splunk alerts work?

If we make any changes to the savedsearches.conf manually, it will only get loaded after restarting / refreshing splunk (http://..//debug/refresh), but when we create an alert using the Splunk Web UI, it creates an entry in the same savedsearches.conf and the changes are loaded at the same time.

What does Splunk do internally? Does it trigger the same refresh process or something else?
( If it triggers the refresh process, please let me know how to do that using Splunk's python SDK )

Thanks..

0 Karma
1 Solution

paramagurukarth
Builder

Found a way.. I just want to share.... Please let me know if I am missing anything..
(While we doing http://..//debug/refresh, refres method inside debug.py is executed .. there they call the refreshEntities of splunk.entity.. I just tried the same below...)

try:
     splunk.entity.refreshEntities("admin/savedsearch", namespace='search')
     output.append("Refresh oK ")
except:
     output.append("Failed")
     return '\n'.join(output)

The above loads any manual modification done in savedsearches.conf
It works for me...

View solution in original post

paramagurukarth
Builder

Found a way.. I just want to share.... Please let me know if I am missing anything..
(While we doing http://..//debug/refresh, refres method inside debug.py is executed .. there they call the refreshEntities of splunk.entity.. I just tried the same below...)

try:
     splunk.entity.refreshEntities("admin/savedsearch", namespace='search')
     output.append("Refresh oK ")
except:
     output.append("Failed")
     return '\n'.join(output)

The above loads any manual modification done in savedsearches.conf
It works for me...

Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...