Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bd44d0e

Browse files
Conversant analytics adapter - initial release documentation (prebid#4011)
* Conversant Analytics Adapter Documentation * Conversant Analytics Adapter Documentation - code review fix
1 parent d2488e7 commit bd44d0e

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

dev-docs/analytics/conversant.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
layout: analytics
3+
title: Conversant
4+
description: Conversant Prebid Analytics Adapter
5+
modulecode: conversant
6+
gdpr_supported: true
7+
usp_supported: true
8+
coppa_supported: false
9+
prebid_member: true
10+
gvl_id: 24
11+
enable_download: true
12+
---
13+
14+
#### Registration
15+
16+
Conversant (Epsilon) analytics adapter requires approval from the
17+
Conversant team, even for existing accounts. Please reach out to
18+
[email protected] for more information.
19+
20+
#### Analytics Options
21+
22+
{: .table .table-bordered .table-striped }
23+
| Name | Scope | Description | Example | Type |
24+
|-------------|---------|--------------------|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|------------------|
25+
| site_id | required | Conversant (Epsilon) site id for the site that will track prebid usage. | 1234 | integer |
26+
| cnvr_sampling | optional | Sample rate for analytics data. Value should be between 0 and 1 (inclusive), 0 == never sample, 1 == always sample, 0.5 == send analytics 50% of the time. | 0.5 | float |
27+
28+
### Example Configuration
29+
30+
```
31+
<!-- should be called before requestBids() -->
32+
pbjs.que.push(function(){
33+
pbjs.enableAnalytics(
34+
{
35+
provider: 'conversant',
36+
options: {
37+
site_id: 108060,
38+
cnvr_sampling: 0.5
39+
}
40+
}
41+
);
42+
});
43+
```

0 commit comments

Comments
 (0)