Dashboards & Visualizations

Adding a CSS and JavaScript source to an app's HTML Dashboard

Jonathan_hyde
Explorer

Hello all,

I've looked around and have tried some other answers but are unable to have it functioning correctly.

We're looking to add CSS and JavaScript to an app, however when we load our instance we are unable to load the source up, we've made sure the directory is correct, we've used the regular HTML expressions:

LukeMurphey
Champion

Put the content in application.css and application.js accordingly. The paths are as follows:

  • $SPLUNK_HOME/etc/apps//appserver/static/application.js
  • $SPLUNK_HOME/etc/apps//appserver/static/application.css

These files will be loaded for every page within your app context.

You can put other resources (such as images) in the appserver/static directory too. Then, refer to them in the CSS using a relative path.

Here is an example:
Assume that an image named "picture.png" was placed in the following directory:

$SPLUNK_HOME/etc/apps//appserver/static/images/picture.png

You could reference this in your stylesheet like this:

.somePicture {
    background-image: url('images/picture.png');
}

LukeMurphey
Champion

Just added info to the answer regarding how to link to images in your stylesheet.

0 Karma

Jonathan_hyde
Explorer

Brilliant it worked thanks, final question - do you know how to add images, as the css links to the images too? Thanks.

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...