From 3ae2fb301682ee83f2abe1f60ad000fff411d9fe Mon Sep 17 00:00:00 2001 From: Yingge He Date: Mon, 4 Nov 2024 16:57:09 -0800 Subject: [PATCH] Update comments --- protobuf/model_config.proto | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/protobuf/model_config.proto b/protobuf/model_config.proto index 8599e47..c2d8042 100644 --- a/protobuf/model_config.proto +++ b/protobuf/model_config.proto @@ -1894,7 +1894,7 @@ message ModelMetrics //@@ .. cpp:var:: string family //@@ //@@ The name of the metric family to override with the custom value. - //@@ Check the list of supported metric families + //@@ All core histogram metrics reported by Triton are customizable. //@@ // https://github.com/triton-inference-server/server/blob/main/docs/user_guide/metrics.md#histograms //@@ @@ -1910,7 +1910,8 @@ message ModelMetrics //@@ .. cpp:var:: double buckets (repeated) //@@ //@@ Repeated double type in ascending order for histogram bucket - //@@ boundaries. For example: [ -5.0, -2, 0, 3.5, 5 ]. + //@@ boundaries. Each value represents a bucket range less than or + //@@ equal to itself. For example, [ -5.0, -2, 0, 3.5, 5 ]. //@@ repeated double buckets = 1; }