From 3136b0ce490652a34040466389c6f27b5cbd03a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=91=A8=E9=B8=BF=E6=96=8C?= Date: Mon, 1 Apr 2024 20:54:08 +0800 Subject: [PATCH] enhancement(kcmas): aggregate function p95 --- pkg/metric/consts.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/metric/consts.go b/pkg/metric/consts.go index d3ee883..e64ffcb 100644 --- a/pkg/metric/consts.go +++ b/pkg/metric/consts.go @@ -26,6 +26,7 @@ const ( AggregateFunctionMax = "_agg_max" AggregateFunctionMin = "_agg_min" AggregateFunctionP99 = "_agg_p99" + AggregateFunctionP95 = "_agg_p95" AggregateFunctionP90 = "_agg_p90" AggregateFunctionLatest = "_agg_latest" )