<?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 show event in drilldown from a clickable timestamp in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426079#M74680</link>
    <description>&lt;P&gt;@VatsalJagani -  It worked. Thanks a lot &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 19 Jun 2019 06:19:01 GMT</pubDate>
    <dc:creator>sachinbansal</dc:creator>
    <dc:date>2019-06-19T06:19:01Z</dc:date>
    <item>
      <title>How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426069#M74670</link>
      <description>&lt;P&gt;I want to show event in drilldown for specific timestamp I click on in source dashboard table. &lt;BR /&gt;
Please help me with this.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2019 12:51:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426069#M74670</guid>
      <dc:creator>sachinbansal</dc:creator>
      <dc:date>2019-06-14T12:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426070#M74671</link>
      <description>&lt;P&gt;More information would be helpful, but it could be as simple as passing &lt;CODE&gt;$row._time$&lt;/CODE&gt; to your drilldown search.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2019 14:40:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426070#M74671</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2019-06-14T14:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426071#M74672</link>
      <description>&lt;P&gt;Hi sachinbansal,&lt;BR /&gt;
I suggest to see the Splunk Dashboard Examples App ( &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt; ) where you can find very useful examples of hot to drilldown from a table.&lt;BR /&gt;
Anyway, let me understand:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;you have a list of events in a dashboard panel,&lt;/LI&gt;
&lt;LI&gt;you want to click on one of these events&lt;/LI&gt;
&lt;LI&gt;and search in a different dashboard passing as parameter the timestamp of the clicked events&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;Correct?&lt;/P&gt;

&lt;P&gt;If this is your request, you have to insert in the main dashboard, in your panel's source this section:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;
   &amp;lt;link target="_blank"&amp;gt;/app/my_app/new_dashboard?_time=$click.value2$&amp;lt;/link&amp;gt;
&amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Then in the secondary dashboard, you have to insert the token.&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2019 14:48:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426071#M74672</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-06-14T14:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426072#M74673</link>
      <description>&lt;P&gt;@sachinbansal if your ask is to get the earliest and latest from timechart table you can refer to the following workaround based answer &lt;A href="https://answers.splunk.com/answers/587132/drilldown-pass-the-earliest-and-latest-from-a-time.html"&gt;https://answers.splunk.com/answers/587132/drilldown-pass-the-earliest-and-latest-from-a-time.html&lt;/A&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;
           &amp;lt;eval token="drilldown.earliest"&amp;gt;strptime($row._time$,"%Y-%m-%d %H:%M:%S")&amp;lt;/eval&amp;gt;
           &amp;lt;eval token="drilldown.latest"&amp;gt;strptime($row._time$,"%Y-%m-%d %H:%M:%S") + $row._span$&amp;lt;/eval&amp;gt;
&amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 15 Jun 2019 05:39:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426072#M74673</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-06-15T05:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426073#M74674</link>
      <description>&lt;P&gt;Hi Giuseppe,&lt;/P&gt;

&lt;P&gt;When i click on  table row it then in drilldown it should show me that event in full.&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Sachin&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2019 10:03:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426073#M74674</guid>
      <dc:creator>sachinbansal</dc:creator>
      <dc:date>2019-06-17T10:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426074#M74675</link>
      <description>&lt;P&gt;Hi Niketn, &lt;BR /&gt;
I do not want to pass earliest and latest from timechart table. I want that when i click on any row in table it should drill down to that particular full event.&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Sachin&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2019 10:05:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426074#M74675</guid>
      <dc:creator>sachinbansal</dc:creator>
      <dc:date>2019-06-17T10:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426075#M74676</link>
      <description>&lt;P&gt;i tried "where _time=$clicked.value$(where i click on timestamp)" in drilldwon  search  but it is not working.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2019 10:06:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426075#M74676</guid>
      <dc:creator>sachinbansal</dc:creator>
      <dc:date>2019-06-17T10:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426076#M74677</link>
      <description>&lt;P&gt;Hi @sachinbansal,&lt;/P&gt;

&lt;P&gt;If you are having timechart and you want to see events related to point you click on it, follow below steps:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;Click edit dashboard&lt;/LI&gt;
&lt;LI&gt;Click on three vertical dots on the panel top-right&lt;/LI&gt;
&lt;LI&gt;Edit drilldown&lt;/LI&gt;
&lt;LI&gt;Select "Link to Search"&lt;/LI&gt;
&lt;LI&gt;Keep the value "Auto" and Apply.&lt;/LI&gt;
&lt;LI&gt;Save the dashboard and now if you click on the chart you will see events related to point you clicked on.&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;One thing you require to understand is that &lt;STRONG&gt;the point you see on timechart is not necessarily related to only one event&lt;/STRONG&gt;. As timechart groups the event to limit the data points. For example if you choose Last 24 hours it groups the data in 1 hour of span and on drilldown you will see related events.&lt;/P&gt;

