<?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: Trying to ignore a value based on the field in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Trying-to-ignore-a-value-based-on-the-field/m-p/552360#M156771</link>
    <description>&lt;P&gt;Did you try it?&lt;/P&gt;&lt;P&gt;There is an OR so if the OS_Type is not Linux it will get found no matter what the OS_Subtype, or if the OS_Type is Linux, then it will only be found if the OS_Subtype is not Total.&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;OS_Type&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;OS_Subtype&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Found by search&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;Linux&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Total&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;Linux&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Not Total&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Yes (OS_Subtype != Total)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;Not Linux&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Total&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Yes (OS_Type != Linux)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;Not Linux&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Not Total&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Yes (OS_Type != Linux)&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Is this not what you want?&lt;/P&gt;</description>
    <pubDate>Thu, 20 May 2021 09:50:59 GMT</pubDate>
    <dc:creator>ITWhisperer</dc:creator>
    <dc:date>2021-05-20T09:50:59Z</dc:date>
    <item>
      <title>Trying to ignore a value based on the field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Trying-to-ignore-a-value-based-on-the-field/m-p/552351#M156765</link>
      <description>&lt;P&gt;Hello team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to ignore the value "Total" if its concurrent Os_type matches "Linux"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is what I tried.&lt;/P&gt;&lt;P&gt;|search DataType=Executive_Summary | search&amp;nbsp;OS_Type=Linux AND&amp;nbsp;OS_SubType!=Total&lt;BR /&gt;| chart values(Servers_Skipped_Patching) as Skipped values(Servers_Failed_Patching) as Failed values(Servers_Successfully_Patching) as Successful by "OS_Type" "OS_SubType"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, as I am also getting the value&amp;nbsp;OS_SubType=Total from OS_Type=Windows.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know how I may ignore the "Total" only from Linux and not from any other OS_Type.&lt;/P&gt;</description>
      <pubDate>Thu, 20 May 2021 09:01:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Trying-to-ignore-a-value-based-on-the-field/m-p/552351#M156765</guid>
      <dc:creator>srinivasgowda</dc:creator>
      <dc:date>2021-05-20T09:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to ignore a value based on the field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Trying-to-ignore-a-value-based-on-the-field/m-p/552355#M156766</link>
      <description>&lt;LI-CODE lang="markup"&gt;| search OS_Type!=Linux OR OS_SubType!=Total&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 20 May 2021 09:28:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Trying-to-ignore-a-value-based-on-the-field/m-p/552355#M156766</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-05-20T09:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to ignore a value based on the field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Trying-to-ignore-a-value-based-on-the-field/m-p/552358#M156769</link>
      <description>&lt;P&gt;By using OS_Type!=Linux all other OS_Subtype would be ignore from Linux and by adding&amp;nbsp;OS_Subtype!=Total, Total from all other OS_Type will be ignored. And that is not what I am looking for. I need to ignore only Total coming from OS_Type=Linux&lt;/P&gt;</description>
      <pubDate>Thu, 20 May 2021 09:36:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Trying-to-ignore-a-value-based-on-the-field/m-p/552358#M156769</guid>
      <dc:creator>srinivasgowda</dc:creator>
      <dc:date>2021-05-20T09:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to ignore a value based on the field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Trying-to-ignore-a-value-based-on-the-field/m-p/552360#M156771</link>
      <description>&lt;P&gt;Did you try it?&lt;/P&gt;&lt;P&gt;There is an OR so if the OS_Type is not Linux it will get found no matter what the OS_Subtype, or if the OS_Type is Linux, then it will only be found if the OS_Subtype is not Total.&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;OS_Type&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;OS_Subtype&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Found by search&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;Linux&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Total&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;Linux&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Not Total&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Yes (OS_Subtype != Total)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;Not Linux&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Total&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Yes (OS_Type != Linux)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;Not Linux&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Not Total&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Yes (OS_Type != Linux)&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Is this not what you want?&lt;/P&gt;</description>
      <pubDate>Thu, 20 May 2021 09:50:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Trying-to-ignore-a-value-based-on-the-field/m-p/552360#M156771</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-05-20T09:50:59Z</dc:date>
    </item>
  </channel>
</rss>

