6.3 KiB
General RPC conventions
The conventions described in this section are RPC specific. When RPC operations occur, metric events about those operations will be generated and reported to provide insight into those operations. By adding RPC labels to metric events it allows for finely tuned filtering.
Metric instruments
The following metric instruments MUST be used to describe RPC operations. They MUST be of the specified type and units.
Note: RPC server and client metrics are split to allow correlation across client/server boundaries, e.g. Lining up an RPC method latency to determine if the server is responsible for latency the client is seeing.
RPC Server
Below is a table of RPC server metric instruments.
| Name | Instrument | Units | Description | Status | Streaming |
|---|---|---|---|---|---|
rpc.server.duration |
ValueRecorder | milliseconds | measures duration of inbound RPC | Recommended | N/A. While streaming RPCs may record this metric as start-of-batch to end-of-batch, it's hard to interpret in practice. |
rpc.server.request.size |
ValueRecorder | bytes | measures size of RPC request messages (uncompressed) | Optional | Recorded per message in a streaming batch |
rpc.server.response.size |
ValueRecorder | bytes | measures size of RPC response messages (uncompressed) | Optional | Recorded per response in a streaming batch |
rpc.server.requests_per_rpc |
ValueRecorder | count | measures the number of messages received per RPC. Should be 1 for all non-streaming RPCs | Optional | Required |
rpc.server.responses_per_rpc |
ValueRecorder | count | measures the number of messages sent per RPC. Should be 1 for all non-streaming RPCs | Optional | Required |
RPC Client
Below is a table of RPC client metric instruments. These apply to traditional RPC usage, not streaming RPCs.
| Name | Instrument | Units | Description | Status | Streaming |
|---|---|---|---|---|---|
rpc.client.duration |
ValueRecorder | milliseconds | measures duration of outbound RPC | Recommended | N/A. While streaming RPCs may record this metric as start-of-batch to end-of-batch, it's hard to interpret in practice. |
rpc.client.request.size |
ValueRecorder | bytes | measures size of RPC request messages (uncompressed) | Optional | Recorded per message in a streaming batch |
rpc.client.response.size |
ValueRecorder | bytes | measures size of RPC response messages (uncompressed) | Optional | Recorded per message in a streaming batch |
rpc.client.requests_per_rpc |
ValueRecorder | count | measures the number of messages received per RPC. Should be 1 for all non-streaming RPCs | Optional | Required |
rpc.client.responses_per_rpc |
ValueRecorder | count | measures the number of messages sent per RPC. Should be 1 for all non-streaming RPCs | Optional | Required |
Labels
Below is a table of labels that SHOULD be included on metric events and whether or not they should be on the server, client or both.
| Attribute | Type | Description | Examples | Required |
|---|---|---|---|---|
rpc.system |
string | A string identifying the remoting system. | grpc; java_rmi; wcf |
Yes |
rpc.service |
string | The full name of the service being called, including its package name, if applicable. | myservice.EchoService |
No, but recommended |
rpc.method |
string | The name of the method being called, must be equal to the $method part in the span name. | exampleMethod |
No, but recommended |
net.peer.ip |
string | Remote address of the peer (dotted decimal for IPv4 or RFC5952 for IPv6) | 127.0.0.1 |
See below |
net.peer.name |
string | Remote hostname or similar, see note below. | example.com |
See below |
net.peer.port |
number | Remote port number. | 80; 8080; 443 |
See below |
net.transport |
string | Transport protocol used. See note below. | IP.TCP |
See below |
Additional attribute requirements: At least one of the following sets of attributes is required:
To avoid high cardinality, implementations should prefer the most stable of net.peer.name or
net.peer.ip, depending on expected deployment profile. For many cloud applications, this is likely
net.peer.name as names can be recycled even across re-instantiation of a server with a different ip.
For client-side metrics net.peer.port is required if the connection is IP-based and the port is available (it describes the server port they are connecting to).
For server-side spans net.peer.port is optional (it describes the port the client is connecting from).
Furthermore, setting [net.transport][] is required for non-IP connection like named pipe bindings.
Service name
On the server process receiving and handling the remote procedure call, the service name provided in rpc.service does not necessarily have to match the service.name resource attribute.
One process can expose multiple RPC endpoints and thus have multiple RPC service names. From a deployment perspective, as expressed by the service.* resource attributes, it will be treated as one deployed service with one service.name.
gRPC conventions
For remote procedure calls via gRPC, additional conventions are described in this section.
rpc.system MUST be set to "grpc".