Capturing and forwarding correlation IDs in ASP.NET Core
When you have different services that communicate amongst them, you need to be able to correlate those calls to perform effective analysis of any problem you might have. The way to do this is using correlation ids and pass them along in all your call to the different services you use. In this article, I´m going to explain you a way to do this in ASP.NET Core.
Correlation IDs Why do you need more than one correlation ID?