在KEDA中使用aws-cloudwatch触发器进行自动缩放,但不确定expression
属性是什么!不应该在轮询时返回预期指标/维度的值吗?如果是,为什么我们还需要其他属性,如metricCollectionTime
,metricStat
和metricStatPeriod
?
在KEDA中使用aws-cloudwatch触发器进行自动缩放,但不确定expression
属性是什么!不应该在轮询时返回预期指标/维度的值吗?如果是,为什么我们还需要其他属性,如metricCollectionTime
,metricStat
和metricStatPeriod
?
1条答案
按热度按时间eyh26e7m1#
选项1:指定
expression
-文档中说它是“Optional,Required when dimensionName & dimensionValue are not specified”。但是,它可以说namespace
、metricName
、dimensionName
和dimensionValue
。例如,在字符串
选项2:应指定
namespace
、metricName
、dimensionName
、metricStat
和dimensionValue
来代替expression
。例如,与上述等效的是:
型
metricCollectionTime
和metricStatPeriod
都是需要的,而不管使用上述两个选项中的哪一个,因为它们确定寻找度量的时间帧,而上述选项与与每个度量相关联的时间帧无关。metricCollectionTime
是查找指标的时间metricStatPeriod
是检索到的聚合度量的回溯时间(必须小于或等于metricCollectionTime
)。聚合函数取决于metricStat
或expression
。