Cette page n'est pas encore disponible en français, sa traduction est en cours. Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.
AWS Step Functions is a fully managed service, and the Datadog Agent cannot be directly installed on Step Functions. However, Datadog can monitor Step Functions through Cloudwatch metrics and logs.
Datadog collects Step Functions metrics from Cloudwatch through the AWS Step Functions integration. Datadog collects Step Functions logs from Cloudwatch through one of the following:
Enable all logging for your Step Function. In your AWS console, open your state machine. Click Edit and find the Logging section. There, set Log level to ALL and enable the Include execution data checkbox.
Ensure you have deployed the Datadog Lambda Forwarder, and that you are using v3.130.0+. You might need to update your Forwarder. As an alternative, you may also use Amazon Data Firehose, which can subscribe to Amazon CloudWatch log groups across multiple AWS regions. However, it requires that the Step Functions log group name begins with “/aws/vendedlogs/states/”.
On the left, select the AWS account where your Step Function is running. Open the Log Collection tab.
In the Log Autosubscription section, under Autosubscribe Forwarder Lambda Functions, enter the ARN of your Datadog Lambda Forwarder, as noted previously. Click Add.
Toggle on Step Functions CloudWatch Logs. Changes take 15 minutes to take effect.
Note: Log Autosubscription requires your Lambda Forwarder and Step Function to be in the same region.
Open your AWS console and go to your Datadog Lambda Forwarder. In the Function overview section, click on Add trigger.
Under Add trigger, in the Trigger configuration section, use the Select a source dropdown to select CloudWatch Logs.
Under Log group, select the log group for your state machine. For example, /aws/vendedlogs/states/my-state-machine.
Enter a filter name. You can choose to name it “empty filter” and leave the Filter pattern box blank.
Set up tags. Open your AWS console and go to your Step Functions state machine. Open the Tags section and add env:<ENV_NAME>, service:<SERVICE_NAME>, and version:<VERSION> tags. The env tag is required to see traces in Datadog, and it defaults to dev. The service tag defaults to the state machine’s name. The version tag defaults to 1.0.
To enable tracing, you have two options:
Per Step Function: Add the DD_TRACE_ENABLED tag to each Step Function and set the value to true.
At the Forwarder level: To enable tracing for all Step Functions connected to the Forwarder, you have two options:
When creating the CloudFormation stack for the forwarder, set the DdStepFunctionsTraceEnabled parameter to true.
After the forwarder is created, set the environment variable DD_STEP_FUNCTIONS_TRACE_ENABLED to true.
If you haven’t already, install the Datadog CLI v2.18.0+.
npm install -g @datadog/datadog-ci
Ensure you have deployed the Datadog Lambda Forwarder, and that you are using v3.130.0+. You might need to update your Forwarder. As an alternative, you can also use Amazon Data Firehose, which can subscribe to Amazon CloudWatch log groups across multiple AWS regions. Your Step Functions log group name should use this format:
/aws/vendedlogs/states/<STEP_FUNCTION_NAME>-Logs
Optionally, you can add your environment to this log group name: /aws/vendedlogs/states/<STEP_FUNCTION_NAME>-Logs-<ENV>
Ensure you have deployed the Datadog Lambda Forwarder, and that you are using v3.130.0+. You might need to update your Forwarder. As an alternative, you can also use Amazon Data Firehose, which can subscribe to Amazon CloudWatch log groups across multiple AWS regions. Your Step Functions log group name should use this format:
Replace <DATADOG_SITE> with datadoghq.com (ensure the correct DATADOG SITE is selected on the right of this docs page).
Replace <DATADOG_API_KEY_SECRET_ARN> with the ARN of the AWS secret where your Datadog API key is securely stored. The key needs to be stored as a plaintext string (not a JSON blob). The secretsmanager:GetSecretValue permission is required. For quick testing, you can instead use apiKey and set the Datadog API key in plaintext.
Replace <FORWARDER_ARN> with the ARN of your Datadog Lambda Forwarder. This step configures the log stream subscription for the Forwarder.
fromaws_cdkimport(aws_stepfunctionsassfn,aws_stepfunctions_tasksastasks,)fromdatadog_cdk_constructs_v2importDatadogStepFunctions,DatadogLambdastate_machine=sfn.StateMachine(...)datadog_sfn=DatadogStepFunctions(self,"DatadogSfn",env="<ENV>",# e.g. "dev"service="<SERVICE>",# e.g. "my-cdk-service"version="<VERSION>",# e.g. "1.0.0"forwarderArn="<FORWARDER_ARN>",# e.g. "arn:test:forwarder:sa-east-1:12345678:1"tags=<TAGS>,# optional, e.g. "custom-tag-1:tag-value-1,custom-tag-2:tag-value-2")datadog_sfn.add_state_machines([child_state_machine,parent_state_machine])
Note: The Datadog Step Functions CDK construct automatically enables tracing.
Enhanced metrics are automatically enabled if you enable tracing. Therefore, if tracing is enabled, you are billed for both Serverless Workload Monitoring and Serverless APM. See Pricing.
To manage the APM traced invocation sampling rate for serverless functions, set the DD_TRACE_SAMPLE_RATE environment variable on the function to a value between 0.00 (no tracing of Step Function invocations) and 1.00 (trace all Step Function invocations).
Datadog generates enhanced metrics from collected Cloudwatch logs. Enhanced metrics are automatically enabled if you enable traces.
To enable enhanced metrics without enabling tracing, add a DD_ENHANCED_METRICS tag to each of your Step Functions and set the value to true.
If you enable enhanced metrics without enabling traces, you are only billed for Serverless Workload Monitoring. If you enable tracing (which automatically includes enhanced metrics), you are billed for both Serverless Workload Monitoring and Serverless APM. See Pricing.
After you have invoked your state machine, go to the Serverless app in Datadog. Search for service:<YOUR_STATE_MACHINE_NAME> to see the relevant metrics, logs, and traces associated with that state machine. If you set the service tag on your state machine to a custom value, search for service:<CUSTOM_VALUE>.