<?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: Extract common user who encounters different values for the same field over time in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390957#M168758</link>
    <description>&lt;P&gt;Would you mind sharing the search you're trying with? Scrub anything sensitive. Did you get any error running above search OR just the output is not as expected?&lt;/P&gt;</description>
    <pubDate>Thu, 21 Jun 2018 16:22:52 GMT</pubDate>
    <dc:creator>somesoni2</dc:creator>
    <dc:date>2018-06-21T16:22:52Z</dc:date>
    <item>
      <title>Extract common user who encounters different values for the same field over time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390951#M168752</link>
      <description>&lt;P&gt;Hello, Splunk noob here.  I'd like to find in my index users who encounters an error during a phase of a process but later, for the same phase, are able to succeed. So it would be something like this:&lt;/P&gt;

&lt;P&gt;User=A phase="something" result=error 10:00 AM&lt;BR /&gt;
User=A phase="something" result=success 10:05 AM&lt;/P&gt;

&lt;P&gt;I'd like to be able to gather all of the users who face a similar situation.&lt;BR /&gt;
Anyone can suggest a solution?&lt;/P&gt;

&lt;P&gt;Thanks a lot in advance. &lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 09:01:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390951#M168752</guid>
      <dc:creator>BoGiulio</dc:creator>
      <dc:date>2018-06-21T09:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: Extract common user who encounters different values for the same field over time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390952#M168753</link>
      <description>&lt;P&gt;@BoGiulio what if there is an error after success again? Is there supposed to be excluded?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 11:33:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390952#M168753</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-06-21T11:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: Extract common user who encounters different values for the same field over time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390953#M168754</link>
      <description>&lt;P&gt;@niketnilay for the data I'm focusing on there can't be a sequence success-error, only sometimes error-success; after the user has success for a specific phase, it goes to the next one.  Thanks a lot for your time. &lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 13:14:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390953#M168754</guid>
      <dc:creator>BoGiulio</dc:creator>
      <dc:date>2018-06-21T13:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Extract common user who encounters different values for the same field over time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390954#M168755</link>
      <description>&lt;P&gt;May be something like this would work.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your search
| stats latest(result) as latest values(result) as results by User phase
| where latest="success" AND isnotnull(mvfind(match(results,"error")))
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Jun 2018 15:06:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390954#M168755</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2018-06-21T15:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: Extract common user who encounters different values for the same field over time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390955#M168756</link>
      <description>&lt;P&gt;@somesoni2 maybe I am doing some mistakes putting my real values instead of placeholders, but it doesn't seem to be working. Thanks a lot anyway!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 15:49:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390955#M168756</guid>
      <dc:creator>BoGiulio</dc:creator>
      <dc:date>2018-06-21T15:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Extract common user who encounters different values for the same field over time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390956#M168757</link>
      <description>&lt;P&gt;Hey there, Looks like you need to add a "filter" that says "return all the events for this User A that has error and success for this period of time" . &lt;/P&gt;

&lt;P&gt;Also there is "Alerts" that you could create which will give you basically alerts on such events.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 16:10:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390956#M168757</guid>
      <dc:creator>LxSenpai</dc:creator>
      <dc:date>2018-06-21T16:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: Extract common user who encounters different values for the same field over time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390957#M168758</link>
      <description>&lt;P&gt;Would you mind sharing the search you're trying with? Scrub anything sensitive. Did you get any error running above search OR just the output is not as expected?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 16:22:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extract-common-user-who-encounters-different-values-for-the-same/m-p/390957#M168758</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2018-06-21T16:22:52Z</dc:date>
    </item>
  </channel>
</rss>

