Define unit of custom AppInsights metric

Viewed 114

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?

enter image description here

1 Answers
Related