<?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: Drill Down Help for Dashboard with \ in variable in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drill-Down-Help-for-Dashboard-with-in-variable/m-p/371048#M41686</link>
    <description>&lt;P&gt;Got It!  Thank you.  Worked like a champ!&lt;/P&gt;</description>
    <pubDate>Mon, 30 Apr 2018 16:35:14 GMT</pubDate>
    <dc:creator>ghostdog920</dc:creator>
    <dc:date>2018-04-30T16:35:14Z</dc:date>
    <item>
      <title>Drill Down Help for Dashboard with \ in variable</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drill-Down-Help-for-Dashboard-with-in-variable/m-p/371044#M41682</link>
      <description>&lt;P&gt;Good morning,&lt;/P&gt;

&lt;P&gt;I am trying to build a drill down off one dashboard panel to build a search in the second.  The issue i am running into is am passing a value of pf\first.last but in the new search, it needs to pass as pf\first.last (notice the extra escape \ character).  Does anyone know how i might do this?  My current search is: (where $user.user$) is a drill down set value option from a corresponding panel.&lt;/P&gt;

&lt;P&gt;eventtype="pan_url" dest_zone="L3-Untrust" src_user=$user.user$ (app=adobe-connect OR app=brighttalk OR app=citrix OR app=citrix-jedi OR app=clearspace OR app=globalmeet-base OR app=gotomeeting OR app=gotowebinar-base OR app=hp-virtual-rooms OR app=jabber OR app=join-me OR app=live-meeting OR app=meetup OR app=skype OR app=tigertext OR app=webex OR app=zendesk OR app=zoom OR app=teamviewer-base)| stats count by app | sort - count&lt;/P&gt;

&lt;P&gt;Any help is greatly apprecated.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 19:18:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Drill-Down-Help-for-Dashboard-with-in-variable/m-p/371044#M41682</guid>
      <dc:creator>ghostdog920</dc:creator>
      <dc:date>2020-09-29T19:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: Drill Down Help for Dashboard with \ in variable</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drill-Down-Help-for-Dashboard-with-in-variable/m-p/371045#M41683</link>
      <description>&lt;P&gt;How about using an eval to add a second slash before passing it to the other dashboard? Here's a sample:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval a="pf\something" 
| eval b=mvjoin(split(a, "\\"), "\\\\")
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This guide documents how to use &lt;CODE&gt;&amp;lt;eval&amp;gt;&lt;/CODE&gt; elements to modify values being passed in a drilldown:&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Viz/tokens#Define_token_filtering_and_formatting"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Viz/tokens#Define_token_filtering_and_formatting&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 15:23:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Drill-Down-Help-for-Dashboard-with-in-variable/m-p/371045#M41683</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2018-04-30T15:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Drill Down Help for Dashboard with \ in variable</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drill-Down-Help-for-Dashboard-with-in-variable/m-p/371046#M41684</link>
      <description>&lt;P&gt;Thank you for that.  I am trying to use the edit drill down so not sure how I would implement that in the first panel to feed to the second.  Here is a screenshot in case it proves helpful.&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/4864i6441CCBEAD215849/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 16:03:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Drill-Down-Help-for-Dashboard-with-in-variable/m-p/371046#M41684</guid>
      <dc:creator>ghostdog920</dc:creator>
      <dc:date>2018-04-30T16:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Drill Down Help for Dashboard with \ in variable</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drill-Down-Help-for-Dashboard-with-in-variable/m-p/371047#M41685</link>
      <description>&lt;P&gt;In the first panel, you are taking the value from one field, adding a second slash to the value in that field, and putting it into the token &lt;CODE&gt;user.name&lt;/CODE&gt;.  Let's say the field in the first panel is called &lt;CODE&gt;name_field&lt;/CODE&gt;. Then in the dropdown you show above, you'd change "Set" to "Eval", leave "user.user" in the first text entry box, and put this into the second:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;mvjoin(split($row.name_field$, "\\"), "\\\\")
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;That should take the value from &lt;CODE&gt;name_field&lt;/CODE&gt; in the first panel, add a second slash, and put it all into the &lt;CODE&gt;user.user&lt;/CODE&gt; token.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 16:30:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Drill-Down-Help-for-Dashboard-with-in-variable/m-p/371047#M41685</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2018-04-30T16:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Drill Down Help for Dashboard with \ in variable</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Drill-Down-Help-for-Dashboard-with-in-variable/m-p/371048#M41686</link>
      <description>&lt;P&gt;Got It!  Thank you.  Worked like a champ!&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 16:35:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Drill-Down-Help-for-Dashboard-with-in-variable/m-p/371048#M41686</guid>
      <dc:creator>ghostdog920</dc:creator>
      <dc:date>2018-04-30T16:35:14Z</dc:date>
    </item>
  </channel>
</rss>

