Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc typo: Node.js vs Python #743

Merged
merged 1 commit into from
Jan 7, 2025
Merged
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
6 changes: 3 additions & 3 deletions docs/shipping/Code/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -1451,10 +1451,10 @@ The OpenTelemetry Collector receives traces from the application and exports the

#### Build Docker Images

Build Docker images for both the Node.js application and the OpenTelemetry Collector:
Build Docker images for both the Python application and the OpenTelemetry Collector:

```shell
# Build Node.js application image
# Build Python application image
cd python-app/
docker build --platform linux/amd64 -t your-python-app:latest .

Expand Down Expand Up @@ -1490,7 +1490,7 @@ aws logs create-log-group --log-group-name /ecs/otel-collector

#### Define ECS Task

Create a task definition (task-definition.json) for ECS that defines both the Node.js application container and the OpenTelemetry Collector container.
Create a task definition (task-definition.json) for ECS that defines both the Python application container and the OpenTelemetry Collector container.

#### task-definition.json

Expand Down
Loading