<?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: Abandon Rate in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Abandon-Rate/m-p/486072#M193643</link>
    <description>&lt;PRE&gt;&lt;CODE&gt;index="main" 
    | stats count as Start by host 
    | appendcols 
        [| search index="main" "error" 
        | stats count as Finish by host ] 
    | fillnull value=0 Finish 
    | eval CompletionPct=(Finish/Start)*100 
    | eval AbandonPct=100-CompletionPct 
    | eval CompletionPct=round(CompletionPct,2) 
    | eval AbandonPct=round(AbandonPct,2) 
    | table host Start Finish CompletionPct AbandonPct
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 26 Sep 2019 04:35:17 GMT</pubDate>
    <dc:creator>bandit</dc:creator>
    <dc:date>2019-09-26T04:35:17Z</dc:date>
    <item>
      <title>Abandon Rate</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Abandon-Rate/m-p/486071#M193642</link>
      <description>&lt;P&gt;Hi, I am trying to find the abandonment rate for users who started the registration process but didnt complete it within say the 4 hours. I have the following query (part of an overall dashboard with an inline time range filter). Any help would be appreciated.&lt;/P&gt;

&lt;P&gt;P.S. getStarted is the start step and ProcessApplication is the finish step&lt;/P&gt;

&lt;P&gt;index=ABC sourcetype=ABC_ASAPI_elilogs Application.Channel=OA "Extended_Fields.SubChannel"= MobileApp Extended_Fields.StepInfo=getStarted NOT Extended_Fields.RegistrationType=NotSpecified |  strcat Extended_Fields.AcctType "&lt;EM&gt;" Extended_Fields.RegistrationType AcctReg&lt;BR /&gt;
| stats dc(Extended_Fields.AppId) by AcctReg&lt;BR /&gt;
| rename dc(Extended_Fields.AppId) as Start &lt;BR /&gt;
| appendcols &lt;BR /&gt;
    [ search index=ABC sourcetype=ABC_ASAPI_elilogs Application.Channel=OA "Service.Operation"=ProcessApplication "Extended_Fields.SubChannel"= MobileApp | strcat Extended_Fields.AcctType "&lt;/EM&gt;" Extended_Fields.RegistrationType AcctReg &lt;BR /&gt;
    | stats dc(Extended_Fields.AppId) by AcctReg&lt;BR /&gt;
    | rename dc(Extended_Fields.AppId) as Finish] &lt;BR /&gt;
    | eval Abandon%=(Start-Finish)/Start*100&lt;BR /&gt;
| fields AcctReg Abandon% Start Finish | sort - Finish&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:15:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Abandon-Rate/m-p/486071#M193642</guid>
      <dc:creator>vibhorkhanna</dc:creator>
      <dc:date>2020-09-30T02:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: Abandon Rate</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Abandon-Rate/m-p/486072#M193643</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;index="main" 
    | stats count as Start by host 
    | appendcols 
        [| search index="main" "error" 
        | stats count as Finish by host ] 
    | fillnull value=0 Finish 
    | eval CompletionPct=(Finish/Start)*100 
    | eval AbandonPct=100-CompletionPct 
    | eval CompletionPct=round(CompletionPct,2) 
    | eval AbandonPct=round(AbandonPct,2) 
    | table host Start Finish CompletionPct AbandonPct
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Sep 2019 04:35:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Abandon-Rate/m-p/486072#M193643</guid>
      <dc:creator>bandit</dc:creator>
      <dc:date>2019-09-26T04:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: Abandon Rate</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Abandon-Rate/m-p/486073#M193644</link>
      <description>&lt;P&gt;What about using transaction commands?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=ABC sourcetype=ABC_ASAPI_elilogs Application.Channel=OA ･････
| strcat Extended_Fields.AcctType "" Extended_Fields.RegistrationType AcctReg
| transaction Extended_Fields.AcctType startswith="getStarted" endswith="ProcessApplication"
| stats count(eval(duration&amp;lt;1441)) as Finish ,count as Start by AcctReg
| eval Abandon%=(Start-Finish)/Start*100
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Sep 2019 05:08:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Abandon-Rate/m-p/486073#M193644</guid>
      <dc:creator>HiroshiSatoh</dc:creator>
      <dc:date>2019-09-26T05:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: Abandon Rate</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Abandon-Rate/m-p/486074#M193645</link>
      <description>&lt;P&gt;is this what you have suggested (full query) - I am not getting any result so unsure if it is an format error.&lt;/P&gt;

&lt;P&gt;index=sne sourcetype=sne_ASAPI_elilogs Application.Channel=OA "Extended_Fields.SubChannel"=CWP-MobileApp Extended_Fields.StepInfo=getStarted NOT Extended_Fields.RegistrationType=NotSpecified |  strcat Extended_Fields.AcctType "&lt;EM&gt;" Extended_Fields.RegistrationType AcctReg &lt;BR /&gt;
| stats dc(Extended_Fields.AppId) by AcctReg as Start by host&lt;BR /&gt;
| appendcols &lt;BR /&gt;
    [ search index=sne sourcetype=sne_ASAPI_elilogs Application.Channel=OA "Service.Operation"=ProcessApplication "Extended_Fields.SubChannel"=CWP-MobileApp | strcat Extended_Fields.AcctType "&lt;/EM&gt;" Extended_Fields.RegistrationType AcctReg &lt;BR /&gt;
    | stats dc(Extended_Fields.AppId) by AcctReg as Finish by host ]&lt;BR /&gt;
 | fillnull value=0 Finish &lt;BR /&gt;
 | eval CompletionPct=(Finish/Start)*100 &lt;BR /&gt;
 | eval AbandonPct=100-CompletionPct &lt;BR /&gt;
 | eval CompletionPct=round(CompletionPct,2) &lt;BR /&gt;
 | eval AbandonPct=round(AbandonPct,2) &lt;BR /&gt;
 | table host Start Finish CompletionPct AbandonPct&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:21:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Abandon-Rate/m-p/486074#M193645</guid>
      <dc:creator>vibhorkhanna</dc:creator>
      <dc:date>2020-09-30T02:21:36Z</dc:date>
    </item>
  </channel>
</rss>

