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 May 6, 2026. It is now read-only.
feat: record time spent waiting on rpc calls (#472)
Two new attributes have been added to the top level context object,
which can be used in looking at performance of underlying Datastore
calls. `rpc_time` records the total amount of time all rpc calls made
in that context have taken. `wait_time` records the total amount of time
spent waiting (blocking) for rpc calls to complete. Because of
parallelism, `wait_time` should be less than `rpc_time`, although in
practice they're almost always quite close.
0 commit comments