Skip to content

Commit 1cf12c0

Browse files
feat grpc: add more timing metrics buckets
This allows accounting for timings up to 120 seconds. commit_hash:c875406a1a04ea4bb6de7be7eba3a0af63998d13
1 parent 33407aa commit 1cf12c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grpc/include/userver/ugrpc/impl/statistics.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class MethodStatistics final {
5959
void MoveStartedTo(MethodStatistics& other) noexcept;
6060

6161
private:
62-
using Percentile = utils::statistics::Percentile<2000, std::uint32_t, 256, 100>;
62+
using Percentile = utils::statistics::Percentile<2000, std::uint32_t, 1180, 100>;
6363
using Timings = utils::statistics::RecentPeriod<Percentile, Percentile>;
6464
using RateCounter = utils::statistics::RateCounter;
6565

0 commit comments

Comments
 (0)