&lt;P&gt;But if you want to use some other dashboard to panel to show you can use &lt;CODE&gt;$earliest$&lt;/CODE&gt; and &lt;CODE&gt;$latest$&lt;/CODE&gt; to get earliest value and latest value use it like below to drilldown.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;
    &amp;lt;link target="_blank"&amp;gt;/app/my_app/new_dashboard?earliest=$earliest$&amp;amp;latest=$latest$&amp;lt;/link&amp;gt;
&amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hope this helps!!!&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2019 13:09:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426076#M74677</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-17T13:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426077#M74678</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I completely understand your point but my objective is different.&lt;BR /&gt;
I have a table in source dashboard and when i click anywhere in any row it should shows the complete event of that selected row ( or you can say from which particular event those row values are extracted)  in drilldown search. As in table i have statistical data but in  drill down search i want that full event.&lt;BR /&gt;
i have _time column in my table so i try to use '|where _time=$click.value$' but it is not working.&lt;/P&gt;

&lt;P&gt;Thanks a lot!!&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2019 14:32:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426077#M74678</guid>
      <dc:creator>sachinbansal</dc:creator>
      <dc:date>2019-06-17T14:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426078#M74679</link>
      <description>&lt;P&gt;If you want to use click.value then _time field should be the first column of your table if it is not then use $row._time$ instead. And _time should not be in epoch format only not in string. If it is converted then you can try converting back to epoch format as suggested by &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/201110"&gt;@niketn&lt;/a&gt;  in the comment with eval as  &lt;CODE&gt;&amp;lt;eval token="earliest_time"&amp;gt;strptime($click.value$, &amp;lt;format of the string&amp;gt;)&amp;lt;/eval&amp;gt;&lt;/CODE&gt;.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;
  &amp;lt;eval token="latest_time"&amp;gt;$click.value$+$row._span$&amp;lt;/eval&amp;gt;
  &amp;lt;link target="_blank"&amp;gt;/app/my_app/search?q=index=_internal&amp;amp;amp;earliest=$click.value$&amp;amp;amp;latest=$latest_time$&amp;lt;/link&amp;gt;
&amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:57:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426078#M74679</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2020-09-30T00:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426079#M74680</link>
      <description>&lt;P&gt;@VatsalJagani -  It worked. Thanks a lot &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 06:19:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426079#M74680</guid>
      <dc:creator>sachinbansal</dc:creator>
      <dc:date>2019-06-19T06:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426080#M74681</link>
      <description>&lt;P&gt;@richgalloway - how do i pass that ?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 06:24:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426080#M74681</guid>
      <dc:creator>sachinbansal</dc:creator>
      <dc:date>2019-06-19T06:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426081#M74682</link>
      <description>&lt;P&gt;@sachinbansal - Nice to here that. Please approve and up-vote if you like it. So future user get benefit. Thanks!!!&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 06:52:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426081#M74682</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-19T06:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426082#M74683</link>
      <description>&lt;P&gt;Accepted your answer. Anything else i need to do?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 07:07:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426082#M74683</guid>
      <dc:creator>sachinbansal</dc:creator>
      <dc:date>2019-06-19T07:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426083#M74684</link>
      <description>&lt;P&gt;No. Thanks a lot!!, If you like it up-vote the answer. I hope you are getting proper guidance from Splunk-Answers community.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 09:59:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426083#M74684</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-19T09:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426084#M74685</link>
      <description>&lt;P&gt;yes. thanks&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 10:42:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426084#M74685</guid>
      <dc:creator>sachinbansal</dc:creator>
      <dc:date>2019-06-19T10:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to show event in drilldown from a clickable timestamp</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426085#M74686</link>
      <description>&lt;P&gt;The correct term is &lt;CODE&gt;$click.value$&lt;/CODE&gt;, but that assumes the user clicked on a cell with a time in it.  That's why is suggested `$row._time$.  See &lt;A href="https://docs.splunk.com/Documentation/Splunk/7.3.0/Viz/DrilldownIntro"&gt;https://docs.splunk.com/Documentation/Splunk/7.3.0/Viz/DrilldownIntro&lt;/A&gt; for more.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 11:20:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-show-event-in-drilldown-from-a-clickable-timestamp/m-p/426085#M74686</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2019-06-19T11:20:59Z</dc:date>
    </item>
  </channel>
</rss>

