Splunk Dev

running a python script in dashboard

mdmaala
Communicator

hi! for my dashboard, I want to add a duration timer using a python script. is it possible to do this in splunk? thank you so much!

0 Karma

harshpatel
Contributor

You can put custom javascript which does service request every time the interval runs out. The service can be a custom endpoint which runs your python script.

var service = mvc.createService();
service.get('/services/custom_endpoint', params, function (err, response) {
    if (!err) {
       // do something
    }
});

mdmaala
Communicator

thank you so much! I will try this!

0 Karma

niketn
Legend

@mdmaala, you can check out script command that you can execute through SPL. The documentation also has link to creation of a custom search command using python and other language.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

mdmaala
Communicator

I'll check on this. thank you so much @niketnilay !

0 Karma
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, ...