AG.LoggingV2 1.0.0

dotnet add package AG.LoggingV2 --version 1.0.0
                    
NuGet\Install-Package AG.LoggingV2 -Version 1.0.0
                    
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="AG.LoggingV2" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AG.LoggingV2" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="AG.LoggingV2" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AG.LoggingV2 --version 1.0.0
                    
#r "nuget: AG.LoggingV2, 1.0.0"
                    
#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.
#:package AG.LoggingV2@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AG.LoggingV2&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=AG.LoggingV2&version=1.0.0
                    
Install as a Cake Tool

AG.LoggingV2

AG.LoggingV2 is a comprehensive logging and monitoring solution for .NET microservices. It provides centralized logging, distributed tracing, correlation ID management, and request/response monitoring capabilities.

Features

  • 📝 Centralized Logging

    • Elasticsearch integration
    • File logging with rotation
    • Console logging
    • Structured logging with Serilog
  • 🔍 Distributed Tracing

    • OpenTelemetry integration
    • OTLP exporter support
    • ASP.NET Core and HTTP client instrumentation
    • Custom activity source support
  • 🔗 Correlation

    • Correlation ID management
    • Upstream correlation ID propagation
    • Trace ID integration
    • Custom header support
  • 📊 Metrics

    • Request/Response metrics
    • Endpoint performance tracking
    • Custom metric support
    • Prometheus integration

Installation

dotnet add package AG.LoggingV2

Quick Start

  1. Add AG.LoggingV2 to your services in Program.cs:
builder.Services.AddAGLogging(
    builder.Configuration,
    logging =>
    {
        logging.ApplicationName = "YourApp";
        logging.Environment = builder.Environment.EnvironmentName;
        
        logging.Elasticsearch = new()
        {
            Enabled = true,
            Url = "http://localhost:9200",
            IndexFormat = "yourapp-logs-{0}-{1}"
        };
    },
    tracing =>
    {
        tracing.ServiceName = "YourApp";
        tracing.ServiceVersion = "1.0.0";
        tracing.Enabled = true;
        tracing.ExportType = "OTLP";
        tracing.ExportEndpoint = "localhost";
        tracing.ExportPort = 4317;
    });
  1. Add the middleware to your pipeline:
app.UseAGLogging();

Configuration

Logging Options

  • ApplicationName: Your application name
  • Environment: Environment name (e.g., Development, Production)
  • Elasticsearch: Elasticsearch sink configuration
  • FileLogging: File logging configuration
  • ConsoleLogging: Console output configuration
  • Enrichment: Log enrichment options
  • LogLevels: Log level configuration

Tracing Options

  • ServiceName: Your service name
  • ServiceVersion: Service version
  • ExportType: Trace exporter type (OTLP/Console)
  • ExportEndpoint: Exporter endpoint
  • ExportPort: Exporter port
  • Tags: Custom trace tags
  • Sampling: Sampling configuration
  • GatewayConfig: Gateway-specific configuration

Examples

Adding Custom Tags to Traces

public class YourController : ControllerBase
{
    private readonly ActivitySource _activitySource;

    public YourController(ActivitySource activitySource)
    {
        _activitySource = activitySource;
    }

    [HttpGet]
    public IActionResult Get()
    {
        using var activity = _activitySource.StartActivity("YourOperation");
        activity?.SetTag("custom.tag", "value");
        
        // Your code here
        
        return Ok();
    }
}

License

This project is licensed under the MIT License - see the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows 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.