Expand my Community achievements bar.

Join us January 15th for an AMA with Champion Achaia Walton, who will be talking about her article on Event-Based Reporting and Measuring Content Groups!
SOLVED

link clicks and segment

Avatar

Level 4

Hi everyone,

I have segment which is in hit  where site section- xyz.

But, whenever I create link click report with link clicked event there is No data values are 0.

But, if I am doing the same with segments Visitor container instead of hit container. I am getting values . what could be the reason?

Since , I am not passing any page eVar with link click, could that be?

But pagename is being passed with link clicks.

Also, Can Anyone tell me when to particularly use hit container in segment?

Thanks!

1 Accepted Solution

Avatar

Correct answer by
Community Advisor and Adobe Champion

As Mandy said, your segment won't work, because there is no "Page" value on your click, and if you change that to Visit, any visit that captures "page starts with Https://example" and then separately "Site section equals  xyz" (not in the same hit, in any order in the visit, the entire visit will be returned... and every instance of your "click event" would be counted)

 

Visit 1

  • Page A
  • Click 1
    • page will not exist (even though you see it sending data, this is removed during processing)
    • site section = aaa
    • "click event" triggered
  • Page B
  • Click 2
    • page will not exist (even though you see it sending data, this is removed during processing)
    • site section = xyz
    • "click event" triggered

 

You are trying to get back "Click 2" only, but your segment won't work because there is no page value...

 

On the other hand, when you change the segment to Visit, all the hits above are returned as part of the segment (Page A, Page B, Click 1 and Click 2)... and because your freeform table is limited to the custom event "click event", then you are getting both Click 1 and Click 2.....

 

The best way to overcome this is to update your tracking with a custom eVar for a replicated page name value like so:

 

Visit 1

  • Page A
    • page = https://example.com/pagea
    • site section = aaa
    • eVarX (hit expiry) = https://example.com/pagea 
      • or you can use "D=g" (this will replicate the value without having to send the entire string)
      • or you can set up a Processing Rule to set the value of eVarX to Page Name
  • Click 1
    • page will not exist (even though you see it sending data, this is removed during processing)
    • site section = aaa
    • eVarX (hit expiry) = https://example.com/pagea 
      • or you can use "D=g" (this will replicate the value without having to send the entire string)
      • or you can set up a Processing Rule to set the value of eVarX to Page Name
    • "click event" triggered
  • Page B
    • page = https://example.com/pageb
    • site section = xyz
    • eVarX (hit expiry) = https://example.com/pageb 
      • or you can use "D=g" (this will replicate the value without having to send the entire string)
      • or you can set up a Processing Rule to set the value of eVarX to Page Name
  • Click 2
    • page will not exist (even though you see it sending data, this is removed during processing)
    • site section = xyz
    • eVarX (hit expiry) = https://example.com/pageb 
      • or you can use "D=g" (this will replicate the value without having to send the entire string)
      • or you can set up a Processing Rule to set the value of eVarX to Page Name
    • "click event" triggered

 

With this you can create the segment:

 

HIT [

    eVarX starts with https://example

    AND

    site section equals xyz

]

 

 

While you could attempt to try and do a complex sequential segment, if there are potentially multiple actions tracked on your page then you won't get all the data back...  for example, this complex segment:

 

HIT [

    click event exists

    AND

    VISIT container (ONLY After Sequence) [

        HIT Container [

            Page starts with https://example

            AND

            Site Section equals xyz

        ]

        THEN within 1 hit

        click event exists

    ]

]

 

Will only return the "click events" that directly follow the page you specified, but if there are any hit between the page view and the click you are trying to capture, this will exclude it because it wasn't "within 1 hit" any more...

View solution in original post

4 Replies

Avatar

Community Advisor and Adobe Champion

Can you share a screenshot of your actual segment?

 

