1

クラウドウォッチAPIを使用してAWSステップ関数の進捗情報を確認する方法を知りたい。クラウドウォッチを使用してAWSステップ関数の進捗を確認する方法

GetMetricStatisticsメソッドを使用して進捗情報を確認できると思ったが、うまくいかなかった。

下記はGetMetricStatistics(JavaScript用Amazon Cloud Watch API)です。 リファレンス。

enter link description here

クラウドウォッチAPIを使用してAWSのステップ関数の進捗情報を確認する方法を教えてください。

ありがとうございました。

答えて

1

To establish a baseline you should, at a minimum, monitor the following metrics: 

ActivitiesStarted 
ActivitiesTimedOut 
ExecutionsStarted 
ExecutionsTimedOut 
LambdaFunctionsStarted 
LambdaFunctionsTimedOut 
そして:

State Machine Metrics 

The following metrics are available for Step Functions state machines: 

Execution Metrics 

The AWS/States namespace includes the following metrics for Step Functions executions: 

Metric Description 
ExecutionTime The interval, in milliseconds, between the time the execution starts and the time it closes. 
ExecutionThrottled The number of StateEntered events in addition to retries. 
ExecutionsAborted The number of aborted or terminated executions. 
ExecutionsFailed The number of failed executions. 
ExecutionsStarted The number of started executions. 
ExecutionsSucceeded The number of successfully completed executions. 
ExecutionsTimedOut The number of executions that time out for any reason. 

Reference

関連する問題