Log4ALA 2.0.0
See the version list below for details.
dotnet add package Log4ALA --version 2.0.0
NuGet\Install-Package Log4ALA -Version 2.0.0
<PackageReference Include="Log4ALA" Version="2.0.0" />
paket add Log4ALA --version 2.0.0
#r "nuget: Log4ALA, 2.0.0"
// Install Log4ALA as a Cake Addin #addin nuget:?package=Log4ALA&version=2.0.0 // Install Log4ALA as a Cake Tool #tool nuget:?package=Log4ALA&version=2.0.0
Log4Net appender for Azure Log Analytics (ALA)... sending data to Azure Log Analytics with the HTTP Data Collector API. The data will also be logged/sent asynchronously for high performance and to avoid blocking the caller thread.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 is compatible. net452 is compatible. net46 was computed. net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.5
- log4net (>= 2.0.5)
- Microsoft.WindowsAzure.ConfigurationManager (>= 3.1.0)
- Newtonsoft.Json (>= 9.0.1)
-
.NETFramework 4.5.1
- log4net (>= 2.0.5)
- Microsoft.WindowsAzure.ConfigurationManager (>= 3.1.0)
- Newtonsoft.Json (>= 9.0.1)
-
.NETFramework 4.5.2
- log4net (>= 2.0.5)
- Microsoft.WindowsAzure.ConfigurationManager (>= 3.1.0)
- Newtonsoft.Json (>= 9.0.1)
-
.NETFramework 4.6
- log4net (>= 2.0.5)
- Microsoft.WindowsAzure.ConfigurationManager (>= 3.1.0)
- Newtonsoft.Json (>= 9.0.1)
-
.NETFramework 4.6.1
- log4net (>= 2.0.5)
- Microsoft.WindowsAzure.ConfigurationManager (>= 3.1.0)
- Newtonsoft.Json (>= 9.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.6.0 | 110,289 | 4/23/2019 |
2.5.0 | 2,567 | 2/21/2019 |
2.4.0 | 10,553 | 11/30/2018 |
2.3.6 | 2,468 | 11/9/2018 |
2.3.5 | 1,524 | 10/25/2018 |
2.3.4 | 1,282 | 10/10/2018 |
2.3.3 | 2,996 | 7/18/2018 |
2.3.2 | 1,381 | 7/13/2018 |
2.3.1 | 1,386 | 7/9/2018 |
2.3.0 | 1,454 | 7/6/2018 |
2.2.4 | 1,385 | 7/4/2018 |
2.2.3 | 1,430 | 7/3/2018 |
2.2.1 | 1,447 | 7/3/2018 |
2.1.2 | 7,035 | 6/14/2018 |
2.1.1 | 1,470 | 5/28/2018 |
2.1.0 | 1,433 | 5/26/2018 |
2.0.5 | 28,245 | 12/21/2017 |
2.0.4 | 1,695 | 7/28/2017 |
2.0.3 | 1,279 | 7/27/2017 |
2.0.1 | 1,286 | 7/18/2017 |
2.0.0 | 1,901 | 7/11/2017 |
1.0.9 | 1,414 | 7/10/2017 |
1.0.8.2 | 1,371 | 7/6/2017 |
1.0.8.1 | 1,286 | 7/6/2017 |
1.0.8 | 1,369 | 7/5/2017 |
1.0.7.1 | 1,333 | 6/27/2017 |
1.0.7 | 1,295 | 6/27/2017 |
1.0.6.1 | 1,462 | 6/22/2017 |
1.0.6 | 1,337 | 6/20/2017 |
1.0.5 | 1,353 | 6/14/2017 |
1.0.4 | 1,428 | 6/2/2017 |
1.0.3 | 1,489 | 6/1/2017 |
1.0.2 | 1,659 | 5/31/2017 |
1.0.1 | 1,457 | 5/16/2017 |
1.0.0 | 1,546 | 5/15/2017 |
Incompatible field name changes...removed LogMessage_ prefix from Azure Log Analytic fields and added property to configure the core field names and convert dateTime, double and bool string values to the dependent Azure Log Analytic types.
The upgrade can be done seamless from version 1.x to 2.0.0. Already existing fields e.g.
LogMessage_string_s = "MyText",
LogMessage_number_s = "123",
LogMessage_boolean_s = "true",
LogMessage_dateTime_s = "7/12/2017 5:35:52.250 PM",
LogMessage_Misc_s = "My test failed"
will be changed to:
string_s = "MyText"
number_d = 123,
boolean_b = true,
dateTime_t = 7/12/2017 5:35:52.250 PM,
MiscMsg_s = "My test failed"
at the end don't forget to remove the old Azure Log Analytic fields to avoid exceeding the quota limit of max 500 fields per type. To remove the custom fields please have a look at https://docs.microsoft.com/en-us/azure/log-analytics/log-analytics-custom-fields#viewing-custom-fields.