Skip to content

Commit

Permalink
fix rpc historgram buckets
Browse files Browse the repository at this point in the history
  • Loading branch information
wphan committed Nov 22, 2023
1 parent 85d958e commit ec5c800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bots/filler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ export class FillerBot implements Bot {
instrumentType: InstrumentType.HISTOGRAM,
meterName: meterName,
aggregation: new ExplicitBucketHistogramAggregation(
Array.from(new Array(20), (_, i) => 0 + i * 100),
Array.from(new Array(20), (_, i) => i + 2000),
true
),
}),
Expand Down

0 comments on commit ec5c800

Please sign in to comment.