The New Relic Roku Agent is designed to monitor the behavior of Roku applications, focusing on system-level and video-related events. It uses the Event API to send data via a REST interface, supporting five types of events:
- ConnectedDeviceSystem: Sistema de eventos
- VideoAction: Evento de vídeo
- VideoErrorAction: Evento de erro
- VideoAdAction: Anúncio de evento
- VideoCustomAction: evento personalizado
Pré-requisitos
Para inicializar o agente New Relic Roku, você precisa:
- ID da sua contaNew Relic
- Sua New Relic .
Instalar e configurar o agente Roku
Baixe o pacote Roku Video agente e descompacte-o para acessar a seguinte estrutura de arquivo:
components/NewRelicAgent/ NRAgent.brs NRAgent.xml NRTask.brs NRTask.xmlsource/ NewRelicAgent.brs
Copie a pasta NewRelicAgent
para o diretório components
e o arquivo NewRelicAgent.brs
para o diretório source
do seu projeto de aplicativo Roku.
Initialize the Agent: Open your main BrightScript file (e.g., Main.brs
). Initialize the New Relic Agent by calling the NewRelic
function with your ACCOUNT ID
, , APP NAME
, APPLICATION TOKEN
, and ENDPOINT
.
To configure the agent to use different endpoints based on the environment, modify the Main.brs
file. The default configuration value is US
, but it can be changed to EU
or staging
depending on the environment you want to use.
m.nr = NewRelic("ACCOUNT ID", "LICENSE KEY", "APP NAME", "APPLICATION TOKEN", "US", true)