Using a third party XML editor
In most cases, you use the Splunk Web dashboard editor to edit Simple XML. See About the dashboard editor to learn more.
If you are using Splunk Enterprise, you can also use a third-party editor to work with dashboard source code files in your deployment.
Splunk Cloud Platform users cannot use a third-party editor because access to dashboard source code files is not available. If you have Splunk Cloud Platform, use the dashboard editor in Splunk Web.
Source code files for dashboards and forms
Dashboard and form source code files can include the following.
- Simple XML
- JavaScript
- CSS
- Static HTML and image files imported by reference
File usage requirements
File system write access
You must have write access to the Splunk deployment file system to access the Simple XML files as well as supporting CSS and JavaScript files. If you do not have write access, check with an administrator.
Dashboard source file permissions
After copying dashboard source files, makes sure that you can read and write to them. Read and write permissions on the files are defined separately from dashboard user access permissions.
File directories and locations
Use the local directory for source code files
When you edit Simple XML in the dashboard editor, source code file changes are written to the /local
directory. Put dashboard source code files that you edit with a third-party editor in the /local
directory.
Caution: Do not put Simple XML source files in the /default
directory. Files in the /default
directory are overwritten on deployment and app updates.
For more information on directories and file precedence, see Configuration file precedence.
File location and permissions
Source code file location depends on the file type and permissions.
Simple XML and prebuilt panel source files
The /views
directory of an app contains the following files.
- Simple XML files
- Panel files available by reference in a dashboard. See Create and add a panel by reference for more information.
- Legacy Advanced XML files
Put Simple XML and panel source code files in the following locations for each permission type.
Permission type | Location |
---|---|
Shared in app |
$SPLUNK_HOME/etc/apps/<app>/local/data/ui/views/<file_name> |
Private |
$SPLUNK_HOME/etc/users/<user>/<app>/local/data/ui/views/<file_name> |
HTML files
The /html
directory in an app contains source files for dashboards converted to HTML.
Put HTML files in the following locations for each permission type.
Permission type | Location |
---|---|
Shared in app |
$SPLUNK_HOME/etc/apps/<app>/local/data/ui/html/<dashboard_file_name> |
Private | $SPLUNK_HOME/etc/users/<user>/<app>/local/data/ui/html/<dashboard_file_name> |
Show source code file changes in Splunk Web
To display changes to dashboard source code files, refresh configurations on your Splunk deployment by using the debug/refresh
endpoint.
http://localhost:8000/debug/refresh
After refreshing the instance, reload the edited dashboard.
Importing CSS, JavaScript, and other static files
A dashboard can import CSS and JavaScript files as well as image files and static HTML files. These files are in the following location. The files cannot be in a subdirectory.
$SPLUNK_HOME/etc/apps/<app_name>/appserver/static/
By default, this directory contains the following two files:
dashboard.css
dashhboard.js
You can edit default files at this location or add additional CSS and JavaScript files. You can also add any HTML files that you want to reference from a dashboard.
Import JavaScript and CSS files
Use the script
and stylesheet
attributes in <dashboard>
or <form>
element to import a JavaScript or CSS file from the default location for an app. You can also reference script and CSS files from other apps.
Examples
Import files from the same app
<dashboard script="myScript.js" stylesheet="myStyles.css"> . . . </dashboard>
Import files from another app
<dashboard script="myApp:myScript.js" stylesheet="myApp:myStyles.css"> . . . </dashboard>
Form examples | Use drilldown for dashboard interactivity |
This documentation applies to the following versions of Splunk® Enterprise: 7.0.0, 7.0.1, 7.0.2, 7.0.3, 7.0.4, 7.0.5, 7.0.6, 7.0.7, 7.0.8, 7.0.9, 7.0.10, 7.0.11, 7.0.13, 7.1.0, 7.1.1, 7.1.2, 7.1.3, 7.1.4, 7.1.5, 7.1.6, 7.1.7, 7.1.8, 7.1.9, 7.1.10, 7.2.0, 7.2.1, 7.2.2, 7.2.3, 7.2.4, 7.2.5, 7.2.6, 7.2.7, 7.2.8, 7.2.9, 7.2.10, 7.3.0, 7.3.1, 7.3.2, 7.3.3, 7.3.4, 7.3.5, 7.3.6, 7.3.8, 8.0.2, 8.0.3, 8.0.4, 8.0.5, 8.0.6, 8.0.7, 8.0.8, 8.0.9, 8.0.10, 9.0.0, 9.0.1, 9.0.2, 9.0.3, 9.0.4, 9.0.5, 9.0.6, 9.0.7, 9.0.8, 9.0.9, 9.0.10, 9.1.0, 9.1.1, 9.1.2, 9.1.3, 9.1.4, 9.1.5, 9.1.6, 9.2.0, 9.2.1, 9.2.2, 9.2.3, 9.3.0, 9.3.1, 7.3.7, 7.3.9, 8.0.0, 8.0.1
Feedback submitted, thanks!