<?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: Drop off count in website. in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Drop-off-count-in-website/m-p/470853#M132455</link>
    <description>&lt;P&gt;When I do that, all the stats are going to unknown sorter.&lt;/P&gt;</description>
    <pubDate>Tue, 03 Sep 2019 22:07:14 GMT</pubDate>
    <dc:creator>sandeepmakkena</dc:creator>
    <dc:date>2019-09-03T22:07:14Z</dc:date>
    <item>
      <title>Drop off count in website.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Drop-off-count-in-website/m-p/470851#M132453</link>
      <description>&lt;P&gt;I am working on website sales data where n number of different services are called like CartService, OrderBuildService, CheckoutOfferService,ShippingService and WEB_ORDER_RELEASE. I would like to know drop off rate between any two services.&lt;BR /&gt;
Say order makes from CartService to Web_Order_release is successfully processed order.&lt;BR /&gt;
Thanks for your time.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:02:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Drop-off-count-in-website/m-p/470851#M132453</guid>
      <dc:creator>sandeepmakkena</dc:creator>
      <dc:date>2020-09-30T02:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Drop off count in website.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Drop-off-count-in-website/m-p/470852#M132454</link>
      <description>&lt;P&gt;This is a two-step process  First count the number of events of each service, in process order.  Then use &lt;CODE&gt;streamstats&lt;/CODE&gt; to find the difference in the count between a service and it predecessor.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | eval sorter = case(service="CartService", 1, service="OrderBuildService", service="CheckoutOfferService", service="ShippingService", service="Web_Order_release", 1==1, "unknown") 
| stats count values(service) as service by sorter
| streamstats window=2 range(count) as dropoff
| table service count dropoff
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Sep 2019 21:02:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Drop-off-count-in-website/m-p/470852#M132454</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2019-09-03T21:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Drop off count in website.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Drop-off-count-in-website/m-p/470853#M132455</link>
      <description>&lt;P&gt;When I do that, all the stats are going to unknown sorter.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 22:07:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Drop-off-count-in-website/m-p/470853#M132455</guid>
      <dc:creator>sandeepmakkena</dc:creator>
      <dc:date>2019-09-03T22:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Drop off count in website.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Drop-off-count-in-website/m-p/470854#M132456</link>
      <description>&lt;P&gt;Verify the service names are correct and the field name 'service' is legit.&lt;BR /&gt;
If that all checks out, try this alternative:&lt;/P&gt;

&lt;P&gt;... | eval sorter = case(like(service,"CartService"), 1, like(service,"OrderBuildService"), like(service,"CheckoutOfferService"), like(service,"ShippingService"), like(service,"Web_Order_release"), 1==1, "unknown") &lt;BR /&gt;
 | stats count values(service) as service by sorter&lt;BR /&gt;
 | streamstats window=2 range(count) as dropoff&lt;BR /&gt;
 | table service count dropoff&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:03:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Drop-off-count-in-website/m-p/470854#M132456</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-09-30T02:03:03Z</dc:date>
    </item>
  </channel>
</rss>

