<?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: Classic Dashboard Drilldown Click on a Value and Set Token in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746413#M58710</link>
    <description>&lt;P&gt;Let me start with the obvious:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Because you are using table in your query, &amp;lt;table /&amp;gt; is the appropriate panel type, not &amp;lt;event/&amp;gt; used in your illustration.&lt;/LI&gt;&lt;LI&gt;You use drilldown type to be "All", set token to $click.value$ and expect it to take the value of field &lt;FONT face="courier new,courier"&gt;Channel&lt;/FONT&gt;. &amp;nbsp; That is not how drilldown works. &amp;nbsp;The value should be set to $row.Channel$. (There is another drilldown type "Cell". &amp;nbsp;But if you want to the token to represent Channel, this is inappropriate.)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Here is a complete mock dashboard for you to play with. &amp;nbsp;Wherever you click, the clicked Channel value will be displayed in the panel's title. &amp;nbsp;Play with it and adapt it for your use.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;dashboard version="1.1" theme="light"&amp;gt;
  &amp;lt;label&amp;gt;Click to set token&amp;lt;/label&amp;gt;
  &amp;lt;description&amp;gt;https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746080#M58677&amp;lt;/description&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Click on any row&amp;lt;/title&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;Channel in that row should be &amp;amp;gt;$channel_token$&amp;amp;lt;&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index = _internal component=* thread_id=*
| rex "^(?&amp;amp;lt;Timestamp&amp;amp;gt;\S+ \S+ \S+)"
| rename component as Channel, log_level as Level, event_message as Details, thread_id as RecordID,
  thread_name as Ruletitle
| table Timestamp Level Channel RecordID Ruletitle Details *&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;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;50&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;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;set token="channel_token"&amp;gt;$row.Channel$&amp;lt;/set&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;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 18 May 2025 14:34:28 GMT</pubDate>
    <dc:creator>yuanliu</dc:creator>
    <dc:date>2025-05-18T14:34:28Z</dc:date>
    <item>
      <title>Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746080#M58677</link>
      <description>&lt;P&gt;Hello! I have a Classic Dashboard in Splunk and I am currently working with an Events pane. I am trying to set a token via drilldown. Here is my code:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;event&amp;gt;
	&amp;lt;search&amp;gt;
		&amp;lt;query&amp;gt;$case_token$ $host_token$ $level_token$ $rule_token$&amp;lt;/query&amp;gt;
	&amp;lt;/search&amp;gt;
	&amp;lt;fields&amp;gt;Timestamp, host, Computer, Level, Channel, RecordID, EventID, RuleTitle, Details, _time&amp;lt;/fields&amp;gt;
	&amp;lt;option name="count"&amp;gt;50&amp;lt;/option&amp;gt;
	&amp;lt;option name="list.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
	&amp;lt;option name="list.wrap"&amp;gt;1&amp;lt;/option&amp;gt;
	&amp;lt;option name="raw.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
	&amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
	&amp;lt;option name="table.drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
	&amp;lt;option name="table.sortDirect"&amp;gt;asc&amp;lt;/option&amp;gt;
	&amp;lt;option name="table.wrap"&amp;gt;1&amp;lt;/option&amp;gt;
	&amp;lt;option name="type"&amp;gt;table&amp;lt;/option&amp;gt;
	&amp;lt;drilldown&amp;gt;
		&amp;lt;condition field="Channel"&amp;gt;
			&amp;lt;set token="channel_token"&amp;gt;$click.value$&amp;lt;/set&amp;gt;
		&amp;lt;/condition&amp;gt;
	&amp;lt;/drilldown&amp;gt;
