<?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 edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215416#M13422</link>
    <description>&lt;P&gt;I see you're creating 5 tokens from drilldown section on the first table, so add all those field comparison in the where clause, as oppose to just one you're doing currently.&lt;/P&gt;</description>
    <pubDate>Mon, 08 Aug 2016 18:48:47 GMT</pubDate>
    <dc:creator>somesoni2</dc:creator>
    <dc:date>2016-08-08T18:48:47Z</dc:date>
    <item>
      <title>How to edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215411#M13417</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;My team and I are working on a project and we are trying to open data logs within our dashboard. Our current XML code enables us to open the data logs in the dashboard, but it opens all the logs within the server. So given any attribute that we click on the table, all the data logs are displayed instead of just the data log specific to that attribute. Is there a way I can fix that so only the log related to the attribute is displayed? This is the XML source we have so far:&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;UPDATE&lt;/EM&gt;&lt;BR /&gt;
The logs are being displayed but now for example if I click on a specific ConnID all the logs with that same connID is being displayed. Is there a way to write the query such that only the log related to that specific ConnID and Event that's being clicked on is open?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
    &amp;lt;label&amp;gt;Genesys Search Test&amp;lt;/label&amp;gt;
    &amp;lt;fieldset submitButton="false" autoRun="true"&amp;gt;
        &amp;lt;input type="text" token="tok_ID" searchWhenChanged="true"&amp;gt;
            &amp;lt;label&amp;gt;ConnID/CallUUID&amp;lt;/label&amp;gt;
            &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
        &amp;lt;/input&amp;gt;
    &amp;lt;/fieldset&amp;gt;
    &amp;lt;row&amp;gt;
        &amp;lt;panel&amp;gt;
            &amp;lt;title&amp;gt;Genesys Server&amp;lt;/title&amp;gt;
            &amp;lt;table&amp;gt;
                &amp;lt;title&amp;gt;Avaya Tserver&amp;lt;/title&amp;gt;
                &amp;lt;search&amp;gt;
                    &amp;lt;query&amp;gt;index=windowsapps sourcetype=Genesys_AvayaTserver "$tok_ID$" | rex"(Trc|Adjusted|distribute_event|distribute_user_event|send_to_client|distribute_response):?\s\w+\s(?&amp;amp;lt;EventName&amp;amp;gt;\w+)"| rex"AttributeConnID'?\s'?(?&amp;amp;lt;AttributeConnID&amp;amp;gt;[^\t\n\r]+)"| rex"AttributeANI'?\s'?(?&amp;amp;lt;AttributeANI&amp;amp;gt;[^\t\n\r]+)"| rex"AttributeDNIS'?\s'?(?&amp;amp;lt;AttributeDNIS&amp;amp;gt;[^\t\n]+)"| rex"AttributeCallType'?\s'?(?&amp;amp;lt;AttributeCallType&amp;amp;gt;[^\t\n]+)"|rex"AttributeCallUUID'?\s'?(?&amp;amp;lt;AttributeCallUUID&amp;amp;gt;[^\t\n]+)"|rex"AttributeUserData'?\s'?(?&amp;amp;lt;AttributeUserData&amp;amp;gt;[^\t\n]+)"|table_time EventName AttributeConnID AttributeANI AttributeDNIS AttributeCallType AttributeCallUUID AttributeUserData| where isnotnull(AttributeANI)&amp;lt;/query&amp;gt;
                    &amp;lt;earliest&amp;gt;-30d@d&amp;lt;/earliest&amp;gt;
                    &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
                &amp;lt;/search&amp;gt;
                &amp;lt;drilldown&amp;gt;
                    &amp;lt;condition&amp;gt;
                        &amp;lt;set token="tok_ShowEvents"&amp;gt;true&amp;lt;/set&amp;gt;
                        &amp;lt;eval token="e"&amp;gt;$click.value$-1&amp;lt;/eval &amp;gt;
                        &amp;lt;eval token="l"&amp;gt;$click.value$+1&amp;lt;/eval &amp;gt;
                        &amp;lt;set token="AttributeConnID"&amp;gt;$row.AttributeConnID$&amp;lt;/set&amp;gt;
                        &amp;lt;set token="AttributeANI"&amp;gt;$row.AttributeANI$&amp;lt;/set&amp;gt;
                        &amp;lt;set token="AttributeCallType"&amp;gt;$row.AttributeCallType$&amp;lt;/set&amp;gt;
                        &amp;lt;set token="AttributeDNIS"&amp;gt;$row.AttributeDNIS$&amp;lt;/set&amp;gt;
                        &amp;lt;set token="AttributeCallUUID"&amp;gt;$row.AttributeCallUUID$&amp;lt;/set&amp;gt;
                    &amp;lt;/condition&amp;gt;
                &amp;lt;/drilldown&amp;gt;
                &amp;lt;option name="wrap"&amp;gt;undefined&amp;lt;/option&amp;gt;
                &amp;lt;option name="rowNumbers"&amp;gt;undefined&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.axisLabelsX.majorLabelStyle.overflowMode"&amp;gt;ellipsisNone&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.axisLabelsX.majorLabelStyle.rotation"&amp;gt;0&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.axisTitleX.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.axisTitleY.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.axisTitleY2.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.axisX.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.axisY.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.axisY2.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.axisY2.scale"&amp;gt;inherit&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.chart"&amp;gt;bubble&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.chart.bubbleMaximumSize"&amp;gt;50&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.chart.bubbleMinimumSize"&amp;gt;10&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.chart.bubbleSizeBy"&amp;gt;area&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.chart.nullValueMode"&amp;gt;gaps&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.chart.showDataLabels"&amp;gt;none&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.chart.sliceCollapsingThreshold"&amp;gt;0.01&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.chart.stackMode"&amp;gt;default&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.chart.style"&amp;gt;shiny&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.layout.splitSeries"&amp;gt;0&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.layout.splitSeries.allowIndependentYRanges"&amp;gt;0&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.legend.labelStyle.overflowMode"&amp;gt;ellipsisMiddle&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.legend.placement"&amp;gt;right&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;row&amp;lt;/option&amp;gt;
                &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
            &amp;lt;/table&amp;gt;
        &amp;lt;/panel&amp;gt;
    &amp;lt;/row&amp;gt;
    &amp;lt;row&amp;gt;
        &amp;lt;panel depends="$tok_ShowEvents$"&amp;gt;
            &amp;lt;event&amp;gt;
                &amp;lt;search&amp;gt;
                    &amp;lt;query&amp;gt;index=windowsapps sourcetype=Genesys_AvayaTserver earliest=$e$ latest=$l$ | rex "(Trc|Adjusted|distribute_event|distribute_user_event|send_to_client|distribute_response):?\s\w+\s(?&amp;amp;lt;EventName&amp;amp;gt;\w+)"| rex "AttributeConnID'?\s'?(?&amp;amp;lt;AttributeConnID&amp;amp;gt;[^\t\n\r]+)"| rex "AttributeANI'?\s'?(?&amp;amp;lt;AttributeANI&amp;amp;gt;[^\t\n\r]+)"| rex "AttributeDNIS'?\s'?(?&amp;amp;lt;AttributeDNIS&amp;amp;gt;[^\t\n]+)"| rex "AttributeCallType'?\s'?(?&amp;amp;lt;AttributeCallType&amp;amp;gt;[^\t\n]+)"| rex "AttributeCallUUID'?\s'?(?&amp;amp;lt;AttributeCallUUID&amp;amp;gt;[^\t\n]+)"| rex "AttributeUserData'?\s'?(?&amp;amp;lt;AttributeUserData&amp;amp;gt;[^\t\n]+)"&amp;lt;/query&amp;gt;
                    &amp;lt;earliest&amp;gt;&amp;lt;/earliest&amp;gt;
                    &amp;lt;latest&amp;gt;&amp;lt;/latest&amp;gt;
                &amp;lt;/search&amp;gt;
            &amp;lt;/event&amp;gt;
        &amp;lt;/panel&amp;gt;
    &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Aug 2016 16:48:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215411#M13417</guid>
      <dc:creator>prisin123</dc:creator>
      <dc:date>2016-08-08T16:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215412#M13418</link>
      <description>&lt;P&gt;you can filter the assigned tokens in the second search (I have added one attribute AttributeConnID. you can add required. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=windowsapps sourcetype=Genesys_AvayaTserver earliest=$e$ latest=$l$ | rex "(Trc|Adjusted|distribute_event|distribute_user_event|send_to_client|distribute_response):?\s\w+\s(?&amp;lt;EventName&amp;gt;\w+)"| rex "AttributeConnID'?\s'?(?&amp;lt;AttributeConnID&amp;gt;[^\t\n\r]+)"| rex "AttributeANI'?\s'?(?&amp;lt;AttributeANI&amp;gt;[^\t\n\r]+)"| rex "AttributeDNIS'?\s'?(?&amp;lt;AttributeDNIS&amp;gt;[^\t\n]+)"| rex "AttributeCallType'?\s'?(?&amp;lt;AttributeCallType&amp;gt;[^\t\n]+)"| rex "AttributeCallUUID'?\s'?(?&amp;lt;AttributeCallUUID&amp;gt;[^\t\n]+)"| rex "AttributeUserData'?\s'?(?&amp;lt;AttributeUserData&amp;gt;[^\t\n]+)" | where AttributeConnID=$AttributeConnID$ 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Updated....&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
     &amp;lt;label&amp;gt;Genesys Search Test&amp;lt;/label&amp;gt;
     &amp;lt;fieldset submitButton="false" autoRun="true"&amp;gt;
         &amp;lt;input type="text" token="tok_ID" searchWhenChanged="true"&amp;gt;
             &amp;lt;label&amp;gt;ConnID/CallUUID&amp;lt;/label&amp;gt;
             &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
         &amp;lt;/input&amp;gt;
     &amp;lt;/fieldset&amp;gt;
     &amp;lt;row&amp;gt;
         &amp;lt;panel&amp;gt;
             &amp;lt;title&amp;gt;Genesys Server&amp;lt;/title&amp;gt;
             &amp;lt;table&amp;gt;
                 &amp;lt;title&amp;gt;Avaya Tserver&amp;lt;/title&amp;gt;
                 &amp;lt;search&amp;gt;
                     &amp;lt;query&amp;gt;index=windowsapps sourcetype=Genesys_AvayaTserver "$tok_ID$" | rex"(Trc|Adjusted|distribute_event|distribute_user_event|send_to_client|distribute_response):?\s\w+\s(?&amp;amp;lt;EventName&amp;amp;gt;\w+)"| rex"AttributeConnID'?\s'?(?&amp;amp;lt;AttributeConnID&amp;amp;gt;[^\t\n\r]+)"| rex"AttributeANI'?\s'?(?&amp;amp;lt;AttributeANI&amp;amp;gt;[^\t\n\r]+)"| rex"AttributeDNIS'?\s'?(?&amp;amp;lt;AttributeDNIS&amp;amp;gt;[^\t\n]+)"| rex"AttributeCallType'?\s'?(?&amp;amp;lt;AttributeCallType&amp;amp;gt;[^\t\n]+)"|rex"AttributeCallUUID'?\s'?(?&amp;amp;lt;AttributeCallUUID&amp;amp;gt;[^\t\n]+)"|rex"AttributeUserData'?\s'?(?&amp;amp;lt;AttributeUserData&amp;amp;gt;[^\t\n]+)"|table_time EventName AttributeConnID AttributeANI AttributeDNIS AttributeCallType AttributeCallUUID AttributeUserData| where isnotnull(AttributeANI)&amp;lt;/query&amp;gt;
                     &amp;lt;earliest&amp;gt;-30d@d&amp;lt;/earliest&amp;gt;
                     &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
                 &amp;lt;/search&amp;gt;
                 &amp;lt;drilldown&amp;gt;
                     &amp;lt;condition&amp;gt;
                         &amp;lt;set token="tok_ShowEvents"&amp;gt;true&amp;lt;/set&amp;gt;
                         &amp;lt;set token="AttributeConnID"&amp;gt;$row.AttributeConnID$&amp;lt;/set&amp;gt;
                         &amp;lt;set token="AttributeANI"&amp;gt;$row.AttributeANI$&amp;lt;/set&amp;gt;
                         &amp;lt;set token="AttributeCallType"&amp;gt;$row.AttributeCallType$&amp;lt;/set&amp;gt;
                         &amp;lt;set token="AttributeDNIS"&amp;gt;$row.AttributeDNIS$&amp;lt;/set&amp;gt;
                         &amp;lt;set token="AttributeCallUUID"&amp;gt;$row.AttributeCallUUID$&amp;lt;/set&amp;gt;
                     &amp;lt;/condition&amp;gt;
                 &amp;lt;/drilldown&amp;gt;
                 &amp;lt;option name="wrap"&amp;gt;undefined&amp;lt;/option&amp;gt;
                 &amp;lt;option name="rowNumbers"&amp;gt;undefined&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.axisLabelsX.majorLabelStyle.overflowMode"&amp;gt;ellipsisNone&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.axisLabelsX.majorLabelStyle.rotation"&amp;gt;0&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.axisTitleX.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.axisTitleY.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.axisTitleY2.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.axisX.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.axisY.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.axisY2.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.axisY2.scale"&amp;gt;inherit&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.chart"&amp;gt;bubble&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.chart.bubbleMaximumSize"&amp;gt;50&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.chart.bubbleMinimumSize"&amp;gt;10&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.chart.bubbleSizeBy"&amp;gt;area&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.chart.nullValueMode"&amp;gt;gaps&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.chart.showDataLabels"&amp;gt;none&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.chart.sliceCollapsingThreshold"&amp;gt;0.01&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.chart.stackMode"&amp;gt;default&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.chart.style"&amp;gt;shiny&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.layout.splitSeries"&amp;gt;0&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.layout.splitSeries.allowIndependentYRanges"&amp;gt;0&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.legend.labelStyle.overflowMode"&amp;gt;ellipsisMiddle&amp;lt;/option&amp;gt;
                 &amp;lt;option name="charting.legend.placement"&amp;gt;right&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;row&amp;lt;/option&amp;gt;
                 &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
             &amp;lt;/table&amp;gt;
         &amp;lt;/panel&amp;gt;
     &amp;lt;/row&amp;gt;
     &amp;lt;row&amp;gt;
         &amp;lt;panel depends="$tok_ShowEvents$"&amp;gt;
             &amp;lt;event&amp;gt;
                 &amp;lt;search&amp;gt;
                     &amp;lt;query&amp;gt;index=windowsapps sourcetype=Genesys_AvayaTserver "$tok_ID$"  | rex "(Trc|Adjusted|distribute_event|distribute_user_event|send_to_client|distribute_response):?\s\w+\s(?&amp;amp;lt;EventName&amp;amp;gt;\w+)"| rex "AttributeConnID'?\s'?(?&amp;amp;lt;AttributeConnID&amp;amp;gt;[^\t\n\r]+)"| rex "AttributeANI'?\s'?(?&amp;amp;lt;AttributeANI&amp;amp;gt;[^\t\n\r]+)"| rex "AttributeDNIS'?\s'?(?&amp;amp;lt;AttributeDNIS&amp;amp;gt;[^\t\n]+)"| rex "AttributeCallType'?\s'?(?&amp;amp;lt;AttributeCallType&amp;amp;gt;[^\t\n]+)"| rex "AttributeCallUUID'?\s'?(?&amp;amp;lt;AttributeCallUUID&amp;amp;gt;[^\t\n]+)"| rex "AttributeUserData'?\s'?(?&amp;amp;lt;AttributeUserData&amp;amp;gt;[^\t\n]+)" | where AttributeConnID="$AttributeConnID$" AND AttributeANI="$AttributeANI$" AND AttributeCallType="$AttributeCallType$" AND AttributeDNIS="$AttributeDNIS$" AND AttributeCallUUID="$AttributeCallUUID$" &amp;lt;/query&amp;gt;
                      &amp;lt;earliest&amp;gt;-30d@d&amp;lt;/earliest&amp;gt;
                     &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
                 &amp;lt;/search&amp;gt;
             &amp;lt;/event&amp;gt;
         &amp;lt;/panel&amp;gt;
     &amp;lt;/row&amp;gt;
 &amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Aug 2016 17:40:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215412#M13418</guid>
      <dc:creator>vasanthmss</dc:creator>
      <dc:date>2016-08-08T17:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215413#M13419</link>
      <description>&lt;P&gt;using that for the second query gives me  "Error in 'where' command: The operator at 'f51958b' is invalid. "&lt;/P&gt;</description>
      <pubDate>Mon, 08 Aug 2016 17:48:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215413#M13419</guid>
      <dc:creator>prisin123</dc:creator>
      <dc:date>2016-08-08T17:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215414#M13420</link>
      <description>&lt;P&gt;Put the token value within double quotes for &lt;CODE&gt;where&lt;/CODE&gt; command OR use the &lt;CODE&gt;search&lt;/CODE&gt; command instead&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;...remaining portion | where AttributeConnID="$AttributeConnID$"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;OR&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;...remaining portion | search AttributeConnID=$AttributeConnID$
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Aug 2016 18:19:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215414#M13420</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-08-08T18:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215415#M13421</link>
      <description>&lt;P&gt;This works but it's still displaying all the logs&lt;/P&gt;</description>
      <pubDate>Mon, 08 Aug 2016 18:25:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215415#M13421</guid>
      <dc:creator>prisin123</dc:creator>
      <dc:date>2016-08-08T18:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215416#M13422</link>
      <description>&lt;P&gt;I see you're creating 5 tokens from drilldown section on the first table, so add all those field comparison in the where clause, as oppose to just one you're doing currently.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Aug 2016 18:48:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215416#M13422</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-08-08T18:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215417#M13423</link>
      <description>&lt;P&gt;So I tried doing the using the logical operators when I use OR all the logs are still being displayed and with AND I get a "Search did not return any events. " message&lt;/P&gt;</description>
      <pubDate>Mon, 08 Aug 2016 19:33:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215417#M13423</guid>
      <dc:creator>prisin123</dc:creator>
      <dc:date>2016-08-08T19:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215418#M13424</link>
      <description>&lt;P&gt;So, your second search looks like this now?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;...remaining portion | where AttributeConnID=$row.AttributeConnID$" AND AttributeANI="$AttributeANI$" AND  AttributeCallType="$AttributeCallType$" AND  AttributeDNIS="$AttributeDNIS$" AND  AttributeCallUUID="$AttributeCallUUID$"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Aug 2016 20:00:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215418#M13424</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-08-08T20:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215419#M13425</link>
      <description>&lt;P&gt;Yes, that's what my second search looks like, except instead of being "$row.AttributeConnID$" it's "$rAttributeConnID$" but I tried it with "row" and I get a search is waiting input message&lt;/P&gt;</description>
      <pubDate>Mon, 08 Aug 2016 20:15:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215419#M13425</guid>
      <dc:creator>prisin123</dc:creator>
      <dc:date>2016-08-08T20:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215420#M13426</link>
      <description>&lt;P&gt;Is there anything else that I can try?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2016 12:50:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215420#M13426</guid>
      <dc:creator>prisin123</dc:creator>
      <dc:date>2016-08-09T12:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215421#M13427</link>
      <description>&lt;P&gt;open the search string in search window and check the tokens are populated properly. make sure the following, &lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;while setting token use row. eg. row.AttributeConnID$. here AttributeConnID should be available in the table row.&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;while using the token you should use the assigned name &lt;/P&gt;

&lt;P&gt;&amp;lt; set token="token_used_in_search" &amp;gt;$row.field_avilable_in_table$&amp;lt; /set &amp;gt;&lt;/P&gt;&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;***there will not be any space&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 10:35:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215421#M13427</guid>
      <dc:creator>vasanthmss</dc:creator>
      <dc:date>2020-09-29T10:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215422#M13428</link>
      <description>&lt;P&gt;I currently have panel depends="$tok_ShowEvents$"&amp;gt; where am I supposed to add the set token="token_used_in_search"?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 10:37:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215422#M13428</guid>
      <dc:creator>prisin123</dc:creator>
      <dc:date>2020-09-29T10:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit the XML for my dashboard table drilldown to only display log data specific to the attribute I click on?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215423#M13429</link>
      <description>&lt;P&gt;Look for the updated xml in the answer hope this will helps you&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2016 21:08:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-edit-the-XML-for-my-dashboard-table-drilldown-to-only/m-p/215423#M13429</guid>
      <dc:creator>vasanthmss</dc:creator>
      <dc:date>2016-08-16T21:08:47Z</dc:date>
    </item>
  </channel>
</rss>

