You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,11 @@
2
2
3
3
This changelog will be used to generate documentation on [release notes page](http://azure.microsoft.com/en-us/documentation/articles/app-insights-release-notes-dotnet/).
4
4
5
+
## Version 2.3.0-beta2
6
+
- Added constructor overloads for TelemetryConfiguration and added creation of a default InMemoryChannel when no channel is specified for a new instance.
7
+
TelemetryClient will no longer create an InMemoryChannel on the configuration instance if TelemetryChannel is null, instead the configuration instances will always have a channel when created.
8
+
- TelemetryConfiguration will no longer dispose of user provided ITelemetryChannel instances. Users must properly dispose of any channel instances which they create, the configuration will only auto-dispose of default channel instances it creates when none are specified by the user.
9
+
5
10
## Version 2.3.0-beta1
6
11
- Added metric aggregation functionality via MetricManager and Metric classes.
7
12
- Exposed a source field on RequestTelemetry. This can be used to store a representation of the component that issued the incoming http request.
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ We recommend consuming the library as a NuGet package. Make sure to look for the
20
20
21
21
### Initialize a TelemetryClient
22
22
23
-
The `TelemetryClient` object is the primary root object for the library. Almost all functionality around telemetry sending is located on this object. You must intiialize an instance of this object and populate it with your Instrumentation Key to identify your data.
23
+
The `TelemetryClient` object is the primary root object for the library. Almost all functionality around telemetry sending is located on this object. You must initialize an instance of this object and populate it with your Instrumentation Key to identify your data.
24
24
25
25
```C#
26
26
usingMicrosoft.ApplicationInsights;
@@ -62,7 +62,7 @@ Read about [how to use the API and see the results in the portal][api-overview].
62
62
## Branches
63
63
64
64
-[master][master] contains the *latest* published release located on [NuGet][NuGetCore].
65
-
-[development][develop] contains the code for the *next* release.
65
+
-[develop][develop] contains the code for the *next* release.
0 commit comments