You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

General

AT Internet is a tracking service which supports tracking events (actions and views).

Changelog

  • Standard 5.2: Initial availability
  • Standard 7.3: Support for custom parameters added

Events

Overview

Key-Name in Config

Action Templates

Actions: Custom Parameters

View Templates

Views: Custom Parameters

Purchase Templates

Purchases: Custom Parameters

Attribute Templates

atinternet

  • name
  • chapter1
  • chapter2
  • chapter3
  • level2
  • action



unsupported


unsupported

Actions

AT Internet supports tracking of action events. With AT Internet, each action is tracked as a Gesture event.

For each event, the properties of the Gesture event can be configured via separate templates: name, chapter1, chapter2, chapter3 and level2.

Note

The level2 template must evaluate to a valid integer value.

Each Gesture event can have a different action. This is configured with the corresponding action template. The values need to be one of:

  • touch

  • navigation

  • download

  • exit

  • search

If no action or an invalid value was provided, the event will be sent as a touch event.

On the web platform, gestures are always sent as click events.

Views

AT Internet supports tracking of view events. With AT Internet, each view is tracked as a Gesture event.

For each event, the properties of the Screen event can be configured via separate templates: name, chapter1, chapter2, chapter3 and level2.

Note

The level2 template must evaluate to a valid integer value.

Purchases

AT Internet does not support tracking of purchases.

Attributes

AT Internet does not support storing attributes per user.

Event parameters

AT Internet does support sending custom parameters for actions.

Configuration Example

tracking_config.json
{
  "atinternet": {
    "events": {
      "APP_BOOKMARK_ADDED": {
        "enabled": true,
        "templates": {
          "name": "Bookmark added",
          "chapter1": "{{BOOKMARK_TITLE}}",
          "chapter2": "Chapter 2",
          "chapter3": "Chapter 3",
          "level2": "2",
          "action": "touch"
        }
      }
    },
    "views": {
      "PRESENTER_PAGE": {
        "enabled": true,
        "templates": {
          "name": "{{CONTENT_NAME}}",
          "chapter1": "{{PAGE_LABEL}}",
          "chapter2": "Chapter 2",
          "chapter3": "Chapter 3",
          "level2": "3"
        }
      }
    },
    "attributes": {
    }
  }
}

Next  Previous

  • No labels