Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: microsoft/ApplicationInsights-node.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.1.2
Choose a base ref
...
head repository: microsoft/ApplicationInsights-node.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.1.3
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Jun 22, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    05ae5a9 View commit details
  2. 2.1.3 release (#785)

    hectorhdzg authored Jun 22, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    02a83fd View commit details
Showing with 6 additions and 11 deletions.
  1. +3 −8 AutoCollection/HttpRequests.ts
  2. +1 −1 Bootstrap/DiagnosticLogger.ts
  3. +1 −1 package-lock.json
  4. +1 −1 package.json
11 changes: 3 additions & 8 deletions AutoCollection/HttpRequests.ts
Original file line number Diff line number Diff line change
@@ -224,30 +224,25 @@ class AutoCollectHttpRequests {
(<PrivateCustomProperties>correlationContext.customProperties).addHeaderData(requestParser.getCorrelationContextHeader());
}

let isRequestFinished = false;
// response listeners
if (telemetry.response.once) {
telemetry.response.once("finish", () => {
AutoCollectHttpRequests.endRequest(client, requestParser, telemetry, null, null);
isRequestFinished = true;
});
}

// track a failed request if an error is emitted
if (telemetry.request.on) {
telemetry.request.on("error", (error: any) => {
AutoCollectHttpRequests.endRequest(client, requestParser, telemetry, null, error);
isRequestFinished = true;
});
}

// track a canceled request if an close is emitted
// track an aborted request if an aborted event is emitted
if (telemetry.request.on) {
telemetry.request.on("close", () => {
if (!isRequestFinished ) {
const errorMessage = "Request is canceled.";
telemetry.request.on("aborted", () => {
const errorMessage = "The request has been aborted and the network socket has closed.";
AutoCollectHttpRequests.endRequest(client, requestParser, telemetry, null, errorMessage);
}
});
}
}
2 changes: 1 addition & 1 deletion Bootstrap/DiagnosticLogger.ts
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ export class DiagnosticLogger {
siteName: process.env.WEBSITE_SITE_NAME,
ikey: process.env.APPINSIGHTS_INSTRUMENTATIONKEY,
extensionVersion: process.env.ApplicationInsightsAgent_EXTENSION_VERSION,
sdkVersion: "2.1.2",
sdkVersion: "2.1.3",
subscriptionId: process.env.WEBSITE_OWNER_NAME ? process.env.WEBSITE_OWNER_NAME.split("+")[0] : null,
}
}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
"author": "Microsoft Application Insights Team",
"license": "MIT",
"bugs": "https://github.com/microsoft/ApplicationInsights-node.js/issues",
"version": "2.1.2",
"version": "2.1.3",
"description": "Microsoft Application Insights module for Node.js",
"repository": {
"type": "git",