Azure – How to correlate related custom logs using ILogger and application insights?
I have a service, that performs some REST API calls and I do custom logging before and after the api call: _logger.LogTrace("Invoked API {ApiName}", new { ApiName = apiName, Data = json }); var httpResponse = await _httpClient.PostAsync(url, new StringContent(json));…