Skip to content
This repository has been archived by the owner on Jun 10, 2020. It is now read-only.

Commit

Permalink
Merge pull request #490 from Microsoft/cithomas/azureemulatorfixandve…
Browse files Browse the repository at this point in the history
…rsionbumps

Fix issue 488.
  • Loading branch information
cijothomas authored Jul 10, 2017
2 parents ead6597 + a52b6a0 commit 808cde5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## Version 2.1.1

- [Address the issue where DependencyCollection breaks Azure Storage Emulator calls](https://github.com/Microsoft/ApplicationInsights-aspnetcore/issues/488)
- [Support setting request operation name based on executing Razor Page](https://github.com/Microsoft/ApplicationInsights-aspnetcore/issues/430)
- [Fixed ITelemetryProcessor dependency injection failure when using 3rd party IoC Container](https://github.com/Microsoft/ApplicationInsights-aspnetcore/issues/482)
- [Logging exceptions when using ILogger if an exception is present](https://github.com/Microsoft/ApplicationInsights-aspnetcore/issues/393)
- Updated SDK version dependency to 2.4.1 for DependencyCollector.

## Version 2.1.0

- Updated SDK version dependency to 2.4.0.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ public static IServiceCollection AddApplicationInsightsTelemetry(this IServiceCo
excludedDomains.Add("core.chinacloudapi.cn");
excludedDomains.Add("core.cloudapi.de");
excludedDomains.Add("core.usgovcloudapi.net");
excludedDomains.Add("localhost");
excludedDomains.Add("127.0.0.1");
return module;
});
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.ApplicationInsights.AspNetCore/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"summary": "Application Insights for ASP.NET Core web applications.",
"description": "Application Insights for ASP.NET Core web applications. See https://azure.microsoft.com/en-us/documentation/articles/app-insights-asp-net-five/ for more information. Privacy statement: https://go.microsoft.com/fwlink/?LinkId=512156",
"authors": ["Microsoft"],
"version": "2.1.0",
"version": "2.1.1",
"copyright": "Copyright © Microsoft. All Rights Reserved.",
"packOptions": {
"projectUrl": "https://go.microsoft.com/fwlink/?LinkId=392727",
Expand Down Expand Up @@ -81,7 +81,7 @@
"type": "build"
},
"Microsoft.ApplicationInsights": "2.4.0",
"Microsoft.ApplicationInsights.DependencyCollector": "2.4.0"
"Microsoft.ApplicationInsights.DependencyCollector": "2.4.1"
//"Text.Analyzers": {
// "version": "1.2.0-beta2",
// "type": "build"
Expand All @@ -95,7 +95,7 @@
"net451": {
"dependencies": {
"System.Net.Http": "4.3.1",
"Microsoft.ApplicationInsights.PerfCounterCollector": "2.4.0",
"Microsoft.ApplicationInsights.PerfCounterCollector": "2.4.1",
"Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel": "2.4.0"
}
},
Expand Down
3 changes: 2 additions & 1 deletion test/FunctionalTestUtils/InProcessServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ public BackTelemetryChannel BackChannel
public InProcessServer(string assemblyName, Func<IWebHostBuilder, IWebHostBuilder> configureHost = null)
{
this.configureHost = configureHost;
this.url = "http://localhost:" + random.Next(5000, 14000).ToString();
var machineName = Environment.GetEnvironmentVariable("COMPUTERNAME");
this.url = "http://" + machineName + ":" + random.Next(5000, 14000).ToString();
this.backChannel = this.Start(assemblyName);
}

Expand Down

0 comments on commit 808cde5

Please sign in to comment.