MCPcopy Index your code
hub / github.com/keploy/keploy / CapturedReqTime

Function CapturedReqTime

pkg/models/const.go:216–218  ·  view source on GitHub ↗

CapturedReqTime returns the wall time associated with the most recent request chunk on this connection, or time.Now() if the context doesn't carry a captured-time source.

(ctx context.Context)

Source from the content-addressed store, hash-verified

214// recent request chunk on this connection, or time.Now() if the
215// context doesn't carry a captured-time source.
216func CapturedReqTime(ctx context.Context) time.Time {
217 return capturedTime(ctx, CapturedReqTimeKey)
218}
219
220// CapturedRespTime returns the wall time associated with the most
221// recent response chunk on this connection, or time.Now() if the

Calls 1

capturedTimeFunction · 0.85