If you previously set up your Lambda functions using the Datadog Forwarder, see instrumenting using the Datadog Forwarder. Otherwise, follow the instructions in this guide to instrument using the Datadog Lambda Extension.
If your Lambda functions are deployed in VPC without access to the public internet, you can send data either using AWS PrivateLink for the datadoghq.comDatadog site, or using a proxy for all other sites.
Version 67+ of the Datadog Lambda Extension uses an optimized version of the extension. Read more.
Datadog offers many different ways to enable instrumentation for your serverless applications. Choose a method below that best suits your needs. Datadog generally recommends using the Datadog CLI. You must follow the instructions for “Container Image” if your application is deployed as a container image.
The Datadog CLI modifies existing Lambda functions’ configurations to enable instrumentation without requiring a new deployment. It is the quickest way to get started with Datadog’s serverless monitoring.
Configure your Lambda functions
Enable Datadog APM and wrap your Lambda handler function using the wrapper provided by the Datadog Lambda library.
require'datadog/lambda'Datadog::Lambda.configure_apmdo|c|# Enable the instrumentationenddefhandler(event:,context:)Datadog::Lambda.wrap(event,context)doreturn{statusCode:200,body:'Hello World'}endend
Install the Datadog CLI client
npm install -g @datadog/datadog-ci
If you are new to Datadog serverless monitoring, launch the Datadog CLI in the interactive mode to guide your first installation for a quick start, and you can ignore the remaining steps. To permanently install Datadog for your production applications, skip this step and follow the remaining ones to run the Datadog CLI command in your CI/CD pipelines after your normal deployment.
datadog-ci lambda instrument -i
Configure the AWS credentials
Datadog CLI requires access to the AWS Lambda service, and depends on the AWS JavaScript SDK to resolve the credentials. Ensure your AWS credentials are configured using the same method you would use when invoking the AWS CLI.
Configure the Datadog site
exportDATADOG_SITE="<DATADOG_SITE>"
Replace <DATADOG_SITE> with datadoghq.com (ensure the correct SITE is selected on the right).
Configure the Datadog API key
Datadog recommends saving the Datadog API key in AWS Secrets Manager for security and easy rotation. The key needs to be stored as a plaintext string (not a JSON blob). Ensure your Lambda functions have the required secretsmanager:GetSecretValue IAM permission.
For quick testing purposes, you can also set the Datadog API key in plaintext:
exportDATADOG_API_KEY="<DATADOG_API_KEY>"
Instrument your Lambda functions
Note: Instrument your Lambda functions in a dev or staging environment first! Should the instrumentation result be unsatisfactory, run uninstrument with the same arguments to revert the changes.
To instrument your Lambda functions, run the following command.
Replace <functionname> and <another_functionname> with your Lambda function names. Alternatively, you can use --functions-regex to automatically instrument multiple functions whose names match the given regular expression.
To install and configure the Datadog Serverless Plugin, follow these steps:
Configure your Lambda functions
Enable Datadog APM and wrap your Lambda handler function using the wrapper provided by the Datadog Lambda library.
require'datadog/lambda'Datadog::Lambda.configure_apmdo|c|# Enable the instrumentationenddefhandler(event:,context:)Datadog::Lambda.wrap(event,context)doreturn{statusCode:200,body:'Hello World'}endend
Replace <DATADOG_SITE> with datadoghq.com (ensure the correct SITE is selected on the right).
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.
If you are deploying your Lambda function as a container image, you cannot use the Datadog Lambda library as a Lambda Layer. Instead, you must package the Datadog Lambda and tracing libraries within the image.
Add the following to your Gemfile:
gem'datadog-lambda'gem'ddtrace'
ddtrace contains native extensions that must be compiled for Amazon Linux to work with AWS Lambda.
Install gcc, gmp-devel, and make prior to running bundle install in your function’s Dockerfile to ensure that the native extensions can be successfully compiled.
FROM <base image># assemble your container imageRUN yum -y install gcc gmp-devel makeRUN bundle config set path 'vendor/bundle'RUN bundle install
Install the Datadog Lambda Extension
Add the Datadog Lambda Extension to your container image by adding the following to your Dockerfile:
Replace <TAG> with either a specific version number (for example, 74) or with latest. Alpine is also supported with specific version numbers (such as 74-alpine) or with latest-alpine. You can see a complete list of possible tags in the Amazon ECR repository.
Configure your Lambda functions
Enable Datadog APM and wrap your Lambda handler function using the wrapper provided by the Datadog Lambda library.
require'datadog/lambda'Datadog::Lambda.configure_apmdo|c|# Enable the instrumentationenddefhandler(event:,context:)Datadog::Lambda.wrap(event,context)doreturn{statusCode:200,body:'Hello World'}endend
Configure the Datadog site and API key
Set the environment variable DD_SITE to datadoghq.com (ensure the correct SITE is selected on the right).
Set the environment variable DD_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 use DD_API_KEY instead and set the Datadog API key in plaintext.
If you are not using a serverless development tool that Datadog supports, such as the Serverless Framework, Datadog strongly encourages you instrument your serverless applications with the Datadog CLI.
Install the Datadog Lambda library
The Datadog Lambda Library can be installed as a layer or a gem. For most functions, Datadog recommends installing the library as a layer. If your Lambda function is deployed as a container image, you must install the library as a gem.
The minor version of the datadog-lambda gem always matches the layer version. For example, datadog-lambda v0.5.0 matches the content of layer version 5.
Option A: Configure the layers for your Lambda function using the ARN in the following format:
# Use this format for x86-based Lambda deployed in AWS commercial regionsarn:aws:lambda:<AWS_REGION>:464622532012:layer:Datadog-<RUNTIME>:24
# Use this format for arm64-based Lambda deployed in AWS commercial regionsarn:aws:lambda:<AWS_REGION>:464622532012:layer:Datadog-<RUNTIME>-ARM:24
# Use this format for x86-based Lambda deployed in AWS GovCloud regionsarn:aws-us-gov:lambda:<AWS_REGION>:002406178527:layer:Datadog-<RUNTIME>:24
# Use this format for arm64-based Lambda deployed in AWS GovCloud regionsarn:aws-us-gov:lambda:<AWS_REGION>:002406178527:layer:Datadog-<RUNTIME>-ARM:24
Replace <AWS_REGION> with a valid AWS region such as us-east-1. The available RUNTIME options are Ruby2-7, and Ruby3-2.
Option B: If you cannot use the prebuilt Datadog Lambda layer, alternatively you can install the gems datadog-lambda and ddtrace by adding them to your Gemfile as an alternative:
gem'datadog-lambda'gem'ddtrace'
ddtrace contains native extensions that must be compiled for Amazon Linux to work with AWS Lambda. Datadog therefore recommends that you build and deploy your Lambda as a container image. If your function cannot be deployed as a container image and you would like to use Datadog APM, Datadog recommends installing the Lambda Library as a layer instead of as a gem.
Install gcc, gmp-devel, and make prior to running bundle install in your function’s Dockerfile to ensure that the native extensions can be successfully compiled.
FROM <base image># assemble your container imageRUN yum -y install gcc gmp-devel makeRUN bundle config set path 'vendor/bundle'RUN bundle install
Install the Datadog Lambda Extension
Option A: Configure the layers for your Lambda function using the ARN in the following format:
# Use this format for x86-based Lambda deployed in AWS commercial regionsarn:aws:lambda:<AWS_REGION>:464622532012:layer:Datadog-Extension:74
# Use this format for arm64-based Lambda deployed in AWS commercial regionsarn:aws:lambda:<AWS_REGION>:464622532012:layer:Datadog-Extension-ARM:74
# Use this format for x86-based Lambda deployed in AWS GovCloud regionsarn:aws-us-gov:lambda:<AWS_REGION>:002406178527:layer:Datadog-Extension:74
# Use this format for arm64-based Lambda deployed in AWS GovCloud regionsarn:aws-us-gov:lambda:<AWS_REGION>:002406178527:layer:Datadog-Extension-ARM:74
Replace <AWS_REGION> with a valid AWS region, such as us-east-1.
Option B: Add the Datadog Lambda Extension to your container image by adding the following to your Dockerfile:
Replace <TAG> with either a specific version number (for example, 74) or with latest. You can see a complete list of possible tags in the Amazon ECR repository.
Configure your Lambda functions
Enable Datadog APM and wrap your Lambda handler function using the wrapper provided by the Datadog Lambda library.
require'datadog/lambda'Datadog::Lambda.configure_apmdo|c|# Enable the instrumentationenddefhandler(event:,context:)Datadog::Lambda.wrap(event,context)doreturn{statusCode:200,body:'Hello World'}endend
Configure Datadog site and API key
Set the environment variable DD_SITE to datadoghq.com (ensure the correct SITE is selected on the right).
Set the environment variable DD_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 use DD_API_KEY instead and set the Datadog API key in plaintext.
Version 67+ of the Datadog Extension is optimized to significantly reduce cold start duration.
To use the optimized extension, disable Application Security Management (ASM), Continuous Profiler for Lambda, and OpenTelemetry based tracing. Set the following environment variables to false:
DD_TRACE_OTEL_ENABLED
DD_PROFILING_ENABLED
DD_SERVERLESS_APPSEC_ENABLED
Enabling any of these features cause the extension to default back to the fully compatible older version of the extension. You can also force your extension to use the older version by setting DD_EXTENSION_VERSION to compatibility. Datadog encourages you to report any feedback or bugs by adding an issue on GitHub and tagging your issue with version/next.
require'ddtrace'require'datadog/lambda'Datadog::Lambda.configure_apmdo|c|# Enable the instrumentationenddefhandler(event:,context:)# Apply the Datadog wrapperDatadog::Lambda::wrap(event,context)do# Add custom tags to the lambda function span,# does NOT work when X-Ray tracing is enabledcurrent_span=Datadog::Tracing.active_spancurrent_span.set_tag('customer.id','123456')some_operation()Datadog::Tracing.trace('hello.world')do|span|puts"Hello, World!"end# Submit a custom metricDatadog::Lambda.metric('coffee_house.order_value',# metric name12.45,# metric valuetime:Time.now.utc,# optional, must be within last 20 mins"product":"latte",# tag"order":"online"# another tag)endend# Instrument the functiondefsome_operation()Datadog::Tracing.trace('some_operation')do|span|# Do something hereendend
For more information on custom metric submission, see Serverless Custom Metrics. For additional details on custom instrumentation, see the Datadog APM documentation for custom instrumentation.