You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In web.conf, you can configure Splunk to use a custom favicon:
customFavicon = <pathToMyFile, myApp:pathToMyFile, or blank for default>
* Customizes the favicon image across the entire application.
* If no favicon image file, the favicon default: the Splunk favicon.
* Supported favicon image files are .ico files, and should be square images.
* Place the favicon image file in the default or manual location:
* Default destination folder: $SPLUNK_HOME/etc/apps/search/appserver/static/customfavicon.
* Example: If your favicon image is located at $SPLUNK_HOME/etc/apps/search/appserver/static/customfavicon/favicon.ico, set 'customFavicon' to "customfavicon/favicon.ico".
* Manual location: Place the file in $SPLUNK_HOME/etc/apps/<myApp>/appserver/static/<pathToMyFile>, and set 'customFavicon' to
"<myApp:pathToMyFile>".
* Default: not set, Splunk Web uses the Splunk favicon.
Add-ons built with UCC currently do not support this custom favicon, because the HTML files do not render it.
This is what is missing (for example in base.html)
Import the util package: from splunk.appserver.mrsparkle.lib import util
Render the favicon in <head>: <link rel="shortcut icon" href="${util.getFaviconURL()}" />
What UCC version are you using?
5.63.0
Additional System Info
Linux
The text was updated successfully, but these errors were encountered:
Description
In
web.conf
, you can configure Splunk to use a custom favicon:Add-ons built with UCC currently do not support this custom favicon, because the HTML files do not render it.
This is what is missing (for example in
base.html
)from splunk.appserver.mrsparkle.lib import util
<head>
:<link rel="shortcut icon" href="${util.getFaviconURL()}" />
What UCC version are you using?
5.63.0
Additional System Info
Linux
The text was updated successfully, but these errors were encountered: