Home ·  About ·  Search ·  Contact ·  SiteCatalyst Plugins ·  Web Analytics Books




digdeep - December 13th, 2009 @5:29 pm  

Sweet post,

Waiting on my Omniture account manager to discuss something similar so perfect timing :)

I thought counter evars served this purpose? what is the difference between the plug in vs counter evars?

tks..n


VaBeachKevin - December 13th, 2009 @10:01 pm  

The Counter eVar are designed for when you are trying to count the number actions a user takes before an event. For example, you may use an eVar to capture the number of internal searches before purchase. Each time a visitor searches, the eVar should contain a value of +1. If a visitor searches four times before a purchase, you will see an instance for each total count: 1.00, 2.00, 3.00 and 4.00.

The Time To Complete plug-in however will return a time it took to get from one action to another. Using this plug-in if you check the debugger you will see something like:
Time To Complete Plugin Debugger

Check out Answer ID 1443 in the Omniture knowledge base for more information about using a Counter eVar.


Loryn-Aimee - May 15th, 2010 @3:50 am  

Thank you digdeep. I agree it’s a great plugin, and would recommend adding a classification for time groupings to it to make for easier analysis where necessary.

I’ve implemented this on an eCom site, measuring the difference between Cart Open and Checkout and again between Checkout and Purchase using different props and cookie names.

if (s.events) {
// Time to Build Cart
if (s.events.match(/scOpen/i)) s.prop9=’start’;
if (s.events.match(/scCheckout/i)) s.prop9=’stop’;
s.prop9=s.getTimeToComplete(s.prop9,’ttbc’,0);

// Time to Check Out
if (s.events.match(/scCheckout/i)) s.prop10=’start’;
if (s.events.match(/purchase/i)) s.prop10=’stop’;
s.prop10=s.getTimeToComplete(s.prop10,’ttco’,0);
}

prop9 works, prop10 does not – only one value of “start” shows up.
Does anything stand out to you?
The only thing I can think of changing is the expiration (currently set to 0 as in your example) which leads me to the second point:
I actually do want the number of days lapsed between the two events to show in cases where visitors took a number of days to build their cart including if their activity happened in different visits. Do you know which other values for expiration can be inserted in that 3rd parameter?

Any light on this would help loads!!

Please Note: comments maybe under moderation so there is no need to resubmit your comments. Feel free to subscribe to this post's comment rss feed for future updates