applicationinsights
Version:
Microsoft Application Insights module for Node.js
1 lines • 743 B
Source Map (JSON)
{"version":3,"file":"traceTelemetry.js","sourceRoot":"","sources":["../../../../../src/declarations/contracts/telemetryTypes/traceTelemetry.ts"],"names":[],"mappings":"","sourcesContent":["import { Telemetry } from \"./telemetry\";\r\nimport { SeverityLevel } from \"../../generated\";\r\n\r\n/**\r\n * Trace telemetry reports technical, usually detailed information about the environment,\r\n * usage of resources, performance, capacity etc\r\n */\r\nexport interface TraceTelemetry extends Telemetry {\r\n /** Trace message */\r\n message: string;\r\n /** Trace severity level. */\r\n severity?: SeverityLevel;\r\n /** Collection of custom measurements. */\r\n measurements?: { [propertyName: string]: number };\r\n}\r\n"]}