&amp;lt;/event&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;There's two problems:&lt;/P&gt;&lt;P&gt;1. The token is not being set when I click on the table.&lt;/P&gt;&lt;P&gt;2. The condition to only select from the Channel fields is not working.&lt;/P&gt;&lt;P&gt;Thank you in advance!&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 18:03:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746080#M58677</guid>
      <dc:creator>lcguilfoil</dc:creator>
      <dc:date>2025-05-13T18:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746081#M58678</link>
      <description>&lt;P&gt;You can start with this app&amp;nbsp;&lt;A href="https://classic.splunkbase.splunk.com/app/1603/" target="_blank"&gt;https://classic.splunkbase.splunk.com/app/1603/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;WIth it you can see some examples how you should play with tokens and then try those with your own dashboard.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is one UG presentation how to use tokens etc.&amp;nbsp;&lt;A href="https://data-findings.com/wp-content/uploads/2024/09/HSUG-20240903-Tiia-Ojares.pdf" target="_blank"&gt;https://data-findings.com/wp-content/uploads/2024/09/HSUG-20240903-Tiia-Ojares.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 18:08:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746081#M58678</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2025-05-13T18:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746083#M58679</link>
      <description>&lt;P&gt;Hi! Thank you for the resources! I have been reviewing them, as well as doing other search. I still am unsure, so any specific help you can offer is appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 18:29:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746083#M58679</guid>
      <dc:creator>lcguilfoil</dc:creator>
      <dc:date>2025-05-13T18:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746116#M58680</link>
      <description>Can you post these tokens?&lt;BR /&gt;$case_token$ $host_token$ $level_token$ $rule_token$</description>
      <pubDate>Tue, 13 May 2025 18:56:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746116#M58680</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2025-05-13T18:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746118#M58682</link>
      <description>&lt;P&gt;Yes! The token are made like this.&amp;nbsp; Here are some examples. These tokens are working correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;input type="dropdown" token="case_token" searchWhenChanged="true"&amp;gt;
	&amp;lt;label&amp;gt;Case Selector&amp;lt;/label&amp;gt;
	&amp;lt;fieldForLabel&amp;gt;case&amp;lt;/fieldForLabel&amp;gt;
	&amp;lt;fieldForValue&amp;gt;case&amp;lt;/fieldForValue&amp;gt;
	&amp;lt;search&amp;gt;
		&amp;lt;query&amp;gt;| tstats count where index=string* by index
		| table index
		&amp;lt;/query&amp;gt;
	&amp;lt;/search&amp;gt;
&amp;lt;/input&amp;gt;

&amp;lt;input type="multiselect" token="host_token" searchWhenChanged="true"&amp;gt;
	&amp;lt;label&amp;gt;Host&amp;lt;/label&amp;gt;
	&amp;lt;fieldForLabel&amp;gt;Host&amp;lt;/fieldForLabel&amp;gt;
	&amp;lt;fieldForValue&amp;gt;host&amp;lt;/fieldForValue&amp;gt;
	&amp;lt;search&amp;gt;
		&amp;lt;query&amp;gt;| tstats count where $case_token$ by host |table host&amp;lt;/query&amp;gt;
	&amp;lt;/search&amp;gt;
&amp;lt;/input&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;What isn't working is the creation of the $channel_token$ made with the drilldown. I think it might be because I'm using an event pane and not a table pane.&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 19:17:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746118#M58682</guid>
      <dc:creator>lcguilfoil</dc:creator>
      <dc:date>2025-05-13T19:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746131#M58684</link>
      <description>&lt;P&gt;Can you fully expand an example of the search. I assume Channel a visible field in the event list? Have you explicitly specified Channel as a field in the SPL?&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 00:08:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746131#M58684</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2025-05-14T00:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746183#M58691</link>
      <description>&lt;P&gt;Hi! Yes, here is the complete search:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;$case_token$ sourcetype=hayabusa $host_token$ $level_token$ $rule_token$
