Skip to main content

TelemetryLogging by Microsoft

Nuget / site data

Nuget GitHub last commit GitHub Repo stars

Details

Info

info

Name: TelemetryLogging

Common abstractions for high-level telemetry primitives.

Author: Microsoft

NuGet: https://www.nuget.org/packages/Microsoft.Extensions.Telemetry.Abstractions/

You can find more details at https://andrewlock.net/behind-logproperties-and-the-new-telemetry-logging-source-generator/

Source : https://github.com/dotnet/extensions

Original Readme

note

Enriched Capabilities

This repository contains a suite of libraries that provide facilities commonly needed when creating production-ready applications. Initially developed to support high-scale and high-availability services within Microsoft, such as Microsoft Teams, these libraries deliver functionality that can help make applications more efficient, more robust, and more manageable.

The major functional areas this repo addresses are:

  • Compliance: Mechanisms to help manage application data according to privacy regulations and policies, which includes a data annotation framework, audit report generation, and telemetry redaction.
  • Diagnostics: Provides a set of APIs that can be used to gather and report diagnostic information about the health of a service.
  • Contextual Options: Extends the .NET Options model to enable experimentations in production.
  • Resilience: Builds on top of the popular Polly library to provide sophisticated resilience pipelines to make applications robust to transient errors.
  • Telemetry: Sophisticated telemetry facilities provide enhanced logging, metering, tracing, and latency measuring functionality.
  • AspNetCore extensions: Provides different middlewares and extensions that can be used to build high-performance and high-availability ASP.NET Core services.
  • Static Analysis: Curated static analysis settings to help improve your code.
  • Testing: Dramatically simplifies testing around common .NET abstractions such as ILogger and the TimeProvider.

Build Status Help Wanted Discord

How can I contribute?

We welcome contributions! Many people all over the world have helped make this project better.

Reporting security issues and security bugs

Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) secure@microsoft.com. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the Security TechCenter. You can also find these instructions in this repo's Security doc.

Also see info about related Microsoft .NET Core and ASP.NET Core Bug Bounty Program.

.NET Foundation

This project is a .NET Foundation project.

There are many .NET related projects on GitHub.

  • .NET home repo - links to 100s of .NET projects, from Microsoft and the community.
  • ASP.NET Core home - the best place to start learning about ASP.NET Core.

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information, see the .NET Foundation Code of Conduct.

General .NET OSS discussions: .NET Foundation Discussions

License

.NET (including the runtime repo) is licensed under the MIT license.

About

note

Generating deep logging messages for a class

How to use

Example ( source csproj, source files )

This is the CSharp Project that references TelemetryLogging

<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GX</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Telemetry.Abstractions" Version="8.0.0" />
</ItemGroup>
</Project>

Generated Files

Those are taken from $(BaseIntermediateOutputPath)\GX


// <auto-generated/>
#nullable enable
#pragma warning disable CS1591 // Compensate for https://github.com/dotnet/roslyn/issues/54103
partial class LoggingSample
{
/// <summary>
/// Logs "Value is {value:E}" at "Critical" level.
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Gen.Logging", "8.0.0.0")]
public static partial void UsingFormatSpecifier(global::Microsoft.Extensions.Logging.ILogger logger, double value)
{
var state = global::Microsoft.Extensions.Logging.LoggerMessageHelper.ThreadLocalState;

_ = state.ReserveTagSpace(2);
state.TagArray[1] = new("value", value);
state.TagArray[0] = new("{OriginalFormat}", "Value is {value:E}");

logger.Log(
global::Microsoft.Extensions.Logging.LogLevel.Critical,
new(20, nameof(UsingFormatSpecifier)),
state,
null,
static (s, _) =>
{
var value = s.TagArray[1].Value;
return global::System.FormattableString.Invariant($"Value is {value:E}");
});

state.Clear();
}

/// <summary>
/// Logs "Logging all person properties" at "Information" level.
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Gen.Logging", "8.0.0.0")]
public partial void LogWithProperties(global::Person person)
{
if (!_logger.IsEnabled(global::Microsoft.Extensions.Logging.LogLevel.Information))
{
return;
}

var state = global::Microsoft.Extensions.Logging.LoggerMessageHelper.ThreadLocalState;

_ = state.ReserveTagSpace(3);
state.TagArray[2] = new("person.firstName", person?.firstName);
state.TagArray[1] = new("person.LastName", person?.LastName);
state.TagArray[0] = new("{OriginalFormat}", "Logging all person properties");

_logger.Log(
global::Microsoft.Extensions.Logging.LogLevel.Information,
new(19, "PersonLogging"),
state,
null,
static (s, _) =>
{
return "Logging all person properties";
});

state.Clear();
}

/// <summary>
/// Logs "Fixed message" at "Trace" level.
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Gen.Logging", "8.0.0.0")]
public partial void LogWithCustomEventName()
{
if (!_logger.IsEnabled(global::Microsoft.Extensions.Logging.LogLevel.Trace))
{
return;
}

var state = global::Microsoft.Extensions.Logging.LoggerMessageHelper.ThreadLocalState;

_ = state.ReserveTagSpace(1);
state.TagArray[0] = new("{OriginalFormat}", "Fixed message");

_logger.Log(
global::Microsoft.Extensions.Logging.LogLevel.Trace,
new(9, "CustomEventName"),
state,
null,
static (s, _) =>
{
return "Fixed message";
});

state.Clear();
}

/// <summary>
/// Logs "Welcome to {city} {province}!".
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Gen.Logging", "8.0.0.0")]
public partial void LogWithDynamicLogLevel(string city, global::Microsoft.Extensions.Logging.LogLevel level, string province)
{
if (!_logger.IsEnabled(level))
{
return;
}

var state = global::Microsoft.Extensions.Logging.LoggerMessageHelper.ThreadLocalState;

_ = state.ReserveTagSpace(3);
state.TagArray[2] = new("city", city);
state.TagArray[1] = new("province", province);
state.TagArray[0] = new("{OriginalFormat}", "Welcome to {city} {province}!");

_logger.Log(
level,
new(10, nameof(LogWithDynamicLogLevel)),
state,
null,
static (s, _) =>
{
var city = s.TagArray[2].Value ?? "(null)";
var province = s.TagArray[1].Value ?? "(null)";
return global::System.FormattableString.Invariant($"Welcome to {city} {province}!");
});

state.Clear();
}
}

Usefull

Download Example (.NET C# )

Share TelemetryLogging

https://ignatandrei.github.io/RSCG_Examples/v2/docs/TelemetryLogging

In the same category (EnhancementClass) - 24 other generators

ApparatusAOT

AspectGenerator

CommonCodeGenerator

CopyTo

DudNet

FastGenericNew

GeneratorEquals

HsuSgSync

Immutype

Ling.Audit

Lombok.NET

M31.FluentAPI

MemoryPack

Meziantou.Polyfill

Microsoft.Extensions.Logging

Microsoft.Extensions.Options.Generators.OptionsValidatorGenerator

Microsoft.Interop.JavaScript.JSImportGenerator

OptionToStringGenerator

RSCG_Decorator

RSCG_UtilityTypes

StaticReflection

SyncMethodGenerator

System.Runtime.InteropServices

System.Text.RegularExpressions