- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Session Replay provides visual insights to complement user analytics data. If you are using third-party tools for customer experience, website analytics, and more, you can connect them to Session Replay. This guide walks you through how to access the Session Replay URL to use in integrations, live from the browser where the session is taking place.
You may want to connect a third-party tool with Session Replay for a more comprehensive view of user experience indicators such as the following:
To fetch the URL for the current user session’s recording, use the following snippet, depending on the installation method you used to set up RUM:
Note: Providing a value for subdomain
when fetching the user session’s recording URL is optional, but must be provided if you’re accessing Datadog through a custom subdomain and want to see the custom domain in the URL that gets returned.
import { datadogRum } from '@datadog/browser-rum';
datadogRum.init({
...,
// optional, only needed if using a custom domain name
subdomain: ''
...
});
const url = datadogRum.getSessionReplayLink();
window.DD_RUM.onReady(function() {
window.DD_RUM.init({
...,
// optional, only needed if using a custom domain name
subdomain: ''
...
})
const url = DD_RUM.getSessionReplayLink();
})
window.DD_RUM &&
window.DD_RUM.init({
...,
// optional, only needed if using a custom domain name
subdomain: ''
...
});
const url = DD_RUM && DD_RUM.getSessionReplayLink();
Once you retrieve the link through the snippet above, you have a few different ways to pass the data, depending on what option(s) your third-party tool offers:
추가 유용한 문서, 링크 및 기사: