UNPKG

@datazoom/collector_bitmovin

Version:

## Introduction Datazoom is a high availability real-time data collection solution. This document summarizes how to integrate with the Datazoom platform.

43 lines (30 loc) 836 B
# `Bitmovin` ## Introduction Datazoom is a high availability real-time data collection solution. This document summarizes how to integrate with the Datazoom platform. ## Installation ```js npm i @datazoom/collector_bitmovin ``` ## Plugin Initialisation ```js datazoom.init({ configuration_id:"CONFIG_ID" }); ``` **Note:** Replace the CONFIG_ID value with the collector configuration ID. ## Usage To activate data collection for Amazon IVS instance, create a Datazoom context which references the player instance with the following snippet: ```js let playerContext = datazoom.createContext(playerManager); ``` **Example** ```js import datazoom from '@datazoom/collector_bitmovin' ... let playerContext; ... datazoom.init({ configuration_id:"CONFIG_ID" }); playerContext = datazoom.createContext(playerManager); ```