diff --git a/dev-docs/analytics/epsilon.md b/dev-docs/analytics/epsilon.md deleted file mode 100644 index bcb05025bf..0000000000 --- a/dev-docs/analytics/epsilon.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -layout: analytics -title: Epsilon -description: Epsilon Prebid Analytics Adapter (formerly Conversant) -modulecode: conversant -tcfeu_supported: true -usp_supported: true -coppa_supported: false -prebid_member: true -gvl_id: 24 -enable_download: true ---- - -#### Registration - -Epsilon (formerly Conversant) analytics adapter requires approval from the -Epsilon team, even for existing accounts. Please reach out to - for more information. - -#### Analytics Options - -{: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Default |Type | -| ---------- | -------- | --------------------------------------------------------------------------- | -------------- | -------- |-------- | -| site_id | required | Epsilon site id for the site that will track prebid usage. | 1234 | n/a | integer | -| 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 | 1 | float | -| send_error_data | optional | Adds extra analytics that tracks script runtime errors, bad data and bidders | true | false | boolean | - -### Example Configuration - -Legacy provider code of 'conversant' is still supported - -``` - - pbjs.que.push(function(){ - pbjs.enableAnalytics( - { - provider: 'epsilon', - options: { - site_id: 108060, - cnvr_sampling: 0.5, - send_error_data: true - } - } - ); - }); -```