<?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: drilldown to another window in splunk dashboard in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-a-drilldown-to-another-window-in-splunk-dashboard/m-p/591250#M11975</link>
    <description>&lt;P&gt;I would suggest going through&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.2.5/Viz/DrilldownIntro" target="_self"&gt;Splunk Drilldown Documentation&lt;/A&gt;&amp;nbsp;as it'll give you all the details with example to set this up.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 29 Mar 2022 12:56:44 GMT</pubDate>
    <dc:creator>somesoni2</dc:creator>
    <dc:date>2022-03-29T12:56:44Z</dc:date>
    <item>
      <title>How to create a drilldown to another window in splunk dashboard?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-a-drilldown-to-another-window-in-splunk-dashboard/m-p/591220#M11969</link>
      <description>&lt;P&gt;i have a table in dashboard generated from stats&amp;nbsp; and a time picker in my dashboard. Based on value selected in timepicker the dashboard table value changes.The column values are not links. the first column has error message values which will be unique .if i click on a value in the 1st column then the events having those message (field.msg) should be displayed in another window. this is applicable for all values in that first column&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for ur time and ur intention to help...&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 15:37:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-a-drilldown-to-another-window-in-splunk-dashboard/m-p/591220#M11969</guid>
      <dc:creator>splunker2022</dc:creator>
      <dc:date>2022-03-29T15:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown to another window in splunk dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-a-drilldown-to-another-window-in-splunk-dashboard/m-p/591224#M11970</link>
      <description>&lt;P&gt;You can use a drilldown on the table to set a token to the value of the first column and use that token in the search of another panel in the dashboard. You could even make the second panel depend on the existence of the token being set so that it only becomes visible when the token has been defined by the drilldown.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 11:39:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-a-drilldown-to-another-window-in-splunk-dashboard/m-p/591224#M11970</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-03-29T11:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown to another window in splunk dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-a-drilldown-to-another-window-in-splunk-dashboard/m-p/591231#M11972</link>
      <description>&lt;P&gt;Thanks for ur reply..since i am new, Sorry i could nt understand. could u kindly explain with example . dont we have to make the column value a link?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 12:07:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-a-drilldown-to-another-window-in-splunk-dashboard/m-p/591231#M11972</guid>
      <dc:creator>splunker2022</dc:creator>
      <dc:date>2022-03-29T12:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown to another window in splunk dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-a-drilldown-to-another-window-in-splunk-dashboard/m-p/591234#M11973</link>
      <description>&lt;P&gt;Obviously, I don't have access to your data and you haven't provided the searches you are using so here is a runanywhere example in a SimpleXML dashboard format.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Groups&amp;lt;/title&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| gentimes start=-1 increment=10s 
| rename starttime as _time 
| fields - endhuman endtime starthuman
| eval count=random() % 20
| eval group=random() % 2
| eval item=random() % 10 + (10 * group)
| stats sum(count) as total by group&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-15m&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;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;set token="groupchoice"&amp;gt;$click.value$&amp;lt;/set&amp;gt;
        &amp;lt;/drilldown&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel depends="$groupchoice$"&amp;gt;
      &amp;lt;title&amp;gt;Selected group&amp;lt;/title&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| gentimes start=-1 increment=10s 
| rename starttime as _time 
| fields - endhuman endtime starthuman
| eval count=random() % 20
| eval group=random() % 2
| eval item=random() % 10 + (10 * group)
| where group=$groupchoice$
| stats sum(count) as total by item&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-15m&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="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 12:21:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-a-drilldown-to-another-window-in-splunk-dashboard/m-p/591234#M11973</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-03-29T12:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown to another window in splunk dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-a-drilldown-to-another-window-in-splunk-dashboard/m-p/591250#M11975</link>
      <description>&lt;P&gt;I would suggest going through&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.2.5/Viz/DrilldownIntro" target="_self"&gt;Splunk Drilldown Documentation&lt;/A&gt;&amp;nbsp;as it'll give you all the details with example to set this up.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 12:56:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-a-drilldown-to-another-window-in-splunk-dashboard/m-p/591250#M11975</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2022-03-29T12:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: drilldown to another window in splunk dashboard</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-a-drilldown-to-another-window-in-splunk-dashboard/m-p/591272#M11977</link>
      <description>&lt;P&gt;really thanks a lot for ur timely help .&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 14:25:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-create-a-drilldown-to-another-window-in-splunk-dashboard/m-p/591272#M11977</guid>
      <dc:creator>splunker2022</dc:creator>
      <dc:date>2022-03-29T14:25:59Z</dc:date>
    </item>
  </channel>
</rss>

