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 Jan 21, 2026. It is now read-only.
When a proto file is loaded with @grpc/proto-loaded the method names are UpperCamelCase and a property called originalName is added to the method definition that has the lowerCamelCase name.
The problem is the alias is created before the methods are patched, so you can use both to make gRPC calls but only the UpperCamelCase method is traced.
When a proto file is loaded with @grpc/proto-loaded the method names are UpperCamelCase and a property called originalName is added to the method definition that has the lowerCamelCase name.
The client constructor in the grpc module creates a method alias using the originalName.
The problem is the alias is created before the methods are patched, so you can use both to make gRPC calls but only the UpperCamelCase method is traced.
Only client.MyMethod uses clientMethodTrace.