Skip to content

Commit

Permalink
ECS configs changes: from BASH-style environment variables to ${}
Browse files Browse the repository at this point in the history
  • Loading branch information
이희성 committed Oct 8, 2024
1 parent cd2043c commit 8cdca28
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions config/ecs/ecs-amp-prometheus.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extensions:
health_check:
sigv4auth:
region: $AWS_REGION
region: ${AWS_REGION}

receivers:
awsecscontainermetrics:
Expand Down Expand Up @@ -41,7 +41,7 @@ processors:

exporters:
prometheusremotewrite:
endpoint: $AWS_PROMETHEUS_ENDPOINT
endpoint: ${AWS_PROMETHEUS_ENDPOINT}
auth:
authenticator: sigv4auth
resource_to_telemetry_conversion:
Expand Down
4 changes: 2 additions & 2 deletions config/ecs/ecs-amp-xray-prometheus.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extensions:
health_check:
sigv4auth:
region: $AWS_REGION
region: ${AWS_REGION}

receivers:
otlp:
Expand Down Expand Up @@ -51,7 +51,7 @@ processors:
exporters:
awsxray:
prometheusremotewrite:
endpoint: $AWS_PROMETHEUS_ENDPOINT
endpoint: ${AWS_PROMETHEUS_ENDPOINT}
auth:
authenticator: sigv4auth
resource_to_telemetry_conversion:
Expand Down
4 changes: 2 additions & 2 deletions config/ecs/ecs-amp-xray.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extensions:
health_check:
sigv4auth:
region: $AWS_REGION
region: ${AWS_REGION}

receivers:
otlp:
Expand Down Expand Up @@ -42,7 +42,7 @@ processors:
exporters:
awsxray:
prometheusremotewrite:
endpoint: $AWS_PROMETHEUS_ENDPOINT
endpoint: ${AWS_PROMETHEUS_ENDPOINT}
auth:
authenticator: sigv4auth
resource_to_telemetry_conversion:
Expand Down
4 changes: 2 additions & 2 deletions config/ecs/ecs-amp.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extensions:
health_check:
sigv4auth:
region: $AWS_REGION
region: ${AWS_REGION}

receivers:
otlp:
Expand Down Expand Up @@ -38,7 +38,7 @@ processors:

exporters:
prometheusremotewrite:
endpoint: $AWS_PROMETHEUS_ENDPOINT
endpoint: ${AWS_PROMETHEUS_ENDPOINT}
auth:
authenticator: sigv4auth
resource_to_telemetry_conversion:
Expand Down

0 comments on commit 8cdca28

Please sign in to comment.