Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #31063

Merged
merged 1 commit into from
Apr 30, 2024
Merged

Fix typo #31063

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ static Histogram createRPCLatencyHistogram(RpcMethod method) {
nameBuilder.addLabel(RPC_METHOD, method.toString());
MetricName metricName = nameBuilder.build(METRICS_NAMESPACE);

// Create Exponential histogram buckets wtih the following parameters:
// Create Exponential histogram buckets with the following parameters:
// 0 scale, resulting in bucket widths with a size 2 growth factor.
// 17 buckets, so the max latency of that can be stored is (2^17 millis ~= 130 seconds).
HistogramData.BucketType buckets = HistogramData.ExponentialBuckets.of(0, 17);
Expand Down