Conviva
Lura Conviva Plugin uses the conviva library which enables it to send analytics data to the conviva end point when this plugin is enabled. The plugin also allows the application to send custom metadata in these calls. The following sections describe how the conviva plugin can be enabled and how the application can pass data to the SDK to be inserted in the conviva calls. Conviva dashboards provide insights to content broadcasters by gathering key metrics during high demand events and monitor the system in real time.
Plugin Name: ConvivaPlugin
Plugin Config Name: conviva
Configuration
Attribute | Type | Optional | Description |
---|---|---|---|
customerKey | string | false | Conviva customer key, it can be test or production key. |
gatewayUrl | string | true | The URL of your conviva gateway. If this parameter is not filled, no gateway will be used. |
contentMetadata | Object<[key: string]: any> | false | The metadata to be sent to the conviva dashboard for current session. |
LuraPlayer("player", {
...
plugins: {
...
conviva: {
customerKey: "CUSTOMER_KEY",
gatewayUrl: "https://test.conviva.com",
contentMetadata: {
...
key: "value",
...
}
},
...
},
});