Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ export const LAMBDA_LAYER_VERSIONS = {
dotnet: 25,
java: 27,
node: 140,
python: 125,
python: 126,
ruby: 29,
} as const
2 changes: 1 addition & 1 deletion packages/plugin-lambda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ You can pass the following arguments to `instrument` to specify its behavior. Th
| `--forwarder` | | The ARN of the datadog forwarder (https://docs.datadoghq.com/logs/guide/forwarder/) to attach this function's LogGroup to | |
| `--function` | `-f` | The ARN of the Lambda function to be instrumented, or the name of the Lambda function (--region must be defined) | |
| `--interactive` | `-i` | Allows the user to interactively choose how their function gets instrumented. There is no need to provide any other flags if you choose to use interactive mode since you will be prompted for the information instead | `false` |
| `--layer-version` or `--layerVersion` | `-v` | Version of the Datadog Lambda Library layer to apply. Setting this to 'latest' will use one of the following versions based on your runtime: dotnet - 25, java - 27, node - 140, python - 125, ruby - 29. Setting to 'none' will disable adding the language layer. | `latest` |
| `--layer-version` or `--layerVersion` | `-v` | Version of the Datadog Lambda Library layer to apply. Setting this to 'latest' will use one of the following versions based on your runtime: dotnet - 25, java - 27, node - 140, python - 126, ruby - 29. Setting to 'none' will disable adding the language layer. | `latest` |
| `--logging` | | Whether to collect logs using the Lambda Extension. | `true` |
| `--log-level` or `--logLevel` | | Set to debug to see additional output from the Datadog Lambda Library and/or Lambda Extension for troubleshooting purposes | |
| `--merge-xray-traces` or `--mergeXrayTraces` | | Whether to join dd-trace traces to AWS X-Ray traces. Useful for tracing API Gateway spans. | `false` |
Expand Down
Loading