The Prebid Analytics API provides a way to get analytics data from Prebid.js
and send it to the analytics provider of your choice, such as Google Analytics. Because it’s an open source API, you can write an adapter to send analytics data to any provider you like. Integrating with the Prebid Analytics API has the following benefits:
Before we jump into looking at code, let’s look at the high-level architecture. As shown in the diagram below, Prebid.js
calls into an analytics adapter. The analytics adapter is the only part of the code that must be stored in the Prebid.js
repo.
The analytics adapter listens to events and may call out directly to the analytics backend, or it may call out to an analytics library that integrates with the analytics server.
For instructions on integrating an analytics provider, see the next section.
Working with any Prebid project requires using Github. In general, we recommend the same basic workflow for any project:
Analytics adapters are subject to a number of specific technical rules. Please become familiar with the module rules that apply globally and to analytics adapters in particular.
Create a markdown file under modules
with the name of the bidder suffixed with ‘AnalyticsAdapter’, e.g., exAnalyticsAdapter.md
Example markdown file:
Create a JS file under modules
with the name of the bidder suffixed with ‘AnalyticsAdapter’, e.g., exAnalyticsAdapter.js
Create an analytics adapter to listen for Prebid events and call the analytics library or server. See the existing *AnalyticsAdapter.js files in the repo under modules.
There are two types of analytics adapters. The example here focuses on the ‘endpoint’ type. See AnalyticsAdapter.js for more info on the ‘bundle’ type.
In order to get access to the configuration passed in from the page, the analytics adapter needs to specify an enableAnalytics() function, but it should also call the base class function to set up the events.
Doing analytics may require user permissions under GDPR, which means your adapter will need to be linked to your IAB Global Vendor List ID. If no GVL ID is found, and Purpose 7 (Measurement) is enforced, your analytics adapter will be blocked unless it is specifically listed under vendorExceptions. Your GVL ID can be added to the registerAnalyticsAdapter()
call.
The best way to get started is to look at some of the existing AnalyticsAdapter.js files in the repository.
Here’s a skeleton outline:
Analytics adapters can learn what happened with regards to GDPR TCF2 enforcement by listening to the tcf2Enforcement event.
The callback will receive an object with the following attributes:
{
storageBlocked: ['moduleA', 'moduleB'],
biddersBlocked: ['moduleB'],
analyticsBlocked: ['moduleC']
}
Note that analytics adapters can read the TCF string directly from the auction object – look for the gdprConsent object, which contains three attributes: gdprApplies, consentString, and apiVersion
There are two error events analytics modules may wish to listen for: auctionDebug and adRenderFailed. The former is any error that would be normally logged to console and there can be a great many. The latter may happen for the following reasons: (PREVENT_WRITING_ON_MAIN_DOCUMENT, NO_AD, CANNOT_FIND_AD, EXCEPTION, MISSING_DOC_OR_ADID)
Create a JS file under test/spec/modules
with the name of the bidder suffixed with ‘AnalyticsAdapter_spec’, e.g., exAnalyticsAdapter_spec.js
Write great unit tests. See the other AnalyticsAdapter_spec.js files for examples.
Once everything looks good, submit the code, tests, and markdown as a pull request to the Prebid.js repo.
Add a documentation file for your new analytics adapter.
Create a fork of the website repo and a branch for your new adapter. (e.g. feature/exampleAnalyticsAdapter)
Copy one of the ‘.md’ files in dev-docs/analytics
to a file for your adapter. e.g. example.md
Update the metadata fields at the top of the file to suit your needs:
layout: analytics
title: Your Company Name
description: Your Company Analytics Adapter
modulecode: exampleAnalyticsAdapter
gdpr_supported: true/false (EU GDPR support)
usp_supported: true/false (US Privacy support)
coppa_supported: true/false (COPPA support)
prebid_member: true/false
gvl_id: (IAB Global Vendor List ID)
enable_download: false (in case you don't want users of the website to download your adapter)
What does it mean to “support” the privacy protocols? At a high level, it means you have specifically discussed privacy policy actions and rules with your lawyers and implemented the results of that discussion. Some specific examples:
Update the body of the file to describe the options publishers have when configuring your adapter. See other adapters (e.g. rubicon.md) for a template.
Submit the pull request to the prebid.github.io repo.
We sometimes get pretty busy, so it can take a couple of weeks for the review process to complete, so while you’re waiting, consider joining Prebid.org to help us out with code reviews. (!)