| table Timestamp, host, Computer, Level, Channel, RecordID, EventID, Ruletitle, Details, *&lt;/LI-CODE&gt;&lt;P&gt;Channel is added as a field in the table command, as well as specified in the code:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;fields&amp;gt;Timestamp, host, Computer, Level, Channel, RecordID, EventID, RuleTItle, Details&amp;lt;/fields&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 14 May 2025 12:03:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746183#M58691</guid>
      <dc:creator>lcguilfoil</dc:creator>
      <dc:date>2025-05-14T12:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746209#M58694</link>
      <description>&lt;P&gt;There's something odd in the interaction between the &amp;lt;event&amp;gt; display and the table command and the fields control. I have an example dashboard, which does this search&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=_internal user=*
| table _time index sourcetype user *
| eval Channel=user&lt;/LI-CODE&gt;&lt;P&gt;Yet the Channel column is not even shown, even though it is in the &amp;lt;fields&amp;gt; statement.&lt;/P&gt;&lt;P&gt;If I change the&amp;nbsp;&lt;STRONG&gt;table&lt;/STRONG&gt; to a fields statement or remove it completely, it works.&lt;/P&gt;&lt;P&gt;Is there any reason you are adding the table command there? It doesn't really serve any purpose, as you are controlling display with the &amp;lt;fields&amp;gt; statement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 22:36:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746209#M58694</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2025-05-14T22:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746271#M58696</link>
      <description>&lt;P&gt;Hi! Thank you for your response. When I take out the table command, only the _time, host, Level, and RuleTitle fields show up. The fields I have included in &amp;lt;fields&amp;gt;&amp;lt;/fields&amp;gt; don't all show up.&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2025 17:13:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746271#M58696</guid>
      <dc:creator>lcguilfoil</dc:creator>
      <dc:date>2025-05-15T17:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746286#M58698</link>
      <description>&lt;P&gt;I believe (although I rarely use the event visualisation) that you must specify a&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| fields a b c...&lt;/LI-CODE&gt;&lt;P&gt;in your SPL to get fields from the event to show up in the event panel as fields. The XML&amp;nbsp;&lt;STRONG&gt;&amp;lt;fields&amp;gt;&lt;/STRONG&gt; element is used as a way to limit the &lt;STRONG&gt;display&lt;/STRONG&gt; of the available fields from the search, so in order to get those fields there in the first place, you must use the SPL fields command to specify fields you want.&lt;/P&gt;&lt;P&gt;Using the&amp;nbsp;&lt;STRONG&gt;table&lt;/STRONG&gt; command is not the right way&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2025 23:20:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746286#M58698</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2025-05-15T23:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746314#M58704</link>
      <description>&lt;P&gt;Thank you! I changed from the table command to the fields command.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I tried to use a drilldown again (set host_token = $row.host$), it still didn't work...any ideas?&lt;/P&gt;</description>
      <pubDate>Fri, 16 May 2025 12:11:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746314#M58704</guid>
      <dc:creator>lcguilfoil</dc:creator>
      <dc:date>2025-05-16T12:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746413#M58710</link>
      <description>&lt;P&gt;Let me start with the obvious:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Because you are using table in your query, &amp;lt;table /&amp;gt; is the appropriate panel type, not &amp;lt;event/&amp;gt; used in your illustration.&lt;/LI&gt;&lt;LI&gt;You use drilldown type to be "All", set token to $click.value$ and expect it to take the value of field &lt;FONT face="courier new,courier"&gt;Channel&lt;/FONT&gt;. &amp;nbsp; That is not how drilldown works. &amp;nbsp;The value should be set to $row.Channel$. (There is another drilldown type "Cell". &amp;nbsp;But if you want to the token to represent Channel, this is inappropriate.)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Here is a complete mock dashboard for you to play with. &amp;nbsp;Wherever you click, the clicked Channel value will be displayed in the panel's title. &amp;nbsp;Play with it and adapt it for your use.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;dashboard version="1.1" theme="light"&amp;gt;
  &amp;lt;label&amp;gt;Click to set token&amp;lt;/label&amp;gt;
  &amp;lt;description&amp;gt;https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746080#M58677&amp;lt;/description&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Click on any row&amp;lt;/title&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;Channel in that row should be &amp;amp;gt;$channel_token$&amp;amp;lt;&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index = _internal component=* thread_id=*
