<?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 drilldown on a table that uses display values from a lookup in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307660#M19633</link>
    <description>&lt;P&gt;It has been awhile, but I'm back working on this.  If I don't include the servername field in the &amp;lt;fields&amp;gt; list, it isn't passed in the drill down.  If I include it in the &amp;lt;fields&amp;gt; list it shows up in the search results, but the drill down works.  &lt;/P&gt;

&lt;P&gt;What am I missing?  How do I make the servername field available, but not visible in the initial results table?&lt;/P&gt;</description>
    <pubDate>Mon, 04 Jun 2018 20:46:38 GMT</pubDate>
    <dc:creator>DaClyde</dc:creator>
    <dc:date>2018-06-04T20:46:38Z</dc:date>
    <item>
      <title>How to drilldown on a table that uses display values from a lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307658#M19631</link>
      <description>&lt;P&gt;I have a dashboard with two levels of drilldowns.  The first dashboard is a list of servers.  Click on a server name and it gives you a list of that server's clients.  Click on a client name and it shows you information from that client.&lt;/P&gt;

&lt;P&gt;What I want to do is use a lookup to show a "friendly name" (like a business unit or division) instead of the actual server name.  The problem I run into is that now the "friendly name" is what gets passed on as the $click.value$ to the client list.  How can I display a "friendly name" but still have the drilldown use the original server name value on the drill down?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 18:51:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307658#M19631</guid>
      <dc:creator>DaClyde</dc:creator>
      <dc:date>2017-11-29T18:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown on a table that uses display values from a lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307659#M19632</link>
      <description>&lt;P&gt;If you're using table visualization, you can have your search query to have both actual server name as well as friendly name, but use &lt;CODE&gt;&amp;lt;fields&amp;gt;&lt;/CODE&gt; element to display only the friendly name. The actual server name will still be available at drilldown. You would've to use &lt;CODE&gt;$row.fieldnameforActualServer$&lt;/CODE&gt; instead of &lt;CODE&gt;$click.value$&lt;/CODE&gt;. See this&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/SplunkCloud/6.6.3/Viz/PanelreferenceforSimplifiedXML#table"&gt;http://docs.splunk.com/Documentation/SplunkCloud/6.6.3/Viz/PanelreferenceforSimplifiedXML#table&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 21:03:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307659#M19632</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-11-29T21:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown on a table that uses display values from a lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307660#M19633</link>
      <description>&lt;P&gt;It has been awhile, but I'm back working on this.  If I don't include the servername field in the &amp;lt;fields&amp;gt; list, it isn't passed in the drill down.  If I include it in the &amp;lt;fields&amp;gt; list it shows up in the search results, but the drill down works.  &lt;/P&gt;

&lt;P&gt;What am I missing?  How do I make the servername field available, but not visible in the initial results table?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jun 2018 20:46:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307660#M19633</guid>
      <dc:creator>DaClyde</dc:creator>
      <dc:date>2018-06-04T20:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown on a table that uses display values from a lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307661#M19634</link>
      <description>&lt;P&gt;Other option you've is, pass the "Friendly name" to drilldown/client  search, and then where you're using host filter (earlier when you were using host name), use a subsearch which uses that friendly name to fetch host names from the lookup. E.g.&lt;/P&gt;

&lt;P&gt;Server List query:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup yourlookup.csv | table FriendlyNameCol, hostNameCol | stats count by FriendlyNameCol | table FriendlyNameCol
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;When clicked it'll pass FriendlyNameCol value as &lt;CODE&gt;$click.value$&lt;/CODE&gt;.&lt;/P&gt;

&lt;P&gt;Client List query:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=foo sourcetype=bar [ | inputlookup yourlookup.csv | where FriendlyNameCol="$drilldownToken$" | table hostNameCol] | .. rest of the search
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Jun 2018 21:20:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307661#M19634</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2018-06-04T21:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown on a table that uses display values from a lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307662#M19635</link>
      <description>&lt;P&gt;Rename the ugly field to &lt;CODE&gt;_uglyfield&lt;/CODE&gt;, and use &lt;CODE&gt;$row._uglyfield$&lt;/CODE&gt; in your drilldown. The underscore will make the table hide the field.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jun 2018 21:27:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307662#M19635</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2018-06-04T21:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown on a table that uses display values from a lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307663#M19636</link>
      <description>&lt;P&gt;Beautiful, that worked perfectly!  Where is that little nugget in the documentation?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jun 2018 13:54:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307663#M19636</guid>
      <dc:creator>DaClyde</dc:creator>
      <dc:date>2018-06-05T13:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown on a table that uses display values from a lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307664#M19637</link>
      <description>&lt;P&gt;Not sure if it exists explicitly, but implicitly somewhere by stating that underscore fields are internal/hidden... Feel free to leave docs feedback in the dashboarding docs.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jun 2018 13:58:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/307664#M19637</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2018-06-05T13:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown on a table that uses display values from a lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/556236#M38672</link>
      <description>&lt;P&gt;3 years later, I'm finally getting around to using this and it works great.&amp;nbsp; Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jun 2021 21:04:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-on-a-table-that-uses-display-values-from-a/m-p/556236#M38672</guid>
      <dc:creator>DaClyde</dc:creator>
      <dc:date>2021-06-17T21:04:28Z</dc:date>
    </item>
  </channel>
</rss>

