<?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: Remove all events of a client based on one or more values of field in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Remove-all-events-of-a-client-based-on-one-or-more-values-of/m-p/574216#M200114</link>
    <description>&lt;P&gt;Unfortunately I guess not.&lt;/P&gt;&lt;P&gt;If a customer has an event with purchase &amp;gt;10 I want this customer to be completely filtered out of the result.&lt;/P&gt;&lt;P&gt;Your search I think gives me all maximum prices the customers paid.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Nov 2021 15:20:23 GMT</pubDate>
    <dc:creator>rel82wi</dc:creator>
    <dc:date>2021-11-09T15:20:23Z</dc:date>
    <item>
      <title>Remove all events of a client based on one or more values of field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Remove-all-events-of-a-client-based-on-one-or-more-values-of/m-p/574201#M200107</link>
      <description>&lt;P&gt;Hi there&lt;/P&gt;&lt;P&gt;Im trying to filter my search results based on numerical top values of a field.&lt;/P&gt;&lt;P&gt;For example. I have 5k events as customer purchases. I want a list of all customers, who have never paid more than 10.&lt;/P&gt;&lt;P&gt;Or the other way, I want to filter out all customer events of customers, which have a purchase event with a value in a field higher than 10.&lt;/P&gt;&lt;P&gt;Which command could I use?&lt;/P&gt;&lt;P&gt;delete removes the events from the index. I only want to filter my search results.&lt;/P&gt;&lt;P&gt;if i filter for "field&amp;lt;=10" I do only get the events that have purchases, which are smaller than 10, but the list contains customer, which have paid mor than 10 and only removed those specific events.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 14:01:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Remove-all-events-of-a-client-based-on-one-or-more-values-of/m-p/574201#M200107</guid>
      <dc:creator>rel82wi</dc:creator>
      <dc:date>2021-11-09T14:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: Remove all events of a client based on one or more values of field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Remove-all-events-of-a-client-based-on-one-or-more-values-of/m-p/574210#M200111</link>
      <description>&lt;P&gt;Use eventstats to be able to filter events based on stats. For example&lt;/P&gt;&lt;PRE&gt;&amp;lt;your search&amp;gt; | eventstats max(price) as custmaxprice by user | where custmaxprice&amp;gt;10&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Question is - is this what you want &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 14:48:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Remove-all-events-of-a-client-based-on-one-or-more-values-of/m-p/574210#M200111</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2021-11-09T14:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Remove all events of a client based on one or more values of field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Remove-all-events-of-a-client-based-on-one-or-more-values-of/m-p/574216#M200114</link>
      <description>&lt;P&gt;Unfortunately I guess not.&lt;/P&gt;&lt;P&gt;If a customer has an event with purchase &amp;gt;10 I want this customer to be completely filtered out of the result.&lt;/P&gt;&lt;P&gt;Your search I think gives me all maximum prices the customers paid.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 15:20:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Remove-all-events-of-a-client-based-on-one-or-more-values-of/m-p/574216#M200114</guid>
      <dc:creator>rel82wi</dc:creator>
      <dc:date>2021-11-09T15:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Remove all events of a client based on one or more values of field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Remove-all-events-of-a-client-based-on-one-or-more-values-of/m-p/574222#M200117</link>
      <description>&lt;P&gt;Just reverse the inequality from&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231884"&gt;@PickleRick&lt;/a&gt;&amp;nbsp;'s solution&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;your search&amp;gt; | eventstats max(price) as custmaxprice by user | where custmaxprice &amp;lt; 10&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 09 Nov 2021 15:46:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Remove-all-events-of-a-client-based-on-one-or-more-values-of/m-p/574222#M200117</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-11-09T15:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Remove all events of a client based on one or more values of field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Remove-all-events-of-a-client-based-on-one-or-more-values-of/m-p/574385#M200165</link>
      <description>&lt;P&gt;Of course. The original post stated "I want a list of customers who never paid more than 10". I can't read &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thx for correcting.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 11:04:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Remove-all-events-of-a-client-based-on-one-or-more-values-of/m-p/574385#M200165</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2021-11-10T11:04:26Z</dc:date>
    </item>
  </channel>
</rss>

