fullstorydev / fullstorydev/grpcurl
GRPC TTFB Determination clarity
- Dominant language
- Go
- Stars
- 12.8k
- Forks
- 580
- Avg merge
- 1h 8m
- Merged PRs (30d)
- 5
Description
When executing grpcurl command and using "-vv" command I notice this output:
Response trailers received:
(empty)
Sent 1 request and received 1 response
Timing Data: 1.336617959s
Dial: 663.003042ms
TLS Setup: 4.083µs
BlockingDial: 662.955083ms
InvokeRPC: 520.699667ms
ChatGPT mentioned the following:
**InvokeRPC:**
- Represents the time taken to send the request and receive the first byte of the response (TTFB).
- This is equivalent to Time to First Byte.
InvokeRPC measures the duration between when the RPC request is sent and the first meaningful data is received from the server.
This includes the server processing time and any network latency after the connection is established.
So the question we're needing clarity is; In the example above InvokeRPC: 520.699667ms. Does the 520ms represent the 1st byte received or when the **full** response returned?
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.