Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions packages/opentelemetry-semantic-conventions/src/trace/rpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,30 @@
* limitations under the License.
*/
export const RpcAttribute = {
/**
* A string identifying the remoting system.
*
* @remarks
* Required
*/
RPC_SYSTEM: 'rpc.system',

/**
* The full name of the service being called, including its package name, if applicable.
*
* @remarks
* Not required, but recommended
*/
RPC_SERVICE: 'rpc.service',

/**
* The name of the method being called, must be equal to the $method part in the span name.
*
* @remarks
* Not required, but recommended
*/
RPC_METHOD: 'rpc.method',

// GRPC (no spec)
GRPC_KIND: 'grpc.kind', // SERVER or CLIENT
GRPC_METHOD: 'grpc.method',
Expand Down