applicationinsights
Version:
Microsoft Application Insights module for Node.js
1 lines • 796 B
Source Map (JSON)
{"version":3,"file":"exceptionTelemetry.js","sourceRoot":"","sources":["../../../../../src/declarations/contracts/telemetryTypes/exceptionTelemetry.ts"],"names":[],"mappings":"","sourcesContent":["import { Telemetry } from \"./telemetry\";\r\nimport { SeverityLevel } from \"../../generated\";\r\n\r\n/**\r\n * Telemetry about the exception thrown by the application\r\n */\r\nexport interface ExceptionTelemetry extends Telemetry {\r\n /**\r\n * Exception thrown\r\n */\r\n exception: Error;\r\n\r\n /**\r\n * Metrics associated with this exception, displayed in Metrics Explorer on the portal. Defaults to empty\r\n */\r\n measurements?: { [key: string]: number };\r\n /**\r\n * Exception severity level\r\n */\r\n severity?: SeverityLevel;\r\n}\r\n"]}