You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 18, 2018. It is now read-only.
Follow up to #1578. In this PR, we Kestrel started generating request IDs instead of letting aspnet/Hosting do this. At the moment, request IDs use the same code to generate connection ID and request ID.
We want to enhance this change further by making the requestID to the following format:
Connection 1 Id = 001BCA
Request 1: Id = 001BCA:00000
Request 2: Id = 001BCA:00001
...
Request 11: Id= 001BCA:0000B
Connection 2 Id = 001BCB
Request 1: Id = 001BCB:00000
Request 2: Id = 001BCB:00001
In the unlikely event there are more than 0xFFFFF (1,048,575) requests per connection, the counter must not truncate to 5 characters, but use as many characters required to express request count in hex.
The text was updated successfully, but these errors were encountered:
Follow up to #1578. In this PR, we Kestrel started generating request IDs instead of letting aspnet/Hosting do this. At the moment, request IDs use the same code to generate connection ID and request ID.
We want to enhance this change further by making the requestID to the following format:
Result:
In the unlikely event there are more than 0xFFFFF (1,048,575) requests per connection, the counter must not truncate to 5 characters, but use as many characters required to express request count in hex.
The text was updated successfully, but these errors were encountered: