Log4NetMongo.AspNetCore 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Log4NetMongo.AspNetCore --version 1.0.2
NuGet\Install-Package Log4NetMongo.AspNetCore -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Log4NetMongo.AspNetCore" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Log4NetMongo.AspNetCore --version 1.0.2
#r "nuget: Log4NetMongo.AspNetCore, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Log4NetMongo.AspNetCore as a Cake Addin
#addin nuget:?package=Log4NetMongo.AspNetCore&version=1.0.2

// Install Log4NetMongo.AspNetCore as a Cake Tool
#tool nuget:?package=Log4NetMongo.AspNetCore&version=1.0.2

Log4NetMongo.AspNetCore

Includes all Log4Net methods with MongoDbAppender configuration for creating application logs for multiple applications and environments with user_id from ClaimsIdentity. Supports multi-tenancy by logging tenant information from ClaimsIdentity.

Updated log4mongo-net classes to work with .Net Core 2.2.

Installation

  1. Add Log4NetMongo.Core package.
  2. Set MongoLogConnection in ConnectionStrings and MongoLogCollectionName in ApplicationSettings.
  3. Add ApplicationName and Environment values in ApplicationSettings, if you choose to you can initialize the class as shown in the first example.

Configuration

appsettings.json
{
  "ConnectionStrings": {
    "MongoLogConnection": "mongodb://localhost"
  },
  "ApplicationSettings": {
    "ApplicationName": "Log4netMongo.Core",
    "Environment": "Test",
    "MongoLogCollectionName": "application.log"
  }
}

Usage

  1. Initialize class with ApplicationName and Environment
using Log4NetMongo;

AppLogger logger = new AppLogger("Test Application", "Dev");
logger.LogInfo("Test Info");
  1. Initialize class with ApplicationName and Environment in ApplicationSettings
using Log4NetMongo;

//Configuration from appsettings.json
AppLogger logger = new AppLogger();
logger.LogInfo("Test Info");

Log Model

  1. Timestamp (System Time)
  2. Level
  3. Thread
  4. Application
  5. Environment
  6. User (Application's user from ClaimsPrincipal.Current.Identity.Name)
  7. Tenant (User's tenant from ClaimsPrincipal.Current.FindFirst("tenant"))
  8. Message
  9. Data (JSON string of object passed in Data parameter)
  10. Exception
  11. Method Name (Calling method's name)
  12. File Name (Calling log's file name)
  13. Line Number (Calling log's line number)
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.2 is compatible.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.2.0 1,021 10/3/2019
1.1.3 573 10/3/2019
1.1.2 562 10/3/2019
1.1.0 567 10/3/2019
1.0.4 535 9/29/2019
1.0.3 560 9/24/2019
1.0.2 548 9/19/2019