Java-sdk @UpdateMethod request metrics

We’re experimenting using @UpdateMethod on our java based Temporal implementation to verify performance improvements.

We notice that temporal_request_total does not have a update_name tag like it has a signal_name tag to expose metrics about updates.

Are we overseeing a new metric or is there no support for UpdateHandler request metrics in the java sdk yet.

Hi @frko

Update is a long request, you should see the request and update_name tag in temporal_long_request_total

Antonio

Small clarification, this metric represents the gRPC call and not the duration of the update method. The SDK may call the same update method several times until the method returns.

Than you for the very helpful explanation @antonio.perez, appreciated.

1 Like