Dashboards & Visualizations

module name tag error

surekhasplunk
Communicator

Here am getting 2 validation warnings for line 3 .

I want to create custom buttons in my dashoard . how to do that

Tags (2)
0 Karma

niketn
Legend

@surekhasplunk, you are trying to use module and param which have been deprecated long time back from development point of view. You can use Simple XML Dashboard with HTML panel to introduce your own HTML contents like Button and then use JavaScript Extension to code the button functionality and perform actions using Splunk JS Stack. Following is a simple example:

Dashboard Simple XML code:

<dashboard script="hello_world_click.js">
  <label>Submit Button Simple XML JS Extension</label>
  <row>
    <panel>
      <html>
        <a id="myHelloButton" class="btn submit-btn">Submit</a>
      </html>
    </panel>
  </row>
</dashboard>

JavaScript Extension code from hello_world_click.js

require([
    "splunkjs/mvc/simplexml/ready!"
], function() {

    $('#myHelloButton').on("click",function(){
        alert("Hello World");
        console.log("Hello World Console Log");
    });
});

You would need to place the JavaScript code under your Splunk Apps appserver/static folder i.e. $SPLUNK_HOME/etc/apps/<YourAppName>/appserver/static$
Since this requires static files, you may have to restart/refresh/bump your Splunk instance and clear internet browser history if required.

You can get several examples of Simple XML JS Extension from Splunk Dashboard Examples App from Splunkbase: https://splunkbase.splunk.com/app/1603/

You can also explore dev.splunk.com for Splunk Web Framework related examples which covers Simple XML JS Extension and Splunk JS Stack.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Get Updates on the Splunk Community!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk on November 6 at 11AM PT, and empower your SOC to reach new heights! Duration: ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...