Splunk Dev

Custom Alert Action - How to get search head DNS name?

hughkelley
Path Finder

I was expecting to find a helper object function for this, but I don't see one here:

https://docs.splunk.com/Documentation/AddonBuilder/4.1.1/UserGuide/PythonHelperFunctions

I want to use the DNS name/URL of the search head in my alert action code.   How can this be accessed (Splunk cloud, if it matters)?    At least in my local test server,  I see this, but it returns an IP address, not a DNS name.

helper.settings["server_uri"]
0 Karma

hughkelley
Path Finder

This was suggested to me by a colleague (reading the email alert action link hostname) .   This works nicely for me inside AOB code:

 

from splunk.clilib import cli_common as cli

def process_event(helper, *args, **kwargs):
   alert_actions_config = cli.getMergedConf("alert_actions")
    alert_actions_hostname = alert_actions_config.get("email", {}).get("hostname", None)
    if alert_actions_hostname:
        helper.log_debug("Alert action hostname: {}".format(alert_actions_hostname))

 

isoutamo
SplunkTrust
SplunkTrust

Hi

will splunk_server be your answer? 

At least rest return it for me 

| rest splunk_server=local /services/server/sysinfo f=splunk_server
| table splunk_server

Of course if you have set it to something else then it didn't work.

r. Ismo 

0 Karma

hughkelley
Path Finder

I'm afraid that returns the actual hostname, not the DNS name used for the UI and API.

sh-0000000000.XXX.splunkcloud.com

0 Karma
Get Updates on the Splunk Community!

Observability | How to Think About Instrumentation Overhead (White Paper)

Novice observability practitioners are often overly obsessed with performance. They might approach ...

Cloud Platform | Get Resiliency in the Cloud Event (Register Now!)

IDC Report: Enterprises Gain Higher Efficiency and Resiliency With Migration to Cloud  Today many enterprises ...

The Great Resilience Quest: 10th Leaderboard Update

The tenth leaderboard update (11.23-12.05) for The Great Resilience Quest is out >> As our brave ...