| rex "^(?&amp;amp;lt;Timestamp&amp;amp;gt;\S+ \S+ \S+)"
| rename component as Channel, log_level as Level, event_message as Details, thread_id as RecordID,
  thread_name as Ruletitle
| table Timestamp Level Channel RecordID Ruletitle Details *&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;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;50&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;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;set token="channel_token"&amp;gt;$row.Channel$&amp;lt;/set&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;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 18 May 2025 14:34:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746413#M58710</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2025-05-18T14:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746422#M58711</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/33901"&gt;@yuanliu&lt;/a&gt;&amp;nbsp;Actually the event display type is perfectly fine if the OP wants it - it has very different behaviour to table - and &amp;lt;event&amp;gt; does support a table mode, but it does appear that conditional specific drilldown does not work as the OP describes - using table and fields command gives different behaviour - I did recreate his behaviour where conditional drilldown does NOT work on the Channel field despite it being visible, but cannot reproduce it.&lt;/P&gt;&lt;P&gt;For example, if using the table command in the SPL, if you create any fields AFTER that statement, those fields do not seem to appear in the event table, whereas if you set them before the table command, it shows that column in the table, whereas using the fields command in SPL it makes no difference.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/308419"&gt;@lcguilfoil&lt;/a&gt;&amp;nbsp;I don't have a specific answer, but if you can click on the magnifying class of the event listing so that it opens up the real search in a new window and post that here, that would be useful - you did not post your entire search - not the one in the XML, but the real search as it runs after all the tokens are set.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 18 May 2025 23:03:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746422#M58711</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2025-05-18T23:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746461#M58715</link>
      <description>&lt;P&gt;Hello, and thank you for your help! Here is my what my dashboard looks like now:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;event&amp;gt;
	&amp;lt;search&amp;gt;
		&amp;lt;query&amp;gt;$case_token$ sourcetype=hayabusa $host_token$ $level_token$ $rule_token$
| fields Timestamp, host, Computer, Level, Channel, RecordID, EventID, Ruletitle, Details&amp;lt;/query&amp;gt;
	&amp;lt;/search&amp;gt;
	&amp;lt;fields&amp;gt;Timestamp, host, Computer, Level, Channel, RecordID, EventID, RuleTitle, Details, _time&amp;lt;/fields&amp;gt;
	&amp;lt;option name="count"&amp;gt;50&amp;lt;/option&amp;gt;
	&amp;lt;option name="list.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
	&amp;lt;option name="list.wrap"&amp;gt;1&amp;lt;/option&amp;gt;
	&amp;lt;option name="raw.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
	&amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
	&amp;lt;option name="table.drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
	&amp;lt;option name="table.sortDirect"&amp;gt;asc&amp;lt;/option&amp;gt;
	&amp;lt;option name="table.wrap"&amp;gt;1&amp;lt;/option&amp;gt;
	&amp;lt;option name="type"&amp;gt;table&amp;lt;/option&amp;gt;
	&amp;lt;drilldown&amp;gt;
		&amp;lt;condition field="Channel"&amp;gt;
			&amp;lt;set token="channel_token"&amp;gt;$click.value$&amp;lt;/set&amp;gt;
		&amp;lt;/condition&amp;gt;
	&amp;lt;/drilldown&amp;gt;
