<?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 How to find unique events in a dashboard with a base search and several post-process searches? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-find-unique-events-in-a-dashboard-with-a-base-search-and/m-p/372524#M24329</link>
    <description>&lt;P&gt;I have a dashboard which uses a base search that finds all events that we are interested in, then use post-process searches to classify this data into several different categories ("known concerns"). &lt;/P&gt;

&lt;P&gt;In the end, I want to display all events that are not picked up by any of these post-process searches, but I can't seem to find any primitive that would do this. &lt;/P&gt;

&lt;P&gt;Basically, the logic I need is:  BASE XOR (CATEGORY1 OR CATEGORY2 OR ...)&lt;/P&gt;

&lt;P&gt;Ideally without having to duplicate the post-process searches again, since the results are already found.&lt;/P&gt;</description>
    <pubDate>Thu, 22 Mar 2018 16:05:50 GMT</pubDate>
    <dc:creator>polssn</dc:creator>
    <dc:date>2018-03-22T16:05:50Z</dc:date>
    <item>
      <title>How to find unique events in a dashboard with a base search and several post-process searches?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-find-unique-events-in-a-dashboard-with-a-base-search-and/m-p/372524#M24329</link>
      <description>&lt;P&gt;I have a dashboard which uses a base search that finds all events that we are interested in, then use post-process searches to classify this data into several different categories ("known concerns"). &lt;/P&gt;

&lt;P&gt;In the end, I want to display all events that are not picked up by any of these post-process searches, but I can't seem to find any primitive that would do this. &lt;/P&gt;

&lt;P&gt;Basically, the logic I need is:  BASE XOR (CATEGORY1 OR CATEGORY2 OR ...)&lt;/P&gt;

&lt;P&gt;Ideally without having to duplicate the post-process searches again, since the results are already found.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2018 16:05:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-find-unique-events-in-a-dashboard-with-a-base-search-and/m-p/372524#M24329</guid>
      <dc:creator>polssn</dc:creator>
      <dc:date>2018-03-22T16:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to find unique events in a dashboard with a base search and several post-process searches?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-find-unique-events-in-a-dashboard-with-a-base-search-and/m-p/372525#M24330</link>
      <description>&lt;P&gt;So in short you need to filter out post process searches using &lt;CODE&gt;NOT&lt;/CODE&gt; and &lt;CODE&gt;OR&lt;/CODE&gt; operator.&lt;BR /&gt;
Your query would be &lt;CODE&gt;BASE NOT (CATEGORY1 OR CATEGORY2 OR ...)&lt;/CODE&gt; &lt;/P&gt;

&lt;P&gt;Try this run anywhere XML&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Post Process Searches&amp;lt;/label&amp;gt;
  &amp;lt;search id="Base_Search"&amp;gt;
       &amp;lt;query&amp;gt;index=_internal | head 1000&amp;lt;/query&amp;gt;
   &amp;lt;/search&amp;gt;
  &amp;lt;row&amp;gt;

    &amp;lt;panel&amp;gt;&amp;lt;title&amp;gt;ERROR&amp;lt;/title&amp;gt;
      &amp;lt;event&amp;gt;
        &amp;lt;search base="Base_Search"&amp;gt;
           &amp;lt;query&amp;gt;| search "ERROR"&amp;lt;/query&amp;gt;
       &amp;lt;/search&amp;gt;
        &amp;lt;option name="list.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/event&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;&amp;lt;title&amp;gt;INFO&amp;lt;/title&amp;gt;
      &amp;lt;event&amp;gt;
        &amp;lt;search base="Base_Search"&amp;gt;
           &amp;lt;query&amp;gt;| search "INFO"&amp;lt;/query&amp;gt;
       &amp;lt;/search&amp;gt;
        &amp;lt;option name="list.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/event&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;&amp;lt;title&amp;gt;WARNING&amp;lt;/title&amp;gt;
      &amp;lt;event&amp;gt;
        &amp;lt;search base="Base_Search"&amp;gt;
           &amp;lt;query&amp;gt;| search "WARNING"&amp;lt;/query&amp;gt;
       &amp;lt;/search&amp;gt;
        &amp;lt;option name="list.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/event&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
   &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;&amp;lt;title&amp;gt;NOT "ERROR" NOT "WARNING" NOT "INFO"&amp;lt;/title&amp;gt;
      &amp;lt;event&amp;gt;
        &amp;lt;search base="Base_Search"&amp;gt;
           &amp;lt;query&amp;gt;| search NOT "ERROR" NOT "WARNING" NOT "INFO"&amp;lt;/query&amp;gt;
       &amp;lt;/search&amp;gt;
        &amp;lt;option name="list.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/event&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;let me know if this helps!&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2018 16:39:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-find-unique-events-in-a-dashboard-with-a-base-search-and/m-p/372525#M24330</guid>
      <dc:creator>mayurr98</dc:creator>
      <dc:date>2018-03-22T16:39:19Z</dc:date>
    </item>
  </channel>
</rss>

