From eae15bab203b3de78ea6501694900e401a513bf2 Mon Sep 17 00:00:00 2001 From: Jonathan Gramain Date: Thu, 26 Dec 2024 15:03:25 -0800 Subject: [PATCH] BKTCLT-34 [squash] add q=1 to summary objectives (i.e. max) --- go/constants.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/constants.go b/go/constants.go index df479d1..700bf85 100644 --- a/go/constants.go +++ b/go/constants.go @@ -19,4 +19,4 @@ const ( MetricsNamespace = "s3_metadata_bucketclient" ) -var MetricsSummaryDefaultObjectives = map[float64]float64{0.5: 0.05, 0.9: 0.01, 0.99: 0.001} +var MetricsSummaryDefaultObjectives = map[float64]float64{0.5: 0.05, 0.9: 0.01, 0.99: 0.001, 1.0: 0.0001}