<?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: When using different inputs in the same dashboard, why am I getting the following error? : &amp;quot;duplicate values causing conflict&amp;quot; in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445989#M29311</link>
    <description>&lt;P&gt;@chrisyoungerjds -His search queries for each dropdown show dedup source, in the comment section in question.&lt;/P&gt;</description>
    <pubDate>Tue, 05 Feb 2019 20:00:29 GMT</pubDate>
    <dc:creator>Vijeta</dc:creator>
    <dc:date>2019-02-05T20:00:29Z</dc:date>
    <item>
      <title>When using different inputs in the same dashboard, why am I getting the following error? : "duplicate values causing conflict"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445983#M29305</link>
      <description>&lt;P&gt;I need to use two different inputs in one dashboard to filter the source. One for Apache and another for JBoss:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Apache :
      &amp;lt;input type="dropdown" token="WebAppTok" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;Apache Application&amp;lt;/label&amp;gt;
        &amp;lt;fieldForLabel&amp;gt;count&amp;lt;/fieldForLabel&amp;gt;
        &amp;lt;fieldForValue&amp;gt;source&amp;lt;/fieldForValue&amp;gt;
Jboss:
     &amp;lt;input type="dropdown" token="jBossAppTok" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;jBoss Application&amp;lt;/label&amp;gt;
        &amp;lt;fieldForLabel&amp;gt;count&amp;lt;/fieldForLabel&amp;gt;
        &amp;lt;fieldForValue&amp;gt;source&amp;lt;/fieldForValue&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Both the inputs work if I use them in separate dashboards, but I want to use it in the same dashboards, but I'm getting an error saying "duplicate values causing conflict".&lt;/P&gt;

&lt;P&gt;Anyway I can get around that?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 17:04:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445983#M29305</guid>
      <dc:creator>pranay04</dc:creator>
      <dc:date>2019-02-05T17:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: When using different inputs in the same dashboard, why am I getting the following error? : "duplicate values causing conflict"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445984#M29306</link>
      <description>&lt;P&gt;Can you type your query to populate the input. Is it a dropdown?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 17:10:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445984#M29306</guid>
      <dc:creator>Vijeta</dc:creator>
      <dc:date>2019-02-05T17:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: When using different inputs in the same dashboard, why am I getting the following error? : "duplicate values causing conflict"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445985#M29307</link>
      <description>&lt;P&gt;It is a drop down. Below is what I am using for the inputs for apache and jboss&lt;/P&gt;

&lt;P&gt;Apache :&lt;BR /&gt;
          &lt;INPUT type="dropdown" token="WebAppTok" searchwhenchanged="true" /&gt;&lt;BR /&gt;
        &lt;LABEL&gt;Apache Application&lt;/LABEL&gt;&lt;BR /&gt;
        &lt;FIELDFORLABEL&gt;count&lt;/FIELDFORLABEL&gt;&lt;BR /&gt;
        &lt;FIELDFORVALUE&gt;source&lt;/FIELDFORVALUE&gt;&lt;BR /&gt;
        &lt;SEARCH&gt;&lt;BR /&gt;
          &lt;QUERY&gt;index=apache  host=&lt;EM&gt;xxx&lt;/EM&gt; source=*&lt;BR /&gt;
| search access_request!="&lt;EM&gt;xxx&lt;/EM&gt;"&lt;BR /&gt;
| WHERE NOT ( cidrmatch("10.0.0.0/8",clientip) OR cidrmatch("172.16.0.0/12",clientip) OR cidrmatch("128.121.245.0/28",clientip) OR clientip="168.143.160.133" OR clientip="168.143.160.178" OR match(access_request, "(?i).(?:jpg|gif|png|js|css|swf|ico|bmp|pdf|xml)[\?# ]") ) | replace /logs/* with * in source | replace */access.log with * in source | dedup clientip | dedup source&lt;BR /&gt;
| table source&lt;BR /&gt;
          &lt;EARLIEST&gt;-15m&lt;/EARLIEST&gt;&lt;BR /&gt;
          &lt;LATEST&gt;now&lt;/LATEST&gt;&lt;BR /&gt;
        &lt;/QUERY&gt;&lt;BR /&gt;
        &lt;DEFAULT&gt;abc&lt;/DEFAULT&gt;&lt;BR /&gt;
      &lt;/SEARCH&gt;&lt;/P&gt;

&lt;P&gt;jBoss:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;label&amp;gt;jBoss Application&amp;lt;/label&amp;gt;
    &amp;lt;fieldForLabel&amp;gt;count&amp;lt;/fieldForLabel&amp;gt;
    &amp;lt;fieldForValue&amp;gt;source&amp;lt;/fieldForValue&amp;gt;
    &amp;lt;search&amp;gt;
      &amp;lt;query&amp;gt;index=jboss host=*ch*prd* source= a OR source= b OR source= c
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;| replace /logs/* with * in source | replace */server.log with * in source  | dedup source&lt;BR /&gt;
| table sourcee&lt;BR /&gt;
          &lt;EARLIEST&gt;-15m&lt;/EARLIEST&gt;&lt;BR /&gt;
          &lt;LATEST&gt;now&lt;/LATEST&gt;&lt;BR /&gt;
        &lt;BR /&gt;
        &lt;DEFAULT&gt;xyz&lt;/DEFAULT&gt;&lt;BR /&gt;
      &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:05:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445985#M29307</guid>
      <dc:creator>pranay04</dc:creator>
      <dc:date>2020-09-29T23:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: When using different inputs in the same dashboard, why am I getting the following error? : "duplicate values causing conflict"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445986#M29308</link>
      <description>&lt;P&gt;On your search that is used to populate the dropdown, add &lt;CODE&gt;|dedup FIELD&lt;/CODE&gt; so the search doesn't return duplicate values.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 18:35:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445986#M29308</guid>
      <dc:creator>chrisyounger</dc:creator>
      <dc:date>2019-02-05T18:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: When using different inputs in the same dashboard, why am I getting the following error? : "duplicate values causing conflict"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445987#M29309</link>
      <description>&lt;P&gt;For both the inputs?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 18:38:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445987#M29309</guid>
      <dc:creator>pranay04</dc:creator>
      <dc:date>2019-02-05T18:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: When using different inputs in the same dashboard, why am I getting the following error? : "duplicate values causing conflict"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445988#M29310</link>
      <description>&lt;P&gt;yep thats correct&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 18:56:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445988#M29310</guid>
      <dc:creator>chrisyounger</dc:creator>
      <dc:date>2019-02-05T18:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: When using different inputs in the same dashboard, why am I getting the following error? : "duplicate values causing conflict"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445989#M29311</link>
      <description>&lt;P&gt;@chrisyoungerjds -His search queries for each dropdown show dedup source, in the comment section in question.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 20:00:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/When-using-different-inputs-in-the-same-dashboard-why-am-I/m-p/445989#M29311</guid>
      <dc:creator>Vijeta</dc:creator>
      <dc:date>2019-02-05T20:00:29Z</dc:date>
    </item>
  </channel>
</rss>

