Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Gemfile
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'
32 changes: 32 additions & 0 deletions dev-docs/analytics/bydata.md
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%
}
});
```