Jūs skatāties palīdzības saturu versijai:
- 6.4
- 6.3
- 6.2
- Vecākas versijas
Capture information in Adobe Analytics when users click links on the page. For example, use link tracking to learn how users interact with your site, track file downloads, and track exit links.

Configure the Adobe Analytics framework so that files that are downloaded from associated pages are automatically tracked as downloads in Adobe Analytics. When you enable the tracking of downloads, only the file types that you specify are tracked.
Downloads of the following file types are tracked by default:
- exe
- zip
- wav
- mp3
- mov
- mpg
- avi
- wmv
- doc
- xls
For example, with download trackng enabled for PDF files, when users click links to PDF files, the download of the PDF is tracked.
The download tracking properties of the framework are implemented as code in the analytics.sitecatalyst.js file that is generated for a page. The following example code represents the default download tracking configuration:
s.trackDownloadLinks= true; s.linkDownloadFileTypes= 'exe,zip,wav,mp3,mov,mpg,avi,wmv,doc,pdf,xls';
Track the clicking of external links (exit links) on your pages. Configure the following framework properties to track external links:
- Track External: Enables external link tracking.
- External Filters: Defines filters for matching the external URLs of the link targets. When the link targets match the filter, the link is tracked. External filters are useful for tracking only some of the external links on your pages.
- Internal Filters: Defines filters for matching the URLs of internal links. When the link targets URLs that match this filter, the link is not tracked. The default value is a javascript command that returns the hostname of the URL for the current window address.
- Leave Query String: Includes URL parameters when evaluating matches with internal and external filters.
The external link tracking properties are implemented as code in the analytics.sitecatalyst.js file that is generated for a page. The following example code is generated for a page that is associated with a framework that has enabled external link tracking with the following configuration:
- External filter is 'google.com'
- Internal filter is the default value of 'javascript:,'+window.location.hostname
- Query strings are not included when evaluating the link target against filters.
s.trackExternalLinks= false; s.linkExternalFilters= 'google.com'; s.linkInternalFilters= 'javascript:,'+window.location.hostname; s.linkLeaveQueryString= false;
Send event and variable data to Adobe Analytics when a user clicks a link. The Link Tracking Configuration properties enable you to specify Adobe Analytics events and variables to track when link clicks occur. The framework mappings determine the event and variable values.
When you specify the events and variables to send, the configuration is implemented as code in the analytics.sitecatalyst.js file that is generated for a page. The following example code is generated for a page when the framework tracks the event10 event and the prop4 property:
s.linkTrackEvents= 'event10'; s.linkTrackVars= 'prop4';
-
Map Adobe Analytics variables to the variables of your content components that store the data that you want to track when links are clicked. (See Setting Up A Framework For Basic Tracking.)
Perform the following procedures to explore the link tracking behavior of the Adobe Analytics integration. The procedures show results from Adobe DigitalPulse Debugger.
- In your framework, expand the Link tracking Configuration area.
- Deselect Track Downloads.
- Select Track External.
- Deselect Leave Query String.
- Use the following value for the External Filters list to identify it as an external URL:
‘yahoo.com’
- Add the following value to the Link Track Events field:
event1,event2
- Add the following value to the Link track vars field:
eVar1,eVar2
- On the page that is associated with the framework, add a Text component. Inside the Text component, add a hyperlink pointing to the following address:
http://search.yahoo.com/?p=this
- Switch to Preview mode and click the link.
The call made will look like this when viewed with DigitalPulse Debugger:

- In the framework, expand the Link Tracking Configuration area and select Leave Query String.
- Reload the page preview, and click the link.
The call details that appear in DigitalPulse Debugger are similar to the following example:

- On the page that is associated with the framework, add the search component.
- Preview the page and perform a search using the aaaaaaaaaaa keyword, which returns no results.
The call details that appear in DigitalPulse Debugger are similar to the following example:

Ad-hoc link tracking enables content authors to configure link tracking for a component. The configuration of the component overrides the link tracking configuration of the framework.
When a page is associated with a framework that enables ad-hoc link tracking, the Text component includes properties for configuring link tracking.
Configure your Adobe Analytics framework to enable ad-hoc link tracking. On pages that are associated with the framework, Text components enable you to configure link tracking for URLs.
Piezīme.
The XSS Antisamy configuration is now in SLING under path /libs/sling/xss.config.xml and the following rules need to be added to for ad-hoc linking to work:
<attribute name="onclick"> <literal-list> <literal value="CQ_Analytics.Sitecatalyst.customTrack(this)"/> </literal-list> </attribute> <attribute name="adhocenable"> <literal-list> <literal value="true"/> <literal value="false"/> </literal-list> </attribute> <attribute name="adhocevents"> <regexp-list> <regexp name="anything"/> </regexp-list> </attribute> <attribute name="adhocevars"> <regexp-list> <regexp name="anything"/> </regexp-list> </attribute>
Configure link tracking for the links in Text components. Ad-hoc link tracking enables you to track download links, external links, and event and variables data. Ad-hoc link tracking overrides the link-tracking configuration of the framework that is associated with the page to which you add the Text component.
Before you can configure ad-hoc link tracking, the following configurations must have already been implemented:
- The SiteCatalyst framework is configured to enable ad-hoc link tracking.
- The page that contains the Text component is associated with the framework.
Use the following procedure to confiure link tracking for a Text component:
-
(Optional) To track variable data with the link click, add Adobe Analytics variables in the Include Adobe Analytics Variables field. Use either of the following formats:
- <Variable-name>: <Dynamic Value>
- <Variable-name>: ‘CONSTANT’
The following examples illustrate each format:
- eVar10:pagedata.title
- prop1: ‘Aubergine'
Separate multiple values with a comma.