Dashboards & Visualizations

Is it possible to update inputs.conf using input parameters taken from a dashboard splunk[splunk js]

anushay
New Member

Hi,

How can i send parameters from splunk js to python script using inputs.conf

Tags (1)
0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

Hi @anushay,

Yes, you can update configuration from dashboard using splunkjs.

1) Create custom endpoint which update configuration files. like inputs.conf.

see link for custom command tutorial: https://www.hurricanelabs.com/splunk-tutorials/splunk-custom-endpoints-part-1-the-basics

OR

You can use Splunk REST API for accessing/modifying configurations.

see below links:

http://docs.splunk.com/Documentation/SplunkCloud/6.6.3/RESTREF/RESTinput

http://docs.splunk.com/Documentation/Splunk/6.0/RESTAPI/RESTinput

2) Use mvc.service for accessing custom endpoint / REST API from javascript .
eg,

var deps = [
            "splunkjs/ready!",
            "splunkjs/mvc"
        ];
require(deps, function(mvc) {
    var service = mvc.createService();
    service.post(MY_URL, {}, function(err, response) {
    //HANDLE Request
     });
});

see below links to javascript:

http://dev.splunk.com/view/webframework-developapps/SP-CAAAE4A
http://dev.splunk.com/view/webframework-tutorials/SP-CAAAERA
http://dev.splunk.com/view/webframework-tutorials/SP-CAAAERB

I hope this information will help you to start. Let me know if any help required.

Happy Splunking

0 Karma
Get Updates on the Splunk Community!

.conf24 | Day 0

Hello Splunk Community! My name is Chris, and I'm based in Canberra, Australia's capital, and I travelled for ...

Enhance Security Visibility with Splunk Enterprise Security 7.1 through Threat ...

 (view in My Videos)Struggling with alert fatigue, lack of context, and prioritization around security ...

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...