We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lambda
Currently latency alarms supported for LambdaFunctionMonitoring is limited to 3 metrics, P50, P90 and P99.
Our team wants to monitor Lambda latency with TM90 and TM99.
Ref: https://github.com/cdklabs/cdk-monitoring-constructs/blob/main/lib/monitoring/aws-lambda/LambdaFunctionMonitoring.ts#L56-L58
The text was updated successfully, but these errors were encountered:
It would be helpful if these addLatencyXAlarm props were replaced with a single addLatencyAlarms prop of a type like
addLatencyXAlarm
addLatencyAlarms
Record<string, LatencyThreshold & { statistic: LatencyType }>[]
so we could specify arbitrary latency statistics.
(addLatencyXAlarm is type Record<string, LatencyThreshold>)
Record<string, LatencyThreshold>
Sorry, something went wrong.
No branches or pull requests
Feature scope
Lambda
Describe your suggested feature
Currently latency alarms supported for LambdaFunctionMonitoring is limited to 3 metrics, P50, P90 and P99.
Our team wants to monitor Lambda latency with TM90 and TM99.
Ref: https://github.com/cdklabs/cdk-monitoring-constructs/blob/main/lib/monitoring/aws-lambda/LambdaFunctionMonitoring.ts#L56-L58
The text was updated successfully, but these errors were encountered: