mk9-prebid
Version:
Header Bidding Management Library
38 lines (25 loc) • 1.11 kB
Markdown
The google analytics adapter pushes prebid events into google analytics.
The simplest way to enable the analytics adapter is this
```javascript
pbjs.enableAnalytics([{
provider: 'ga'
}]);
```
Defaults will be used and you should see events being pushed to analytics.
You can customize the adapter with various `options` like this
```javascript
pbjs.enableAnalytics([{
provider: 'ga',
options: { ... }
}]);
Here is a full list of settings available
- `global` (string) - name of the global analytics object. Default is `ga`
- `trackerName` (string) - use another tracker for prebid events. Default is the default tracker
- `sampling` (number) - choose a value from `0` to `1`, where `0` means 0% and `1` means 100% tracked
- `enableDistribution` (boolean) - enables additional events that track load time and cpm distribution
by creating buckets for load time and cpm
- `cpmDistribution` (cpm: number => string) - customize the cpm buckets for the cpm distribution
- [Prebid GA Analytics](http://prebid.org/overview/ga-analytics.html)