From fb5ac50cd4c630852931f96a52582cc0ed3d38aa Mon Sep 17 00:00:00 2001 From: "aarprice@publicisgroupe.net" Date: Wed, 14 May 2025 15:46:34 -0700 Subject: [PATCH] Epsilon - removing documentation for analytics as we are removing that functionality --- dev-docs/analytics/epsilon.md | 47 ----------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 dev-docs/analytics/epsilon.md 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 - } - } - ); - }); -```