class Injector
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ApplicationSignals.Alpha.Injector |
Go | github.com/aws/aws-cdk-go/awscdkapplicationsignalsalpha/v2#Injector |
Java | software.amazon.awscdk.services.applicationsignals.alpha.Injector |
Python | aws_cdk.aws_applicationsignals_alpha.Injector |
TypeScript (source) | @aws-cdk/aws-applicationsignals-alpha ยป Injector |
Implemented by
Dot, Dot, Java, Node, Python
Injector is a base class for all SDK injects to mutate the task definition to inject the ADOT init container and configure the application container with the necessary environment variables.
Initializer
new Injector(sharedVolumeName: string, instrumentationVersion: InstrumentationVersion, overrideEnvironments?: EnvironmentExtension[])
Parameters
- sharedVolumeName
string - instrumentationVersion
InstrumentationVersion - overrideEnvironments
EnvironmentExtension []
Properties
| Name | Type | Description |
|---|---|---|
| command | string[] | The command to run the init container. |
| container | string | The path to ADOT SDK agent in the init container. |
| instrumentation | Instrumentation | |
| shared | string | |
| static DEFAULT_ENVS | Environment[] |
command
Type:
string[]
The command to run the init container.
containerPath
Type:
string
The path to ADOT SDK agent in the init container.
instrumentationVersion
Type:
Instrumentation
sharedVolumeName
Type:
string
static DEFAULT_ENVS
Type:
Environment[]
Methods
| Name | Description |
|---|---|
| inject | Inject ADOT SDK agent init container. |
| render | Render the application container for SDK instrumentation. |
| protected inject | Inject additional environment variables to the application container other than the DEFAULT_ENVS. |
| protected override | Override environment variables in the application container. |
injectInitContainer(taskDefinition)
public injectInitContainer(taskDefinition: TaskDefinition): ContainerDefinition
Parameters
- taskDefinition
Taskโ The TaskDefinition to render.Definition
Returns
Inject ADOT SDK agent init container.
renderDefaultContainer(taskDefinition)
public renderDefaultContainer(taskDefinition: TaskDefinition): void
Parameters
- taskDefinition
Taskโ The TaskDefinition to render.Definition
Render the application container for SDK instrumentation.
protected injectAdditionalEnvironments(envsToInject, envsFromTaskDef)
protected injectAdditionalEnvironments(envsToInject: { [string]: string }, envsFromTaskDef: { [string]: string }): void
Parameters
- envsToInject
{ [string]: string } - envsFromTaskDef
{ [string]: string }
Inject additional environment variables to the application container other than the DEFAULT_ENVS.
protected overrideAdditionalEnvironments(envsToOverride, envsFromTaskDef)
protected overrideAdditionalEnvironments(envsToOverride: { [string]: string }, envsFromTaskDef: { [string]: string }): void
Parameters
- envsToOverride
{ [string]: string } - envsFromTaskDef
{ [string]: string }
Override environment variables in the application container.

.NET
Go
Java
Python
TypeScript (