Interface DatadogFargateApmApplicationEnvVarsProps

interface DatadogFargateApmApplicationEnvVarsProps {
    apmHostEnvVarName?: string;
    apmPortEnvVarName?: string;
    apmTraceEnabledEnvVarName?: string;
    doNotSet?: boolean;
}

Properties

apmHostEnvVarName?: string

The name of the environment variable to set to the host of the Datadog agent

Default

DD_AGENT_HOST
apmPortEnvVarName?: string

The name of the environment variable to set to the port of the Datadog agent

Default

DD_TRACE_AGENT_PORT
apmTraceEnabledEnvVarName?: string

The name of the environment variable to set to enable tracing in the application

Default

DD_TRACE_ENABLED
doNotSet?: boolean

Whether to skip setting the environment variables in the other containers in the task.

Remarks

By default, the other containers will have the default environment variables set to allow sending traces to the APM.

Default

false

Generated using TypeDoc