Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 In order to monitor a non-SharePoint web site you need to do the following:

  • Install the Tracking Agent, which monitors visitor behavior for non-SharePoint web sites. The tracking code is added to a common page component, like master pages.
  • Configure the Website tree adaptor to a create tree structure automatically by crawling the website pages, or develop a Custom Tree Web Service that will return a logical tree structure that represents the hierarchy of your website.

Anchor
tracking agent
tracking agent
Install the Tracking Agent

Note: The Tracking Agent installation does NOT require reboot or downtime. 

...

  1. Create a CardioLogAgent folder on the web site machine.
  2. Copy the installation files into the new folder from [CardioLog Installation Folder]\CardioLogAgent\. 
  3. Open IIS Manager on the web site machine, create a new virtual directory named CardioLogAgent under the website, which points to the copied CardioLogAgent folder.
  4. Set the following properties for the new virtual directory: "ASP.NET 2.0, Integrated Windows Authentication" and then verify that the folder permissions allow "Everyone" read access.
  5. Verify that you can open http://[web site root]/CardioLogAgent/ca.aspx (Enter your website server name)
  6. Open the copied CardioLogAgent directory, open the web.config file and edit the following key, located in the <appSettings> section:

    Info
    iconfalse

    <add key="CardioLogAgentRoot" value="http://[web site root]/"/>

  7. Copy the tracking code from Administration > System Configuration > Usage Tracking Code > Select Non-SharePoint Website.

     
    System Configuration - Usage Tracking Code 
     
  8. Edit the all URLs contained in the tracking code that redirect to the CardioLog application server, to redirect to the web site root URL.
  9. Either add the edited tracking code into every page you want to track immediately after the opening <head> tag, or you can also use a common JavaScript file. Alternatively you can add it to a non-JavaScript common page component. In this case you need to add the opening and closing <script> tags. If you add the code to a master page, insert it before the closing </head> tag, and use opening and closing <script> tags.
  10. Verify event collection by clicking Ctrl+F12 and wait for several seconds. The tracking agent console should pop-up, displaying the ID number for the most recent monitored action (event). To close the console, press Ctrl+F12.

Anchor
custom tree
custom tree
Develop the Custom Tree Web Service

Using the Custom Tree Adaptor you can specify a web service which provides the hierarchical (logical) structure of your website.
In order to load your custom hierarchical structure to CardioLog from which the CardioLog Portal Tree Updates service component will obtain it, perform the following steps:

  1. Develop the custom tree web service for your web site.
  2. Verify that the custom tree web service returns a valid XML response according to the XML schema, and that the CardioLog Scheduling Service user account has sufficient permissions to access (request) the web service.
  3. From the navigation pane in CardioLog go to Administration > System Configuration > Custom Tree Adaptor > Click Add.


    System Configuration - Custom Tree Adaptor
     
  4. Enter the name of your website in the Name textbox
  5. Enter the custom tree web service URL in the Website URL textbox (Acceptable file extensions are "aspx", "asmx" or "xml").
  6. Enter the custom tree web service method name in the Web Method Name textbox (in case of using "asmx").
  7. Click Save and restart the CardioLog Scheduling Service.
  8. After the next run of Portal Tree Updates, the tree structure will be displayed in the Analysis Center (Object Explorer) and will be available for reports that allow content drilldown. 

Anchor
schema
schema
Custom Tree Web Service Schema

The Custom Tree web service should be exposed by a web page which provides an XML string response according to the following schema:

...