- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Error Tracking processes errors collected from the Roku SDK.
Enable Roku Crash Reporting and Error Tracking to get comprehensive crash reports and error trends with Real User Monitoring. With this feature, you can access:
Your crash reports appear in Error Tracking.
If you have not set up the Roku SDK yet, follow the in-app setup instructions or see the Roku setup documentation.
env
when initializing the SDK.For any given error, you can access the file path, line number, and a code snippet for each frame of the related stack trace.
Crash reporting on Roku doesn’t yet support stacktraces.
To verify your Roku Crash Reporting and Error Tracking configuration, you need to trigger a crash in your application and confirm that the error appears in Datadog.
To test your implementation:
Run your application on an Roku device.
Execute some code containing a crash. For example:
sub explodingMethod()
x = 1
print x.foo
After the crash happens, restart your application and wait for the Roku SDK to upload the crash report in Error Tracking.
Whenever you perform an operation that might throw an exception, you can forward the error to Datadog by adding the following code snippet:
try
doSomethingThatMightThrowAnException()
catch error
m.global.datadogRumAgent.callfunc("addError", error)
end try