&amp;lt;/event&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;Here is what the corresponding search looks like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=test-index sourcetype=hayabusa host=* Level=* RuleType=*
| fields Timestamp, host, Computer, Level, Channel, RecordID, EventID, Ruletitle, Details&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 11:48:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746461#M58715</guid>
      <dc:creator>lcguilfoil</dc:creator>
      <dc:date>2025-05-19T11:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746465#M58716</link>
      <description>&lt;P&gt;Has this now been solved (as I can't see anything wrong with what you posted - apart from some obvious harmlessly-redundant options)?&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 12:42:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746465#M58716</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-05-19T12:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746466#M58717</link>
      <description>&lt;P&gt;It is not solved, thank you for asking!&lt;/P&gt;&lt;P&gt;1. Can you please alert me to what is harmlessly redundant?&lt;/P&gt;&lt;P&gt;2. The token does not work. I used a drilldown to set Channel to click.value (I also tried to set Channel to row.Channel), but it doesn't work.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 12:55:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746466#M58717</guid>
      <dc:creator>lcguilfoil</dc:creator>
      <dc:date>2025-05-19T12:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746467#M58718</link>
      <description>&lt;P&gt;I have a version working with just table.drilldown = all, i.e. list.drilldown and raw.drilldown seem to be redundant. Also, table.drilldown = 1 seems to work.&lt;/P&gt;&lt;P&gt;Which version of Splunk are you using?&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 13:40:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746467#M58718</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-05-19T13:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746469#M58719</link>
      <description>&lt;P&gt;I am using Splunk version 9.4.0.&lt;/P&gt;&lt;P&gt;I got rid of the list and raw drilldown options and made sure only table.drilldown was present and set to all. It's still not working.&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 13:56:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746469#M58719</guid>
      <dc:creator>lcguilfoil</dc:creator>
      <dc:date>2025-05-19T13:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746473#M58721</link>
      <description>&lt;P&gt;How do you know it isn't working? How are you using the token? Try updating the title (temporarily) to see if it changes?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;event&amp;gt;
	&amp;lt;title&amp;gt;$channel_token$&amp;lt;/title&amp;gt;
	&amp;lt;search&amp;gt;
		&amp;lt;query&amp;gt;$case_token$ sourcetype=hayabusa $host_token$ $level_token$ $rule_token$
| fields Timestamp, host, Computer, Level, Channel, RecordID, EventID, Ruletitle, Details&amp;lt;/query&amp;gt;
	&amp;lt;/search&amp;gt;
	&amp;lt;fields&amp;gt;Timestamp, host, Computer, Level, Channel, RecordID, EventID, RuleTitle, Details, _time&amp;lt;/fields&amp;gt;
	&amp;lt;option name="count"&amp;gt;50&amp;lt;/option&amp;gt;
	&amp;lt;option name="list.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
	&amp;lt;option name="list.wrap"&amp;gt;1&amp;lt;/option&amp;gt;
	&amp;lt;option name="raw.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
	&amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
	&amp;lt;option name="table.drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
	&amp;lt;option name="table.sortDirect"&amp;gt;asc&amp;lt;/option&amp;gt;
	&amp;lt;option name="table.wrap"&amp;gt;1&amp;lt;/option&amp;gt;
	&amp;lt;option name="type"&amp;gt;table&amp;lt;/option&amp;gt;
	&amp;lt;drilldown&amp;gt;
		&amp;lt;condition field="Channel"&amp;gt;
			&amp;lt;set token="channel_token"&amp;gt;$click.value$&amp;lt;/set&amp;gt;
		&amp;lt;/condition&amp;gt;
	&amp;lt;/drilldown&amp;gt;
&amp;lt;/event&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 19 May 2025 14:34:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746473#M58721</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-05-19T14:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Classic Dashboard Drilldown Click on a Value and Set Token</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746474#M58722</link>
      <description>&lt;P&gt;Have you add this&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;... script="simple_xml_examples:showtokens.js"&lt;/LI-CODE&gt;&lt;P&gt;into your &amp;lt;form … &amp;gt; line?&lt;/P&gt;&lt;P&gt;With this addition you can see all defined tokens and their values.&lt;/P&gt;&lt;P&gt;Of course you must 1st install this app.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 14:41:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Classic-Dashboard-Drilldown-Click-on-a-Value-and-Set-Token/m-p/746474#M58722</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2025-05-19T14:41:44Z</dc:date>
    </item>
  </channel>
</rss>

