UNPKG

applicationinsights

Version:

Microsoft Application Insights module for Node.js

1 lines 1.02 kB
{"version":3,"file":"pageViewTelemetry.js","sourceRoot":"","sources":["../../../../../src/declarations/contracts/telemetryTypes/pageViewTelemetry.ts"],"names":[],"mappings":"","sourcesContent":["import { Telemetry } from \"./telemetry\";\r\n\r\n/**\r\n * Telemetry type used for availability web test results.\r\n */\r\nexport interface PageViewTelemetry extends Telemetry {\r\n /** Identifier of a page view instance. Used for correlation between page view and other telemetry items. */\r\n id: string;\r\n /** Event name. Keep it low cardinality to allow proper grouping and useful metrics. */\r\n name: string;\r\n /** Request URL with all query string parameters */\r\n url?: string;\r\n /** Request duration in milliseconds. */\r\n duration?: number;\r\n /** Fully qualified page URI or URL of the referring page; if unknown, leave blank */\r\n referredUri?: string;\r\n /** Collection of custom measurements. */\r\n measurements?: { [propertyName: string]: number };\r\n}\r\n"]}