Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 1.22 KB

application-insights-data-model-measurements.md

File metadata and controls

24 lines (20 loc) · 1.22 KB
author ms.service ms.topic ms.date ms.author
mrbullwinkle
application-insights
include
11/09/2018
mbullwin

Collection of custom measurements. Use this collection to report named measurement associated with the telemetry item. Typical use cases are:

  • the size of Dependency Telemetry payload
  • the number of queue items processed by Request Telemetry
  • time that customer took to complete the step in wizard step completion Event Telemetry.

You can query custom measurements in Application Analytics:

customEvents
| where customMeasurements != ""
| summarize avg(todouble(customMeasurements["Completion Time"]) * itemCount)

Note

Custom measurements are associated with the telemetry item they belong to. They are subject to sampling with the telemetry item containing those measurements. To track a measurement that has a value independent from other telemetry types, use Metric telemetry.

Max key length: 150