<?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: Passing values to another dashboard and using the same in search in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/661190#M228279</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;I tried few way, I didn't got it.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;condition match="isnull($office_filter$) == &amp;amp;quot;Front_Office*&amp;amp;quot;"&amp;gt;
&amp;lt;set token="office_filter_drilldown"&amp;gt;form.office_filter=Front%20Office&amp;lt;/set&amp;gt;
&amp;lt;/condition&amp;gt;
&amp;lt;condition match="isnull($office_filter$) == &amp;amp;quot;Back_Office*&amp;amp;quot;"&amp;gt;
&amp;lt;eval token="office_filter_drilldown"&amp;gt;form.office_filter=Back%20Office&amp;lt;/eval&amp;gt;
&amp;lt;/condition&amp;gt;
&amp;lt;condition match="isnull($office_filter$) == &amp;amp;quot;Front_Office*&amp;amp;quot; AND == &amp;amp;quot;Back_Office*&amp;amp;quot;"&amp;gt;
&amp;lt;eval token="office_filter_drilldown"&amp;gt;form.office_filter=Front%20Office&amp;amp;amp;form.office_filter=Back%20Office&amp;lt;/eval&amp;gt;
&amp;lt;/condition&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;can you please share that as well.&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance!&lt;/P&gt;</description>
    <pubDate>Wed, 18 Oct 2023 14:04:48 GMT</pubDate>
    <dc:creator>smanojkumar</dc:creator>
    <dc:date>2023-10-18T14:04:48Z</dc:date>
    <item>
      <title>Passing values to another dashboard and using the same in search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/660978#M228204</link>
      <description>&lt;P&gt;Hi There!&lt;BR /&gt;&amp;nbsp; &amp;nbsp;I need to pass a token form one dashboard to another dashboard when clicking its pie chart&lt;BR /&gt;&amp;nbsp;Input in dashboard 1&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;/input&amp;gt;
&amp;lt;input type="multiselect" token="choose_office" searchWhenChanged="true"&amp;gt;
&amp;lt;label&amp;gt;Front/Back office&amp;lt;/label&amp;gt;
&amp;lt;choice value="Front Office"&amp;gt;Front Office&amp;lt;/choice&amp;gt;
&amp;lt;choice value="Back Office"&amp;gt;Back Office&amp;lt;/choice&amp;gt;
&amp;lt;initialValue&amp;gt;Front Office,Back Office&amp;lt;/initialValue&amp;gt;
&amp;lt;default&amp;gt;Front Office,Back Office&amp;lt;/default&amp;gt;
&amp;lt;valuePrefix&amp;gt;"&amp;lt;/valuePrefix&amp;gt;
&amp;lt;valueSuffix&amp;gt;"&amp;lt;/valueSuffix&amp;gt;
&amp;lt;delimiter&amp;gt;, &amp;lt;/delimiter&amp;gt;
&amp;lt;/input&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;one of the searches in dashboard 1&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;`compliance_op`
| search office IN ($choose_office$)
| chart count by $scope$global
| sort $scope$global&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;My link to next dashboard is&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;drilldown&amp;gt;
&amp;lt;link target="_blank"&amp;gt;/app/SAsh/operational_beautiful?form.choose_office=$choose_office$&amp;amp;amp;form.machine=$machine$&amp;amp;amp;form.origin=$origin$&amp;amp;amp;form.country=$country$&amp;amp;amp;form.cacp=$cacp$&amp;amp;amp;form.scope=$scope$&amp;lt;/link&amp;gt;
&amp;lt;/drilldown&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;Multiselect in dashboard 2&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;input type="multiselect" token="office_filter" searchWhenChanged="true"&amp;gt;
&amp;lt;label&amp;gt;Front/Back Office&amp;lt;/label&amp;gt;
&amp;lt;choice value="Front Office"&amp;gt;Front Office&amp;lt;/choice&amp;gt;
&amp;lt;choice value="Back Office"&amp;gt;Back Office&amp;lt;/choice&amp;gt;
&amp;lt;choice value="Unknown"&amp;gt;Unknown&amp;lt;/choice&amp;gt;
&amp;lt;prefix&amp;gt;office IN (&amp;lt;/prefix&amp;gt;
&amp;lt;suffix&amp;gt;)&amp;lt;/suffix&amp;gt;
&amp;lt;initialValue&amp;gt;Front Office,Back Office,Unknown&amp;lt;/initialValue&amp;gt;
&amp;lt;valuePrefix&amp;gt;"&amp;lt;/valuePrefix&amp;gt;
&amp;lt;valueSuffix&amp;gt;"&amp;lt;/valueSuffix&amp;gt;
&amp;lt;delimiter&amp;gt;, &amp;lt;/delimiter&amp;gt;
&amp;lt;change&amp;gt;
&amp;lt;eval token="office_filter_drilldown"&amp;gt;mvjoin('form.office_filter',"&amp;amp;amp;form.office_filter=")&amp;lt;/eval&amp;gt;
&amp;lt;/change&amp;gt;
&amp;lt;/input&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;search in dashboard 2&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;`compliance_ap`
| search office IN ($choose_office$)
| chart count by $scope$global
| sort $scope$global&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;I'm facing error in search of dashboard 2.&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 12:01:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/660978#M228204</guid>
      <dc:creator>smanojkumar</dc:creator>
      <dc:date>2023-10-19T12:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Passing values to another dashboard and using the same in search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/660982#M228205</link>
      <description>&lt;P&gt;Multi-selects settings are passed in URLs by repeating the token with each value that has been selected&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;link target="_blank"&amp;gt;/app/SAsh/operational_beautiful?form.choose_office=Front%20Office&amp;amp;amp;form.choose_office=Back%20Office&amp;amp;amp;...&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 17 Oct 2023 09:03:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/660982#M228205</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-10-17T09:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Passing values to another dashboard and using the same in search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/660994#M228211</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Thanks for your response!&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;It is working fine, it always selected two values in dashboard 2 even if we are selecting one value in dashboard 1,&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;For Eg. If we are selecting "Front Office" in Dashboard 1, It shows both values "Front Office" and "Back Office" in Dashboard 2.&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 11:16:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/660994#M228211</guid>
      <dc:creator>smanojkumar</dc:creator>
      <dc:date>2023-10-17T11:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Passing values to another dashboard and using the same in search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/661154#M228267</link>
      <description>&lt;P&gt;The tokens passed in the url need to be constructed from the multi-select input not hard coded&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 08:25:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/661154#M228267</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-10-18T08:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: Passing values to another dashboard and using the same in search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/661190#M228279</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;I tried few way, I didn't got it.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;condition match="isnull($office_filter$) == &amp;amp;quot;Front_Office*&amp;amp;quot;"&amp;gt;
