You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Konduit Accelerate module applies the [Konduit](http://konduit.me/) video acceleration optimization to a publisher’s existing Prebid setup. This optimization can reduce load times and increase ad starts. To install the module, follow these instructions:
16
-
17
-
14
+
15
+
The Konduit Accelerate module applies the [Konduit](https://konduitvideo.com/) video acceleration optimization to a publisher’s existing Prebid setup. This optimization provides publishers with tools to monetize previously lost revenue and drive higher fill rates on their video inventory.
16
+
17
+
To install the module, follow these instructions:
18
+
18
19
### Step 1: Prepare the base Prebid file
19
-
20
+
20
21
Build your Prebid.js package in one of two ways:
21
-
22
-
1. Receive an email package from the Prebid [Download](/download.html) page.
23
-
2. From the command line, run
22
+
23
+
- Receive an email package from the Prebid [Download](/download.html) page.
24
+
25
+
- From the command line, run
24
26
`gulp build --modules=konduitWrapper,...`
25
-
26
-
27
+
28
+
27
29
### Step 2: Implement module code on page
28
-
30
+
31
+
- Add konduitId as config using `setConfig` prebid method (`pbjs.setConfig({ konduit: { konduitId: your_konduit_id } })`)
32
+
29
33
- Insert the Konduit module code in the source code of your page.
30
-
The module exposes the `pbjs.adServers.konduit.buildVastUrl` function.
31
-
- Provide input parameters to the function, including a bid to be accelerated (usually a winning bid) and Konduit-specific parameters (as shown in the sample code below).
32
-
33
-
34
+
The module exposes the `pbjs.adServers.konduit.processBids` function.
35
+
36
+
- Provide input parameters to the function (all parameters are shown in the table below).
37
+
38
+
{: .table .table-bordered .table-striped }
39
+
| Param | Type | Description | Default |
40
+
|---+---+---+---+---|
41
+
| bid | object | prebid object with VAST url that should be cached | if the bid parameter is not passed then first winning bid will be used |
42
+
| adUnitCode | string | adUnitCode where a winner bid can be found | - |
43
+
| timeout | number | max time to wait for Konduit response with cache key and kCpm data | 1000 |
44
+
| callback | function | callback function is called once Konduit caches data for the bid. Arguments of this function are - `error` and `bids` (error should be `null` if Konduit request is successful). | - |
45
+
46
+
### Step 3: GAM related configuration
47
+
48
+
In order for Konduit’s module to be completely integrated, line item Creatives need to be adjusted in GAM.
Copy file name to clipboardExpand all lines: overview/analytics.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ There are several analytics adapter plugins available to track header bidding pe
22
22
|[Google Analytics]({{site.baseurl}}/overview/ga-analytics.html)| Free up to a certain volume. See [terms](https://www.google.com/analytics/terms/)|[Website](https://www.google.com/analytics)|
0 commit comments