The Highlight client records and sends session data to Highlight. The Highlight client SDK contains functions to configure your recording, start and stop recording, and add custom user metadata and properties.
This method is used to start a new span. Spans created with this method are automatically ended after the callback function completes, whether it returns normally or throws an error.
Check out startManualSpan if you want to have more control over when the span is ended.
Method Parameters
H.startSpan('fetchData', { attributes: { key: 'value' } }, context, (span) => {
// Your code here
});
// Note: the options and context arguments are not required, so you can
// call this function with only a span name + callback.
H.startSpan('fetchData', () => {
// Your code here
});
H.startManualSpan
This method is used to start a new manual span. Use this when you don't want the span to be ended automatically. You need to end these spans by calling span.end()
Method Parameters
H.startManualSpan('fetchData', { attributes: { key: 'value' } }, context, (span) => {
// Your code here
span.end()
});
// Note: the options and context arguments are not required, so you can
// call this function with only a span name + callback.
H.startManualSpan('fetchData', (span) => {
// Your code here
span.end()
});
H.getSessionDetails
This method is used to get the Highlight session URL. This method provides the same URL as H.getSessionUrl() but this also gives you a URL for the exact time (relative to the session recording) the method is called. For example, an error is thrown in your app and you want to save the Highlight session URL to another app (Mixpanel, Sentry, Amplitude, etc.). If you just want a URL to the session, you can save url. If you want a URL that sets the player to the time of when the error is called, you can save urlWithTimestamp.
This method is used to get the Highlight session URL for the current recording session. This is useful to use if you'd like to send the session URL to another application. See H.getSessionDetails() if you want to get the URL with the current time.