&amp;lt;set token="office_filter_drilldown"&amp;gt;form.office_filter=Front%20Office&amp;lt;/set&amp;gt;
&amp;lt;/condition&amp;gt;
&amp;lt;condition match="isnull($office_filter$) == &amp;amp;quot;Back_Office*&amp;amp;quot;"&amp;gt;
&amp;lt;eval token="office_filter_drilldown"&amp;gt;form.office_filter=Back%20Office&amp;lt;/eval&amp;gt;
&amp;lt;/condition&amp;gt;
&amp;lt;condition match="isnull($office_filter$) == &amp;amp;quot;Front_Office*&amp;amp;quot; AND == &amp;amp;quot;Back_Office*&amp;amp;quot;"&amp;gt;
&amp;lt;eval token="office_filter_drilldown"&amp;gt;form.office_filter=Front%20Office&amp;amp;amp;form.office_filter=Back%20Office&amp;lt;/eval&amp;gt;
&amp;lt;/condition&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;can you please share that as well.&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance!&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 14:04:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/661190#M228279</guid>
      <dc:creator>smanojkumar</dc:creator>
      <dc:date>2023-10-18T14:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Passing values to another dashboard and using the same in search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/661209#M228281</link>
      <description>&lt;P&gt;Try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;input type="multiselect" token="choose_office" searchWhenChanged="true"&amp;gt;
&amp;lt;label&amp;gt;Front/Back office&amp;lt;/label&amp;gt;
&amp;lt;choice value="Front%20Office"&amp;gt;Front Office&amp;lt;/choice&amp;gt;
&amp;lt;choice value="Back%20Office"&amp;gt;Back Office&amp;lt;/choice&amp;gt;
&amp;lt;valuePrefix&amp;gt;form.choose_office=&amp;lt;/valuePrefix&amp;gt;
&amp;lt;valueSuffix&amp;gt;&amp;lt;/valueSuffix&amp;gt;
&amp;lt;delimiter&amp;gt;&amp;amp;amp;&amp;lt;/delimiter&amp;gt;
&amp;lt;/input&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 18 Oct 2023 14:46:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/661209#M228281</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-10-18T14:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Passing values to another dashboard and using the same in search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/661352#M228328</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;It is fine but the prefix "form.office_filter=" is affecting the token that is used in search and the link is not expected.&lt;BR /&gt;&lt;BR /&gt;Here is the link&lt;BR /&gt;&lt;BR /&gt;&lt;A title="https://soc-siem.eu.airbus.corp:8000/en-gb/app/sa_ai_r_b6f4_endpoint_sh/mcafee_operational_antivirus_details?form.compliance_filter=compliant&amp;amp;form.mcafee_index=1t23*&amp;amp;form.timerange=-15d%40d&amp;amp;form.antivirus_filter=*&amp;amp;form.office_filter%3dback%20office%26form.office_filter%3dfront%20office=&amp;amp;form.machine=*&amp;amp;form.origin=*&amp;amp;form.country=*&amp;amp;form.cacp=*&amp;amp;form.scope=mcafee_console_" href="https://soc-siem.eu.airbus.corp:8000/en-GB/app/SA_AI_R_B6F4_endpoint_sh/mcafee_operational_antivirus_details?form.compliance_filter=Compliant&amp;amp;form.mcafee_index=1T23*&amp;amp;form.timerange=-15d%40d&amp;amp;form.antivirus_filter=*&amp;amp;form.office_filter%3DBack%20Office%26form.office_filter%3DFront%20Office=&amp;amp;form.machine=*&amp;amp;form.origin=*&amp;amp;form.country=*&amp;amp;form.cacp=*&amp;amp;form.scope=mcafee_console_" target="_blank" rel="noreferrer noopener"&gt;&amp;amp;form.office_filter%3DBack%20Office%26form.office_filter%3DFront%20Office=&amp;amp;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If I'm using this instead, it works&lt;BR /&gt;&lt;BR /&gt;&lt;A title="https://soc-siem.eu.airbus.corp:8000/en-GB/app/SA_AI_R_B6F4_endpoint_sh/mcafee_operational_antivirus_details?form.compliance_filter=Compliant&amp;amp;form.mcafee_index=1T23*&amp;amp;form.timerange=-15d%40d&amp;amp;form.antivirus_filter=*&amp;amp;form.office_filter=Back%20Office&amp;amp;form.office_filter=Front%20Office=&amp;amp;form.machine=*&amp;amp;form.origin=*&amp;amp;form.country=*&amp;amp;form.cacp=*&amp;amp;form.scope=mcafee_console_" href="https://soc-siem.eu.airbus.corp:8000/en-GB/app/SA_AI_R_B6F4_endpoint_sh/mcafee_operational_antivirus_details?form.compliance_filter=Compliant&amp;amp;form.mcafee_index=1T23*&amp;amp;form.timerange=-15d%40d&amp;amp;form.antivirus_filter=*&amp;amp;form.office_filter=Back%20Office&amp;amp;form.office_filter=Front%20Office=&amp;amp;form.machine=*&amp;amp;form.origin=*&amp;amp;form.country=*&amp;amp;form.cacp=*&amp;amp;form.scope=mcafee_console_" target="_blank" rel="noreferrer noopener"&gt;&amp;amp;form.office_filter=Back%20Office&amp;amp;form.office_filter=Front%20Office=&amp;amp;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;= is replaced by %3D in first link, &amp;amp; is replaced by %26&lt;BR /&gt;&lt;BR /&gt;Can you&amp;nbsp; please help me in this!&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 11:36:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/661352#M228328</guid>
      <dc:creator>smanojkumar</dc:creator>
      <dc:date>2023-10-19T11:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Passing values to another dashboard and using the same in search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/661359#M228335</link>
      <description>&lt;P&gt;How are you using the token in the link?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 11:57:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/661359#M228335</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-10-19T11:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Passing values to another dashboard and using the same in search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/661364#M228338</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;I'm just passing the token in link&lt;BR /&gt;&lt;BR /&gt;$office_filter$&lt;BR /&gt;&lt;BR /&gt;&amp;lt;link target="_blank"&amp;gt;/app/SAsh/details?form.compliance_filter=$click.value$&amp;amp;amp;form.timerange=$timerange$&amp;amp;amp;form.antivirus_filter=*&amp;amp;amp;$office_filter$&amp;amp;amp;form.machine=$machine$&amp;amp;amp;form.origin=$origin$&amp;amp;amp;form.scope=$scope$&amp;lt;/link&amp;gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 12:38:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Passing-values-to-another-dashboard-and-using-the-same-in-search/m-p/661364#M228338</guid>
      <dc:creator>smanojkumar</dc:creator>
      <dc:date>2023-10-19T12:38:49Z</dc:date>
    </item>
  </channel>
</rss>

