<?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 Re: How to redirect default drilldown for a cell value to open in a new window? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416152#M27354</link>
    <description>&lt;P&gt;Hi @vnaravikumar,&lt;/P&gt;

&lt;P&gt;This works when you have a new dashboard or a new query . &lt;BR /&gt;
What should i write in that query ???&lt;BR /&gt;
My full query thats a huge one. &lt;/P&gt;</description>
    <pubDate>Mon, 15 Apr 2019 15:20:39 GMT</pubDate>
    <dc:creator>surekhasplunk</dc:creator>
    <dc:date>2019-04-15T15:20:39Z</dc:date>
    <item>
      <title>How to redirect default drilldown for a cell value to open in a new window?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416148#M27350</link>
      <description>&lt;P&gt;I have added default drilldown for a cell value. &lt;BR /&gt;
How to redirect it to a new window?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 14:47:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416148#M27350</guid>
      <dc:creator>surekhasplunk</dc:creator>
      <dc:date>2019-04-15T14:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to redirect default drilldown for a cell value to open in a new window?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416149#M27351</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;If it's just another window
  &amp;lt;drilldown target="My New Window"&amp;gt;

If it's new every time
&amp;lt;drilldown target="_blank"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Apr 2019 14:57:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416149#M27351</guid>
      <dc:creator>HiroshiSatoh</dc:creator>
      <dc:date>2019-04-15T14:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to redirect default drilldown for a cell value to open in a new window?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416150#M27352</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Try like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;drilldown&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal |stats count by source&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;cell&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;link target="_blank"&amp;gt;search?q=index=_internal%20%7Cstats%20count%20by%20source%20%7Cwhere%20source="$row.source$"&amp;amp;amp;earliest=-24h@h&amp;amp;amp;latest=now&amp;lt;/link&amp;gt;
        &amp;lt;/drilldown&amp;gt;
      &amp;lt;/table&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>Mon, 15 Apr 2019 15:09:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416150#M27352</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-04-15T15:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to redirect default drilldown for a cell value to open in a new window?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416151#M27353</link>
      <description>&lt;P&gt;Hi @HiroshiSatoh&lt;/P&gt;

&lt;P&gt;How do i write that here ? Its not taking. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
  &amp;lt;option name="drilldown"&amp;gt;cell&amp;lt;/option&amp;gt;
  &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Can you mention the complete line or block. &lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:17:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416151#M27353</guid>
      <dc:creator>surekhasplunk</dc:creator>
      <dc:date>2019-04-15T15:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to redirect default drilldown for a cell value to open in a new window?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416152#M27354</link>
      <description>&lt;P&gt;Hi @vnaravikumar,&lt;/P&gt;

&lt;P&gt;This works when you have a new dashboard or a new query . &lt;BR /&gt;
What should i write in that query ???&lt;BR /&gt;
My full query thats a huge one. &lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:20:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416152#M27354</guid>
      <dc:creator>surekhasplunk</dc:creator>
      <dc:date>2019-04-15T15:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to redirect default drilldown for a cell value to open in a new window?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416153#M27355</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;What info are you want to display in the new window?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:23:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416153#M27355</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-04-15T15:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to redirect default drilldown for a cell value to open in a new window?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416154#M27356</link>
      <description>&lt;P&gt;For more info, please refer the following link&lt;/P&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.2.5/Viz/DrilldownIntro"&gt;https://docs.splunk.com/Documentation/Splunk/7.2.5/Viz/DrilldownIntro&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:26:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416154#M27356</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-04-15T15:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to redirect default drilldown for a cell value to open in a new window?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416155#M27357</link>
      <description>&lt;P&gt;Just whatever default drilldown option takes me to the same one but in new window&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:46:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416155#M27357</guid>
      <dc:creator>surekhasplunk</dc:creator>
      <dc:date>2019-04-15T15:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to redirect default drilldown for a cell value to open in a new window?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416156#M27358</link>
      <description>&lt;P&gt;Go through the above URL. If you are not clear please let me know.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:52:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416156#M27358</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-04-15T15:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to redirect default drilldown for a cell value to open in a new window?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416157#M27359</link>
      <description>&lt;P&gt;Check this app, it contains drilldown samples&lt;BR /&gt;
&lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:57:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-redirect-default-drilldown-for-a-cell-value-to-open-in-a/m-p/416157#M27359</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-04-15T15:57:44Z</dc:date>
    </item>
  </channel>
</rss>

