Skip to content

Commit b1f0e5c

Browse files
committed
Add more buckets
Signed-off-by: Terence <terencelimxp@gmail.com>
1 parent 0303d04 commit b1f0e5c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

serving/src/main/java/feast/serving/util/Metrics.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class Metrics {
3131

3232
public static final Histogram requestEntityCount =
3333
Histogram.build()
34-
.buckets(1, 2, 5, 10)
34+
.buckets(1, 2, 5, 10, 20, 50, 100, 200)
3535
.name("request_entity_count")
3636
.subsystem("feast_serving")
3737
.help("Number of entity rows per request")
@@ -40,7 +40,7 @@ public class Metrics {
4040

4141
public static final Histogram requestFeatureCount =
4242
Histogram.build()
43-
.buckets(1, 2, 5, 10, 15, 20)
43+
.buckets(1, 2, 5, 10, 15, 20, 30, 50)
4444
.name("request_feature_count")
4545
.subsystem("feast_serving")
4646
.help("Number of feature rows per request")
@@ -49,7 +49,7 @@ public class Metrics {
4949

5050
public static final Histogram requestFeatureTableCount =
5151
Histogram.build()
52-
.buckets(1, 2, 5, 10)
52+
.buckets(1, 2, 5, 10, 20)
5353
.name("request_feature_table_count")
5454
.subsystem("feast_serving")
5555
.help("Number of feature tables per request")

0 commit comments

Comments
 (0)