I’m currently working on integrating the Firebolt API with Lightning JS3. I’ve already built a basic working project in Lightning JS3, but now I’m trying to integrate the Firebolt API. I’m a bit stuck and would appreciate some guidance on how to proceed.
Specifically, the Firebolt documentation mentions that I need to call the Metrics API every time an error occurs in my code. In my project, I have multiple instances where I throw errors using throw()
and also catch errors using try-catch
blocks.
For example, I have code like this:
throw("Unknown code: Video format is not supported.");
In such cases, do I need to call the Firebolt Metrics API? The documentation suggests using the Metrics API for error tracking. Here’s an example of how I think it should work:
import { Metrics } from '@firebolt-js/sdk';
// My code
try {
// Some code that might throw an error
} catch (error) {
Metrics.error("media", "MEDIA-STALLED", "playback stalled", true, null)
.then(success => {
console.log(success);
});
}
Could you please clarify if this is the correct approach? Any help or advice would be greatly appreciated!