applicationinsights
Version:
Microsoft Application Insights module for Node.js
1 lines • 766 B
Source Map (JSON)
{"version":3,"file":"nodeHttpDependencyTelemetry.js","sourceRoot":"","sources":["../../../../../src/declarations/contracts/telemetryTypes/nodeHttpDependencyTelemetry.ts"],"names":[],"mappings":"","sourcesContent":["import { Telemetry } from \"./telemetry\";\r\nimport * as http from \"http\";\r\nimport * as https from \"https\";\r\n\r\n/**\r\n * Object encapsulating information about the outgoing request\r\n */\r\nexport interface NodeHttpDependencyTelemetry extends Telemetry {\r\n /**\r\n * Request options that will be used to instrument outgoing request\r\n */\r\n options: string | URL | http.RequestOptions | https.RequestOptions;\r\n\r\n /**\r\n * Outgoing HTTP request object\r\n */\r\n request: http.ClientRequest;\r\n}\r\n"]}