Tracking | Community
Skip to main content
October 16, 2015
Solved

Tracking

  • October 16, 2015
  • 1 reply
  • 1223 views

Hi,

I am new to SiteCatalyst. I have a requirement to track how many users logged into site per hour and the other requirement is how many users logged in per day. Please suggest some ideas to do it.

Thanks in advance,

krishna

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Alexis_Cazes_

You can use an event which will increment each time a user logs in i.e: s.events="event1"

 

On addition to that you can use an eVar to track if the user is logged in or not, so you can see later on see if user completed a task while logged in

 

So the code when the customer logged in will be :

s.eVar1="logged in";

s.events="event1"

 

When the user is not logged in the eVar1 will have the value logged out.

 

Once you have implemented that you can run the Site metrics >> custom events .... and set at the top of the report view by hour, or day or week or month. This will give you how many times there were a loggin.

1 reply

Alexis_Cazes_
Alexis_Cazes_Accepted solution
Level 10
October 16, 2015

You can use an event which will increment each time a user logs in i.e: s.events="event1"

 

On addition to that you can use an eVar to track if the user is logged in or not, so you can see later on see if user completed a task while logged in

 

So the code when the customer logged in will be :

s.eVar1="logged in";

s.events="event1"

 

When the user is not logged in the eVar1 will have the value logged out.

 

Once you have implemented that you can run the Site metrics >> custom events .... and set at the top of the report view by hour, or day or week or month. This will give you how many times there were a loggin.