내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

Tracking

Avatar

Level 1

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

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 10

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 답변 개

Avatar

정확한 답변 작성자:
Level 10

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.