How to track operation latency using Adobe?
As someone new to Adobe, using the code below, how can I set up Adobe to track this data? My thought process is to create an eVar to store operationName, and then a Custom Success Event to store responseTime as numeric. Lastly, using Data Elements and a Rule, set those Adobe variables I just created. Does this work so I can display averages, min/max, or graphs over this data? Will the Metric responseTime be tied to operationName Dimension?
Edit: Is this even possible on Adobe? Wrong tooling for tracking this?
const responseTime = (Date.now() - startTime) / 1000;
window._satellite.track('operation-name', {
operationName,
responseTime,
});
