Open Closed

Tracing with IDistributedEventHandler #9076


User avatar
0
ElifKaya created

Hi,

I used Serilog to enrich logs with trace IDs, allowing me to keep trace IDs in log files. However, I don't want to lose these IDs in EventHandler logs.

Example: I have a trace ID in a request, but after this request, when the event handler starts, I can't propagate the trace ID to the handler. How can I manage this situation?

Is there any other solution besides moving the trace ID with event data?

image.png

Check the docs before asking a question: https://abp.io/docs/latest
Check the samples to see the basic tasks: https://abp.io/docs/latest/samples
The exact solution to your question may have been answered before, and please first use the search on the homepage.

Provide us with the following info:
šŸ§ Hint: If you are using the ABP Studio, you can see all the information about your solution from the configuration window, which opens when you right-click on the solution and click on the Solution Configuration button.

  • Exception message and full stack trace:

  • Steps to reproduce the issue:


2 Answer(s)
  • User Avatar
    0
    enisn created
    Support Team .NET Developer

    Hi,

    It seems you use Distributed event handler and and handler works completely separated context/thread than the original one that handles HTTP requests. So, TraceId cannot be acquired in that case.

    You may want to transfer it manually while publishing the event

    public class MyCustomEto
    {
        public string TraceId { get; set; }
        // ...
    }
    
    await distributedEventBus.PublishAsync(new MyCustomEventData 
    {
        TraceId = httpContextAccessor.HttpContext.TraceIdentifier,
        // Set other properties as needed
    });
    

    Why Does This Happen?

    When you handle an HTTP request, the current context (including any enrichers that incorporate data like the trace ID) is maintained on the thread handling that request. By the time your event handler executes, itā€™s on a different thread (or even a different process) where the ambient context isnā€™t preserved. This is why you observe that the trace ID, despite being available during the request, isnā€™t automatically available when the event handler starts processing the event.

  • User Avatar
    0
    ElifKaya created

    Yes, thanks. I used it that way too

Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
Do you need assistance from an ABP expert?
Schedule a Meeting
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ā¤ļø on ABP v9.2.0-preview. Updated on March 25, 2025, 11:10