Skip to content

Commit

Permalink
Fix missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
shakuzen committed Nov 29, 2024
1 parent 90c0e5f commit 4f4cbe2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public KeyValues getLowCardinalityKeyValues(GrpcServerObservationContext context
String peerPort = context.getPeerPort() != null ? context.getPeerPort().toString() : UNKNOWN;
return KeyValues.of(LowCardinalityKeyNames.STATUS_CODE.withValue(statusCode),
LowCardinalityKeyNames.PEER_NAME.withValue(peerName),
LowCardinalityKeyNames.PEER_PORT.withValue(peerPort)
LowCardinalityKeyNames.PEER_PORT.withValue(peerPort),
LowCardinalityKeyNames.METHOD.withValue(context.getMethodName()),
LowCardinalityKeyNames.SERVICE.withValue(context.getServiceName()),
LowCardinalityKeyNames.METHOD_TYPE.withValue(context.getMethodType().name()));
Expand Down

0 comments on commit 4f4cbe2

Please sign in to comment.