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!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...