Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/ecs/open-telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export interface OpenTelemetryCollectorsProps {
/** @default 6 months **/
logRetention?: RetentionDays

/** @default "amazon/aws-otel-collector:v0.43.3" */
/** @default "amazon/aws-otel-collector:v0.47.0" */
dockerImage?: string

/** Should be kept as `undefined` unless you know what you are doing.
Expand Down Expand Up @@ -179,7 +179,7 @@ class OpenTelemetryCollectorSidecar implements ecs.ITaskDefinitionExtension {
removalPolicy: RemovalPolicy.DESTROY,
})

const sidecarImage = this.dockerImage ?? "amazon/aws-otel-collector:v0.43.3"
const sidecarImage = this.dockerImage ?? "amazon/aws-otel-collector:v0.47.0"
const sidecar = taskDefinition.addContainer("aws-opentelemetry-collector", {
cpu: this.containerProps?.cpu ?? 32,
memoryReservationMiB: this.containerProps?.memoryReservationMiB ?? 24,
Expand Down
Loading