<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to create set of dashboards within a dashboard? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/499401#M32693</link>
    <description>&lt;P&gt;I need to create a dashboard with list of all other dashboard names and when I click a dashboard name it has to display that dashboard in the same dashboard but not in the different page,Please help me out.&lt;/P&gt;</description>
    <pubDate>Tue, 04 Apr 2023 10:33:23 GMT</pubDate>
    <dc:creator>haripriyasarvep</dc:creator>
    <dc:date>2023-04-04T10:33:23Z</dc:date>
    <item>
      <title>How to create set of dashboards within a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/499401#M32693</link>
      <description>&lt;P&gt;I need to create a dashboard with list of all other dashboard names and when I click a dashboard name it has to display that dashboard in the same dashboard but not in the different page,Please help me out.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 10:33:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/499401#M32693</guid>
      <dc:creator>haripriyasarvep</dc:creator>
      <dc:date>2023-04-04T10:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: set of dashboards with in a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/499402#M32694</link>
      <description>&lt;P&gt;How about buttons and iframes?&lt;/P&gt;

&lt;P&gt;Change "my_dashboard" to whatever the name of the dashboard is.&lt;BR /&gt;
Create as many buttons as you want just reference the same iframe as the target.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;test clone&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
               &amp;lt;style&amp;gt;.btn-primary { margin: 5px 10px 5px 0; }&amp;lt;/style&amp;gt;
               &amp;lt;a target="my_link" href="my_dashboard?hideEdit=true&amp;amp;amp;hideTitle=true&amp;amp;amp;hideSplunkBar=true&amp;amp;amp;hideAppBar=true&amp;amp;amp;hideFooter=true&amp;amp;amp;targetTop=true" class="btn btn-primary"&amp;gt;My dashboard 1&amp;lt;/a&amp;gt;
           &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
       &amp;lt;iframe name="my_link" width="100%" height="1000" frameborder="0" allowfullscreen="0"&amp;gt; &amp;lt;/iframe&amp;gt;  
     &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 31 Jan 2020 02:25:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/499402#M32694</guid>
      <dc:creator>Lucas_K</dc:creator>
      <dc:date>2020-01-31T02:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: set of dashboards with in a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/499403#M32695</link>
      <description>&lt;P&gt;This is working fine with one dashboard , but for more than 2 dashboards, how to set tokens to the show that specific dashboards. Please help me out.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 05:52:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/499403#M32695</guid>
      <dc:creator>haripriyasarvep</dc:creator>
      <dc:date>2020-02-03T05:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: set of dashboards with in a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/499404#M32696</link>
      <description>&lt;P&gt;Thank you so much for providing this answer. It helped me a lot in finishing up my dashboard. Instead of buttons I used input linked list button to embed various dashboard in to one. &lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 00:18:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/499404#M32696</guid>
      <dc:creator>haripriyasarvep</dc:creator>
      <dc:date>2020-02-10T00:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: set of dashboards with in a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/499405#M32697</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;May I know where to place the above query? Do we need to write this query inside  a Search Head?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 13:22:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/499405#M32697</guid>
      <dc:creator>VijaySrrie</dc:creator>
      <dc:date>2020-02-28T13:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: set of dashboards with in a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/499406#M32698</link>
      <description>&lt;P&gt;Hi @haripriyasarvepalli1 , you can also check out the Splunk Dashboards Beta which allows you to create pixel perfect dashboards, including an "overview" dashboard that links to other dashboards. See here for an example of an dashboard "hub" home page here: &lt;A href="https://covid-19.splunkforgood.com/dashboard_hub"&gt;https://covid-19.splunkforgood.com/dashboard_hub&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You can download the app here: &lt;A href="https://splunkbase.splunk.com/app/4710/"&gt;https://splunkbase.splunk.com/app/4710/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 17:18:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/499406#M32698</guid>
      <dc:creator>atammana_splunk</dc:creator>
      <dc:date>2020-04-20T17:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: set of dashboards with in a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/638619#M52223</link>
      <description>&lt;P&gt;it opens the dashboard in another tab, can we open it in the same dashboard instead?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 09:43:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-set-of-dashboards-within-a-dashboard/m-p/638619#M52223</guid>
      <dc:creator>deepakgarg1373</dc:creator>
      <dc:date>2023-04-04T09:43:47Z</dc:date>
    </item>
  </channel>
</rss>

