There's new switch in the awscli for update-function-configuration: ``` --tracing-config (structure) The parent object that contains your function's tracing settings. Shorthand Syntax: Mode=string JSON Syntax: { "Mode": "Active"|"PassThrough" } ``` It's AWS X-Ray related and I would like to add support for it. Proposal is: ``` :defaults {:tracing :active} ``` * `:tracing` can be used in `:defaults` and per lambda function * `:tracing` values can be `:active` or `:passthrough` * If `:tracing` is not provided, it defaults to `:passthrough` It defaults to `:passthrough`, because it's a default value for all AWS Lambda functions (checked via awscli). Okay?
There's new switch in the awscli for update-function-configuration:
It's AWS X-Ray related and I would like to add support for it. Proposal is:
:tracingcan be used in:defaultsand per lambda function:tracingvalues can be:activeor:passthrough:tracingis not provided, it defaults to:passthroughIt defaults to
:passthrough, because it's a default value for all AWS Lambda functions (checked via awscli).Okay?