Sick Gaming
Improvements in .NET Core 3.0 for troubleshooting and monitoring distributed apps - Printable Version

+- Sick Gaming (https://www.sickgaming.net)
+-- Forum: Programming (https://www.sickgaming.net/forum-76.html)
+--- Forum: C#, Visual Basic, & .Net Frameworks (https://www.sickgaming.net/forum-79.html)
+--- Thread: Improvements in .NET Core 3.0 for troubleshooting and monitoring distributed apps (/thread-92456.html)



Improvements in .NET Core 3.0 for troubleshooting and monitoring distributed apps - xSicKxBot - 11-17-2019

Improvements in .NET Core 3.0 for troubleshooting and monitoring distributed apps

<div style="margin: 5px 5% 10px 5%;"><img src="https://www.sickgaming.net/blog/wp-content/uploads/2019/11/improvements-in-net-core-3-0-for-troubleshooting-and-monitoring-distributed-apps.png" width="58" height="58" title="" alt="" /></div><div><div class="row justify-content-center">
<div class="col-md-4">
<div><img src="https://www.sickgaming.net/blog/wp-content/uploads/2019/11/improvements-in-net-core-3-0-for-troubleshooting-and-monitoring-distributed-apps.png" width="58" height="58" alt="Avatar" class="avatar avatar-58 wp-user-avatar wp-user-avatar-58 photo avatar-default"></p>
<p>Sourabh</p>
</div>
</div>
</div>
<div class="entry-meta">
<p>November 13th, 2019</p>
</p></div>
<p><!-- .entry-meta --> </p>
<p><em>Post was authored by <a href="https://github.com/SergeyKanzhelev">Sergey Kanzhelev</a>. Thank you <a href="https://github.com/davidfowl">David Fowler</a> and <a href="https://github.com/richlander">Richard Lander</a> for reviews.</em></p>
<h2>Introduction</h2>
<p>Operating distributed apps is hard. Distributed apps typically consists of multiple components. These components may be owned and operated by different teams. Every interaction with an app results in distributed trace of code executions across many components. If your customer experiences a problem – pinpointing the root cause in one of components participated in a distributed trace is a hard task.</p>
<p>One big difference of distributed apps comparing to monoliths is a difficulty to correlate telemetry (like logs) across a single distributed trace. Looking at logs you can see how each component processed each request. But it is hard to know which request in once component and request in other component belong to the same distributed trace.</p>
<p>Historically, Application Performance Monitoring (APM) vendors provided the functionality of distributed trace context propagation from one component to another. Telemetry is correlated using this context. Due to heterogeneous nature of many environments, with components owned by different teams and using different tools for monitoring, it was always hard to instrument distributed apps consistently. APM vendors provided automatic code injection agents and SDKs to handle complexity of understanding various distributed context formats and RPC protocols.</p>
<p>With the upcoming transition of <a href="https://www.w3.org/TR/trace-context/">W3C Trace Context specification</a> into Proposed Recommendation maturity level, and support of this specification by many vendors and platforms, the complexity of the context propagation is decreasing. The W3C Trace Context specification describes semantics of the distributed trace context and its format. This ensures that every component in a distributed app may understand this context and propagate it to components it calls into.</p>
<p>Microsoft is working on making distributed apps development easier with many ongoing developments like <a href="https://devblogs.microsoft.com/dotnet/orleans-3-0/">Orleans framework</a> and project <a href="https://dapr.io/">Dapr</a>. As for distributed trace context propagation – Microsoft services and platforms will be adopting a W3C Trace Context format.</p>
<p>We believe that ASP.NET Core must provide an outstanding experience for building distributed tracing apps. With every release of ASP.NET Core we execute on this promise. This post describes the scenario of distributed tracing and logging highlighting improvements in .NET Core 3.0 and talks about discussions of a new exciting features we plan to add going forward.</p>
<h2>Distributed Tracing and Logging</h2>
<p>Let’s explore distributed tracing in .NET Core 3.0 and improvements recently made. <strong>First</strong>, we’ll see how two “out of the box” ASP.NET Core 3.0 apps has logs correlated across the entire distributed trace. <strong>Second</strong>, we’ll explore how easy it is to set distributed trace context for any .NET Core application and how it will automatically be propagated across http. And <strong>third</strong>, we’ll see how the same distributed trace identity is used by telemetry SDKs like <a href="https://opentelemetry.io/">OpenTelemetry</a> and ASP.NET Core logs.</p>
<p>This demo will also demonstrate how .NET Core 3.0 embraces W3C Trace Context standard and what other features it offers.</p>
<h3>Demo set up</h3>
<p>In this demo we will have three simple components: ClientApp, FrontEndApp and BackEndApp.</p>
<p><img src="https://www.sickgaming.net/blog/wp-content/uploads/2019/11/improvements-in-net-core-3-0-for-troubleshooting-and-monitoring-distributed-apps-1.png" class="wp-image-22723"></p>
<p>BackEndApp is a template ASP.NET Core application called WeatherApp. It exposes a REST API to get a weather forecast.</p>
<p>FrontEndApp proxies all incoming requests into the calls to BackEndApp using this controller:</p>
<pre><code class="csharp">[ApiController]
[Route("[controller]")]
public class WeatherForecastProxyController : ControllerBase
{ private readonly ILogger&lt;WeatherForecastProxyController&gt; _logger; private readonly HttpClient _httpClient; public WeatherForecastProxyController( ILogger&lt;WeatherForecastProxyController&gt; logger, HttpClient httpClient) { _logger = logger; _httpClient = httpClient; } [HttpGet] public async Task&lt;IEnumerable&lt;WeatherForecast&gt;&gt; Get() { var jsonStream = await _httpClient.GetStreamAsync("http://localhost:5001/weatherforecast"); var weatherForecast = await JsonSerializer.DeserializeAsync&lt;IEnumerable&lt;WeatherForecast&gt;&gt;(jsonStream); return weatherForecast; }
}
</code></pre>
<p>Finally, ClientApp is a .NET Core 3.0 Windows Forms app. ClientApp calls into FrontEndApp for the weather forecast.</p>
<pre><code class="csharp">private async Task&lt;string&gt; GetWeatherForecast()
{ return await _httpClient.GetStringAsync( "http://localhost:5000/weatherforecastproxy");
}
</code></pre>
<p>Please note, there were no additional SDKs enabled or libraries installed on demo apps. As the demo progresses – every code change will be mentioned.</p>
<h3>Correlated logs</h3>
<p>Let’s make the very first call from ClientApp and take a look at the logs produced by FrontEndApp and BackEndApp.</p>
<p>FrontEndApp (a few line breaks added for readability):</p>
<pre><code>info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1] =&gt; ConnectionId:0HLR1BR0PL1CH =&gt; RequestPath:/weatherforecastproxy RequestId:0HLR1BR0PL1CH:00000001, SpanId:|363a800a-4cf070ad93fe3bd8., TraceId:363a800a-4cf070ad93fe3bd8, ParentId:
Executed endpoint 'FrontEndApp.Controllers.WeatherForecastProxyController.Get (FrontEndApp)'
</code></pre>
<p>BackEndApp:</p>
<pre><code>info: BackEndApp.Controllers.WeatherForecastController[0] =&gt; ConnectionId:0HLR1BMQHFKRL =&gt; RequestPath:/weatherforecast RequestId:0HLR1BMQHFKRL:00000002, SpanId:|363a800a-4cf070ad93fe3bd8.94c1cdba_, TraceId:363a800a-4cf070ad93fe3bd8, ParentId:|363a800a-4cf070ad93fe3bd8. Executed endpoint 'FrontEndApp.Controllers.WeatherForecastController.Get (BackEndApp)'
</code></pre>
<p>Like magic, logs from two independent apps share the same TraceId. Behind the scene, ASP.NET Core 3.0 app will initialize a distributed trace context and pass it in the header. This is how incoming headers to the BackEndApp looks like:</p>
<p><img src="https://www.sickgaming.net/blog/wp-content/uploads/2019/11/improvements-in-net-core-3-0-for-troubleshooting-and-monitoring-distributed-apps-2.png" class="wp-image-22724"></p>
<p>You may notice that FrontEndApp didn’t receive any additional headers:</p>
<p><img src="https://www.sickgaming.net/blog/wp-content/uploads/2019/11/improvements-in-net-core-3-0-for-troubleshooting-and-monitoring-distributed-apps-3.png" class="wp-image-22725"></p>
<p>The reason is that in ASP.NET Core apps – distributed trace being initiated by ASP.NET Core framework itself on every incoming request. Next section explains how to do it for any .NET Core 3.0 app.</p>
<h3>Initiate distributed trace in .NET Core 3.0 app</h3>
<p>You may have noticed the difference in behavior of Windows Forms ClientApp and ASP.NET Core FrontEndApp. ClientApp didn’t set any distributed trace context. So FrontEndApp didn’t receive it. It is easy to set up distributed operation. Easiest way to do it is to use an API called <code>Activity</code> from the DiagnosticSource package.</p>
<pre><code class="csharp">private async Task&lt;string&gt; GetWeatherForecast()
{ var activity = new Activity("CallToBackend").Start(); try { return await _httpClient.GetStringAsync( "http://localhost:5000/weatherforecastproxy"); } finally { activity.Stop(); }
}
</code></pre>
<p>Once you have started an activity, HttpClient knows that distributed trace context needs to be propagated. Now all three components – ClientApp, FrontEndApp and BackEndApp share the same TraceId.</p>
<h3>W3C Trace Context support</h3>
<p>You may notice that the context is propagating using the header called Request-Id. This header was introduced in Asp.Net Core 2.0 and is used by default for better compatibility with these apps. However, as the W3C Trace Context specification is being widely adopted, it is recommended to switch to this format of context propagation.</p>
<p>With .NET Core 3.0, it is easy to switch to W3C Trace Context format to propagate distributed trace identifiers. Easiest way to do it is in the main method- just add a simple line in the <code>Main</code> method:</p>
<pre><code class="csharp">static void Main()
{ Activity.DefaultIdFormat = ActivityIdFormat.W3C; … Application.Run(new MainForm());
}
</code></pre>
<p>Now, when the FrontEndApp receives requests from the ClientApp, you see a traceparent header in the request:</p>
<p><img src="https://www.sickgaming.net/blog/wp-content/uploads/2019/11/improvements-in-net-core-3-0-for-troubleshooting-and-monitoring-distributed-apps-4.png" class="wp-image-22726"></p>
<p>The ASP.NET Core app will understand this header and recognize that it needs to use W3C Trace Context format for outgoing calls now.</p>
<p>Note, ASP.NET Core apps will recognize the correct format of distributed trace context automatically. However, it is still a good practice to switch the default format of distributed trace context to W3C for better interoperability in heterogeneous environments.</p>
<p>You will see all the logs attributed with the TraceId and SpanId obtained from the incoming header:</p>
<pre><code>info: Microsoft.AspNetCore.Hosting.Diagnostics[1] =&gt; ConnectionId:0HLQV2BC3VP2T =&gt; RequestPath:/weatherforecast RequestId:0HLQV2BC3VP2T:00000001, SpanId:da13aa3c6fd9c146, TraceId:f11a03e3f078414fa7c0a0ce568c8b5c, ParentId:5076c17d0a604244 Request starting HTTP/1.1 GET http://localhost:5000/weatherforecast
</code></pre>
<h3>Activity and distributed tracing with OpenTelemetry</h3>
<p><a href="https://opentelemetry.io">OpenTelemetry</a> provides a single set of APIs, libraries, agents, and collector services to capture distributed traces and metrics from your application. You can analyze them using Prometheus, Jaeger, Zipkin, and other observability tools.</p>
<p>Let’s enable OpenTelemetry on the BackEndApp. It is very easy to do, just call <code>AddOpenTelemetry</code> on startup:</p>
<pre><code class="csharp">services.AddOpenTelemetry(b =&gt; b.UseZipkin(o =&gt; { o.ServiceName="BackEndApp"; o.Endpoint=new Uri("http://zipkin /api/v2/spans"); }) .AddRequestCollector());
</code></pre>
<p>Now, as we just saw, TraceId in the FrontEndApp logs will match TraceId in the BackEndApp.</p>
<pre><code>info: Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker[2] =&gt; ConnectionId:0HLR2RC6BIIVO =&gt; RequestPath:/weatherforecastproxy RequestId:0HLR2RC6BIIVO:00000001, SpanId:54e2de7b9428e940, TraceId:e1a9b61ec50c954d852f645262c7b31a, ParentId:69dce1f155911a45 =&gt; FrontEndApp.Controllers.WeatherForecastProxyController.Get (FrontEndApp)
Executed action FrontEndApp.Controllers.WeatherForecastProxyController.Get (FrontEndApp) in 3187.3112ms info: Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker[2] =&gt; ConnectionId:0HLR2RLEHSKBV =&gt; RequestPath:/weatherforecast RequestId:0HLR2RLEHSKBV:00000001, SpanId:0e783a0867544240, TraceId:e1a9b61ec50c954d852f645262c7b31a, ParentId:54e2de7b9428e940 =&gt; BackEndApp.Controllers.WeatherForecastController.Get (BackEndApp)
Executed action BackEndApp.Controllers.WeatherForecastController.Get (BackEndApp) in 3085.9111ms
</code></pre>
<p>Furthermore, the same Trace will be reported by Zipkin. So now you can correlate distributed traces collected by your distributed tracing tool and logs from the machine. You can also give this TraceId to the user when ClientApp experience issues. The user can share it with your app support and corresponding logs and distributed traces can be easily discovered across all components.</p>
<p><img src="https://www.sickgaming.net/blog/wp-content/uploads/2019/11/improvements-in-net-core-3-0-for-troubleshooting-and-monitoring-distributed-apps-5.png" class="wp-image-22727"></p>
<p>Taking example one step further – you can easily enable monitoring for all three components and see them on the gantt chart.</p>
<p><img src="https://www.sickgaming.net/blog/wp-content/uploads/2019/11/improvements-in-net-core-3-0-for-troubleshooting-and-monitoring-distributed-apps-6.png" class="wp-image-22728"></p>
<h3>ASP.NET Core apps integrates with distributed trace</h3>
<p>As we just seen telemetry collected by Application Monitoring vendors is correlated using the same distributed trace context as ASP.NET Core uses. This makes ASP.NET Core 3.0 apps great for the environments where different components are owned by different teams.</p>
<p>Imagine that only two of apps – A and C on the picture below enabled telemetry collection using SDK like OpenTelemetry. Before ASP.NET Core 3.0 it would mean that distributed tracing will not work, and a trace will be “broken” by app B.</p>
<p><img src="https://www.sickgaming.net/blog/wp-content/uploads/2019/11/improvements-in-net-core-3-0-for-troubleshooting-and-monitoring-distributed-apps-7.png" class="wp-image-22729"></p>
<p>With ASP.NET Core 3.0, since in most deployments ASP.NET Core apps are configured with the basic logging enabled, app B will propagate distributed trace context. This distributed traces from A and C will be correlated.</p>
<p>With the example of apps from before – if ClientApp and BackEndApp are instrumented and FrontEndApp is not – you see distributed trace is still being correlated:</p>
<p><img src="https://www.sickgaming.net/blog/wp-content/uploads/2019/11/improvements-in-net-core-3-0-for-troubleshooting-and-monitoring-distributed-apps-8.png" class="wp-image-22730"></p>
<p>This also makes ASP.NET Core apps great for the service mesh environments. In service mesh deployments, A and C from the picture above may represent a service mesh. In order for service mesh to stitch request entering and leaving component B – certain headers have to be propagated by an app. See this note from the <a href="https://istio.io/docs/tasks/telemetry/distributed-tracing/overview/#trace-context-propagation">Istio for example</a>:</p>
<p><em>Although Istio proxies are able to automatically send spans, they need some hints to tie together the entire trace. Applications need to propagate the appropriate HTTP headers so that when the proxies send span information, the spans can be correlated correctly into a single trace.</em></p>
<p>As we work with service mesh authors to adopt W3C Trace Context format, ASP.NET Core apps will “just work” and propagate needed headers.</p>
<h2>Passing additional context</h2>
<p>Talking about other scenarios, it is often the case that you want to share more context between components in a distributed app. Let’s say a ClientApp wants to send its version so all REST calls will know where the request is coming from. You can add these properties in Activity.Baggage like this:</p>
<pre><code class="csharp">private async Task&lt;string&gt; GetWeatherForecast()
{ var activity = new Activity("CallToBackend") .AddBaggage("appVersion", "v1.0") .Start(); try { return await _httpClient.GetStringAsync( "http://localhost:5000/weatherforecastproxy"); } finally { activity.Stop(); }
}
</code></pre>
<p>Now on server side you see an additional header Correlation-Context in both – FrontEndApp and BackEndApp.</p>
<p><img src="https://www.sickgaming.net/blog/wp-content/uploads/2019/11/improvements-in-net-core-3-0-for-troubleshooting-and-monitoring-distributed-apps-9.png" class="wp-image-22731"></p>
<p>And you can use the <code>Activity.Baggage</code> to attribute your logs:</p>
<pre><code class="csharp">var appVersion = Activity.Current.Baggage.FirstOrDefault(b =&gt; b.Key == "appVersion").Value;
using (_logger.BeginScope($"appVersion={appVersion}"))
{ _logger.LogInformation("this weather forecast is from random source");
}
</code></pre>
<p>And you see the scope now contains an appVersion:</p>
<pre><code>info: FrontEndApp.Controllers.WeatherForecastController[0] =&gt; ConnectionId:0HLQV353507UG =&gt; RequestPath:/weatherforecast RequestId:0HLQV353507UG:00000001, SpanId:37a0f7ebf3ecac42, TraceId:c7e07b7719a7a3489617663753f985e4, ParentId:f5df77ba38504846 =&gt; FrontEndApp.Controllers.WeatherForecastController.Get (BackEndApp) =&gt; appVersion=v1.0 this weather forecast is from random source
</code></pre>
<h2>Next steps</h2>
<p>With the improvements for ASP.NET Core 3.0 we hear that some of the features included in ASP.NET Core is hard to consume. Developers and DevOps wants a turnkey telemetry solution that will work with many APM vendors. We believe that investments we are making in OpenTelemetry will allow more people to benefit from investments we are making in ASP.NET Core monitoring and troubleshooting. This is one of the big areas of investments for a team.</p>
<p>We also help people adopt W3C Trace Context everywhere and will be making it a default distributed trace context propagation format in future versions of ASP.NET Core.</p>
<p>Another area of investments is to improve distributed context propagation scenarios. Distributed apps comparing to monoliths are lacking common shared state with the lifetime of a single distributed trace. This shared state (or context) can be used for basic logging as was described in this article, as well as for advanced routing of requests, experimentation, A/B testing, business context propagation, etc. Some of scenarios are described in this epic: <a href="https://github.com/dotnet/corefx/issues/42305">Distributed Context in ASP.NET and Open Telemetry</a>.</p>
<p>Please send us your feedback and tell what improvements in distributed apps troubleshooting and monitoring we need to make.</p>
<div class="authorinfoarea">
<div><img src="https://www.sickgaming.net/blog/wp-content/uploads/2019/11/improvements-in-net-core-3-0-for-troubleshooting-and-monitoring-distributed-apps-10.png" width="96" height="96" alt="Avatar" class="avatar avatar-96 wp-user-avatar wp-user-avatar-96 photo avatar-default"></div>
</p></div>
</div>


https://www.sickgaming.net/blog/2019/11/13/improvements-in-net-core-3-0-for-troubleshooting-and-monitoring-distributed-apps/