Splunk Search

favicon change not working

GKC
Explorer

I managed to change the path of the favicon link in my app, so I could have my own favicon showing....but I cannot understand why it is not working. It still shows the default splunk favicon.

This is the resulting html:

I thought that maybe the browser was not finding the icon, but I already tried pasting the path in the browser and it clearly finds and shows the icon then.

does any of you have any clue why this is not working for my app??

Tags (1)
1 Solution

GKC
Explorer

After some hours of investigation I finally solved the issue.
Changing the href in the existing link tag for the favicon did not make any difference, so I assumed that some of the lines that were coming right after had something to do with my problem...

so I decided to change my javascript function, and make it append a new link at the end of the section....and it worked!!!

This is the actual javascript that I am using now:

onLoad=favicon();

function favicon(){
var link = top.document.createElement("link");
link.type = "image/x-icon";
link.rel = "shortcut icon";
link.href = "/en-US/static/app/myappname/favicon.ico";
top.document.getElementsByTagName("head")[0].appendChild(link);

}

View solution in original post

GKC
Explorer

After some hours of investigation I finally solved the issue.
Changing the href in the existing link tag for the favicon did not make any difference, so I assumed that some of the lines that were coming right after had something to do with my problem...

so I decided to change my javascript function, and make it append a new link at the end of the section....and it worked!!!

This is the actual javascript that I am using now:

onLoad=favicon();

function favicon(){
var link = top.document.createElement("link");
link.type = "image/x-icon";
link.rel = "shortcut icon";
link.href = "/en-US/static/app/myappname/favicon.ico";
top.document.getElementsByTagName("head")[0].appendChild(link);

}

Get Updates on the Splunk Community!

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...

Cloud Monitoring Console - Unlocking Greater Visibility in SVC Usage Reporting

For Splunk Cloud customers, understanding and optimizing Splunk Virtual Compute (SVC) usage and resource ...

Automatic Discovery Part 3: Practical Use Cases

If you’ve enabled Automatic Discovery in your install of the Splunk Distribution of the OpenTelemetry ...