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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...