Note that while pageName is passed on actions (like clicks) the values are stripped during processing.. so you can not use the Adobe dimension "Page" in conjunction with a segment designed to return clicks. If you need to know the pageName value on you clicks, you should set up a replication "Page Name" eVar (Hit Expiry) and pass your page name values to it as well... then you can use that eVar against Page Views and Actions (including clicks).

Avatar

Level 4

Hi Jennifer,

It's a simple segment,

 Like below, when I replace to Visitor, then I am getting some values.

Hit Container

[

Page.  Starts with.     Https://example

AND

Site section equals  xyz

]

Avatar

Community Advisor and Adobe Champion

Like Jen said, if the "page" in your segment is the adobe default and not a custom evar/prop, then that would be the problem. Because the value doesn't get assigned to the custom link, you would need an evar to get the data.

When you replace the "hit" with "visit" or "visitor", unless you're putting those conditions in a hit level container inside the segment, they no longer have to happen in the same hit. If you set the segment to visit, then as long as someone is on page https://example and then at some other point in their visit sees site section xyz, it will bring in data for the entire visit.

Avatar

Correct answer by
Community Advisor and Adobe Champion

As Mandy said, your segment won't work, because there is no "Page" value on your click, and if you change that to Visit, any visit that captures "page starts with Https://example" and then separately "Site section equals  xyz" (not in the same hit, in any order in the visit, the entire visit will be returned... and every instance of your "click event" would be counted)

 

Visit 1

  • Page A
  • Click 1
    • page will not exist (even though you see it sending data, this is removed during processing)
    • site section = aaa
    • "click event" triggered
  • Page B
  • Click 2
    • page will not exist (even though you see it sending data, this is removed during processing)
    • site section = xyz
    • "click event" triggered

 

You are trying to get back "Click 2" only, but your segment won't work because there is no page value...

 

On the other hand, when you change the segment to Visit, all the hits above are returned as part of the segment (Page A, Page B, Click 1 and Click 2)... and because your freeform table is limited to the custom event "click event", then you are getting both Click 1 and Click 2.....

 

The best way to overcome this is to update your tracking with a custom eVar for a replicated page name value like so:

 

Visit 1

  • Page A
    • page = https://example.com/pagea
    • site section = aaa
    • eVarX (hit expiry) = https://example.com/pagea 
      • or you can use "D=g" (this will replicate the value without having to send the entire string)
      • or you can set up a Processing Rule to set the value of eVarX to Page Name
  • Click 1
    • page will not exist (even though you see it sending data, this is removed during processing)
    • site section = aaa
    • eVarX (hit expiry) = https://example.com/pagea 
      • or you can use "D=g" (this will replicate the value without having to send the entire string)
      • or you can set up a Processing Rule to set the value of eVarX to Page Name
    • "click event" triggered
  • Page B
    • page = https://example.com/pageb
    • site section = xyz
    • eVarX (hit expiry) = https://example.com/pageb 
      • or you can use "D=g" (this will replicate the value without having to send the entire string)
      • or you can set up a Processing Rule to set the value of eVarX to Page Name
  • Click 2
    • page will not exist (even though you see it sending data, this is removed during processing)
    • site section = xyz
    • eVarX (hit expiry) = https://example.com/pageb 
      • or you can use "D=g" (this will replicate the value without having to send the entire string)
      • or you can set up a Processing Rule to set the value of eVarX to Page Name
    • "click event" triggered

 

With this you can create the segment:

 

HIT [

    eVarX starts with https://example

    AND

    site section equals xyz

]

 

 

While you could attempt to try and do a complex sequential segment, if there are potentially multiple actions tracked on your page then you won't get all the data back...  for example, this complex segment:

 

HIT [

    click event exists

    AND

    VISIT container (ONLY After Sequence) [

        HIT Container [

            Page starts with https://example

            AND

            Site Section equals xyz

        ]

        THEN within 1 hit

        click event exists

    ]

]

 

Will only return the "click events" that directly follow the page you specified, but if there are any hit between the page view and the click you are trying to capture, this will exclude it because it wasn't "within 1 hit" any more...