<?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 do I pass one dashboard date/time picker through drilldown to a second dashboard? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-pass-one-dashboard-date-time-picker-through-drilldown/m-p/645639#M52709</link>
    <description>&lt;P&gt;Hey Guys how do i perform same thing inside Dashboard Studio?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Sat, 03 Jun 2023 18:53:43 GMT</pubDate>
    <dc:creator>dmitrynt</dc:creator>
    <dc:date>2023-06-03T18:53:43Z</dc:date>
    <item>
      <title>How do I pass one dashboard date/time picker through drilldown to a second dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-pass-one-dashboard-date-time-picker-through-drilldown/m-p/246442#M15364</link>
      <description>&lt;P&gt;I have the following drilldown configuration in a dashbaord;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;        &amp;lt;drilldown target="My New Window"&amp;gt;
          &amp;lt;link field="user"&amp;gt;
            &amp;lt;![CDATA[https://foo.com/en-US/app/appname/dashboardname?form.egress_type=$form.egress_type$&amp;amp;form.userid=$click.value2$&amp;amp;form.cdi_business.tok=$row.Business$]]&amp;gt;
          &amp;lt;/link&amp;gt;
        &amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I've tried several examples.  The best result of which just gives me an error of "invalid earliest_time".&lt;/P&gt;

&lt;P&gt;I'd like the user to be able to pick a date range, click a drill down item from that date range, and have it carry over to the dashboard.  I'd prefer not to include 'earliest=$token$' in the search string itself, and to use the global picker.&lt;/P&gt;

&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2016 15:03:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-pass-one-dashboard-date-time-picker-through-drilldown/m-p/246442#M15364</guid>
      <dc:creator>mcrawford44</dc:creator>
      <dc:date>2016-08-25T15:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do I pass one dashboard date/time picker through drilldown to a second dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-pass-one-dashboard-date-time-picker-through-drilldown/m-p/246443#M15365</link>
      <description>&lt;P&gt;Can you share your full dashboard xml OR at least the full panel xml where this drilldown exists?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2016 16:00:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-pass-one-dashboard-date-time-picker-through-drilldown/m-p/246443#M15365</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-08-25T16:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I pass one dashboard date/time picker through drilldown to a second dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-pass-one-dashboard-date-time-picker-through-drilldown/m-p/246444#M15366</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel&amp;gt;
  &amp;lt;table&amp;gt;
    &amp;lt;title&amp;gt;Top Users&amp;lt;/title&amp;gt;
    &amp;lt;search&amp;gt;
      &amp;lt;query&amp;gt;foo | table userid Business&amp;lt;/query&amp;gt;
    &amp;lt;/search&amp;gt;
    &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
    &amp;lt;drilldown target="My New Window"&amp;gt;
      &amp;lt;link field="user"&amp;gt;
        &amp;lt;![CDATA[https://foo.com/en-US/app/appname/dashboardname?form.egress_type=$form.egress_type$&amp;amp;form.userid=$click.value2$&amp;amp;form.cdi_business.tok=$row.Business$]]&amp;gt;
      &amp;lt;/link&amp;gt;
    &amp;lt;/drilldown&amp;gt;
    &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
    &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;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;/table&amp;gt;
&amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I'm not sure how this is relevant considering the mechanism would be identical between all implementations.  Documentation says to use earliest/latest as the tokens ; &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.4.2/Viz/PanelreferenceforSimplifiedXML#Drilldown_event_tokens"&gt;http://docs.splunk.com/Documentation/Splunk/6.4.2/Viz/PanelreferenceforSimplifiedXML#Drilldown_event_tokens&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Like this;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;![CDATA[https://foo.com/en-US/app/appname/dashboardname?form.egress_type=$form.egress_type$&amp;amp;form.userid=$click.value2$&amp;amp;form.cdi_business.tok=$row.Business$&amp;amp;earliest=$earliest$&amp;amp;latest=$latest$]]&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;However, that appears to do nothing at all.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2016 19:12:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-pass-one-dashboard-date-time-picker-through-drilldown/m-p/246444#M15366</guid>
      <dc:creator>mcrawford44</dc:creator>
      <dc:date>2016-08-25T19:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: How do I pass one dashboard date/time picker through drilldown to a second dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-pass-one-dashboard-date-time-picker-through-drilldown/m-p/246445#M15367</link>
      <description>&lt;P&gt;You need to specify the name of the timepicker in the URL. Try this RA sample, see if this will work for your (it calls itself)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="time" token="t"&amp;gt;
      &amp;lt;label&amp;gt;Tiem&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-60m@m&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&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 | head 1&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$t.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$t.latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;true&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;row&amp;lt;/option&amp;gt;
        &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
        &amp;lt;drilldown target="My New Window"&amp;gt;
          &amp;lt;link&amp;gt;
            &amp;lt;![CDATA[http://localhost:8000/en-US/app/test/test_time_chart?form.t.earliest=$t.earliest$&amp;amp;form.t.latest=now]]&amp;gt;
          &amp;lt;/link&amp;gt;
        &amp;lt;/drilldown&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 25 Aug 2016 19:32:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-pass-one-dashboard-date-time-picker-through-drilldown/m-p/246445#M15367</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-08-25T19:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I pass one dashboard date/time picker through drilldown to a second dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-pass-one-dashboard-date-time-picker-through-drilldown/m-p/645639#M52709</link>
      <description>&lt;P&gt;Hey Guys how do i perform same thing inside Dashboard Studio?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 18:53:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-pass-one-dashboard-date-time-picker-through-drilldown/m-p/645639#M52709</guid>
      <dc:creator>dmitrynt</dc:creator>
      <dc:date>2023-06-03T18:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I pass one dashboard date/time picker through drilldown to a second dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-pass-one-dashboard-date-time-picker-through-drilldown/m-p/750229#M58979</link>
      <description>&lt;P&gt;Did you get answer to this ?&lt;BR /&gt;Can u help with resolution you obtained?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 09:03:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-pass-one-dashboard-date-time-picker-through-drilldown/m-p/750229#M58979</guid>
      <dc:creator>AsmaF2025</dc:creator>
      <dc:date>2025-07-22T09:03:08Z</dc:date>
    </item>
  </channel>
</rss>

