Dashboards & Visualizations

Is it possible to do an auto-redirect in Splunk?

jiaqya
Builder

I have a Splunk page with a link on it that will take you to another page.
But users have to click on it to go to that other page (the reason for this is that current page is being shutdown, and the redirect link will take them to the new page; this is for users who have saved the link as favorites).

Now, is it possible to auto-redirect the page to that click without users having to click on it, in say, 'n' number of seconds?

Any options of doing it ?

0 Karma
1 Solution

chrisyounger
SplunkTrust
SplunkTrust

Hi,

One way is to convert the dashboard to a HTML dashboard (click the top right) and then add code like this:

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Old Dashboard name here</title>
  <script type="text/javascript">
    //<![CDATA[
      window.location.replace("/en-US/search/my_new_dashboard");
    //]]>
  </script>
</head>
<body>
</body>
</html>

I hope this is helpful

View solution in original post

chrisyounger
SplunkTrust
SplunkTrust

Hi,

One way is to convert the dashboard to a HTML dashboard (click the top right) and then add code like this:

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Old Dashboard name here</title>
  <script type="text/javascript">
    //<![CDATA[
      window.location.replace("/en-US/search/my_new_dashboard");
    //]]>
  </script>
</head>
<body>
</body>
</html>

I hope this is helpful

jiaqya
Builder

This is wonderful. Can you also tell me how to setup a timer of 5-10 seconds so users can also read a message that they are being re-directed to another page..

0 Karma

chrisyounger
SplunkTrust
SplunkTrust
<!DOCTYPE html>
 <html lang="en">
 <head>
   <title>Old Dashboard name here</title>
   <script type="text/javascript">
     //<![CDATA[
setTimeout(function(){
       window.location.replace("/en-US/search/my_new_dashboard");
},5000);
     //]]>
   </script>
 </head>
 <body>
 </body>
 </html>

That should do it

0 Karma

jiaqya
Builder

Chris, Works perfect, thank you very much

john.

0 Karma
Get Updates on the Splunk Community!

How to Get Started with Splunk Data Management Pipeline Builders (Edge Processor & ...

If you want to gain full control over your growing data volumes, check out Splunk’s Data Management pipeline ...

Out of the Box to Up And Running - Streamlined Observability for Your Cloud ...

  Tech Talk Streamlined Observability for Your Cloud Environment Register    Out of the Box to Up And Running ...

Splunk Smartness with Brandon Sternfield | Episode 3

Hello and welcome to another episode of "Splunk Smartness," the interview series where we explore the power of ...