How can I define the unit of a custom metric value in AppInsights?
I'm tracking the metric in the JS code like:
appInsights.trackMetric("performance.totalLoadTime", new Date().getTime() - startTime);
This results in the Diagram like the following. You can see that the Y-Axis has no unit. I want to show it in seconds or milliseconds. How can I achieve this?
