Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added malltv analytics docs #3147

Merged
merged 1 commit into from
Aug 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions dev-docs/analytics/malltv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
layout: analytics
title: MallTv
description: MallTv Analytics Adapter
modulecode: malltvAnalytics
enable_download: true
---

#### Registration

This is currently a private adapter

#### Analytics Options

{: .table .table-bordered .table-striped }
| Parameter | Scope | Type | Description | Example |
| --- | --- | --- | --- | --- |
| provider | Required | String | The name of this module: `malltvAnalytics` | `malltvAnalytics` |
| options.propertyId | Required | String | This is the property id of the website where this adapter is being used. | `123456` |
| options.server | Optional | String | Overrides the server used for sending analytics | `https://central.mall.tv/analytics` |


### Example Configuration

```javascript
pbjs.enableAnalytics({
provider: 'malltvAnalytics',
options: {
propertyId: '123456',
server: 'https://central.mall.tv/analytics'
}
});
```