
Um eigene Werte in Application Insights loggen zu können, muss ein eigener ITelemetryInitializer erzeugt werden.
Dieser dient nun dazu, dass der entsprechende Log-Kontext um Informationen angereichert werden können:
1 public class MyCustomTelemetryInitializer : ITelemetryInitializer
2 {
3 public void Initialize(ITelemetry telemetry)
4 {
5 if (telemetry is RequestTelemetry requestTelemetry) // wenn ich nur Request Telemtry erweitern möchte
6 {
7 requestTelemetry.Context.GlobalProperties.Add("MyLogField",
8 "MyLogValue");
9 }
10 }
11 }
Dieser muss anschließend noch registriert werden
1services.AddSingleton<ITelemetryInitializer, MyCustomTelemetryInitializer>();
Achtet bei der Implementierung darauf, dass der Wert als String gespeichert wird. Das bedeutet, dass entsprechend eine neutrale Lokalisierung verwendet werden sollte und auch Zeitstempel sich nach ISO8601 orientieren sollten!
Related articles

Mar 25, 2026 · 14 min read
The new Microsoft Testing Platform for .NET: An introduction with practical samples and migration guidance
Testing in .NET has historically been associated with VSTest. That choice was reasonable for a long time because VSTest offered broad …

Mar 17, 2026 · 15 min read
GitHub Copilot - Custom Agents for Full-Stack Teams: A Practical Operating Model for .NET, React and Azure
GitHub Copilot custom agents allow teams to define specialized AI assistants, each with its own role, tool access and behavioral boundaries. …

Mar 10, 2026 · 15 min read
.NET NuGet Trusted Publishing with GitHub Actions
Publishing NuGet packages has traditionally required one uncomfortable compromise: a long-lived API key had to exist somewhere in the …
Let's Work Together
Looking for an experienced Platform Architect or Engineer for your next project? Whether it's cloud migration, platform modernization or building new solutions from scratch - I'm here to help you succeed.

Comments