Remove double "server" prefix from grpc metrics (#19542)

This commit is contained in:
Nicu Reut 2024-07-10 15:12:46 +02:00 committed by GitHub
parent 64b0bd3551
commit c42c0a241e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,13 +26,13 @@ class DamlGrpcServerHistograms(implicit
qualification = MetricQualification.Latency,
)
val damlGrpcServerReceived: Item = Item(
prefix :+ "server" :+ "messages" :+ "received",
prefix :+ "messages" :+ "received",
Histogram.Bytes,
summary = "Distribution of payload sizes in gRPC messages received (both unary and streaming).",
qualification = MetricQualification.Traffic,
)
val damlGrpcServerSent: Item = Item(
prefix :+ "server" :+ "messages" :+ "sent",
prefix :+ "messages" :+ "sent",
Histogram.Bytes,
summary = "Distribution of payload sizes in gRPC messages sent (both unary and streaming).",
qualification = MetricQualification.Traffic,