Click here to Skip to main content
15,885,244 members
Articles / Programming Languages / C#

Web Request Sequence Visualization

Rate me:
Please Sign up or sign in to vote.
5.00/5 (5 votes)
26 Oct 2022CPOL9 min read 5K   9  
Here, I'll try to create a system that will allow us to quickly plot the sequence diagram of events during my request.
Modern requests to web services are very complex. The service you are calling can call other services, they are other services, etc. All these requests can be executed in parallel. Of course, the logging system stores information from all participants in the request. But the clocks on different services can be slightly out of sync, so it is not easy to recreate the correct picture. And if we add message queues here (Azure EventHub, RabbitMQ, ...), the task becomes even more difficult. Here, I'll try to create a system that will allow us to quickly plot the sequence diagram of events during my request.

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Finstek
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions