-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add bydata.md analytics doc inside dev-docs/analytics (#3235)
* add bydata.md analytics doc inside dev-docs/analytics * reset files Gemfile/package-lock.json Co-authored-by: Jitendra Kumar <jitendra@ascendeum.com>
- Loading branch information
1 parent
bf5edc8
commit 594d64a
Showing
2 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
source 'https://rubygems.org' | ||
gem 'github-pages', '>= 30' | ||
gem 'github-pages', '>= 30' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
layout: analytics | ||
title: byData | ||
description: byData Analytics Adapter | ||
modulecode: bydata | ||
prebid_member: false | ||
--- | ||
|
||
#### Registration | ||
|
||
The byData Analytics adapter requires setup and approval from the | ||
byData team. Please visit [https://bydata.com/](https://bydata.com/) for more information. | ||
|
||
#### Analytics Options | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Parameter | Scope | Type | Description | Example | | ||
| --- | --- | --- | --- | --- | | ||
| clientId | Required | String | The byData Client ID | `asc10001` | | ||
| logFrequency | Optional | Int | Sample rate | 100 | | ||
|
||
### Example Configuration | ||
|
||
```js | ||
pbjs.enableAnalytics({ | ||
provider: "bydata", | ||
options: { | ||
clientId:'asc10001', // please contact byData team to get a clientId for yourself | ||
logFrequency : 100, // Default - 1% | ||
} | ||
}); | ||
``` |