Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion collector/processor/coldstartprocessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ processors:
```

[alpha]: https://github.com/open-telemetry/opentelemetry-collector#alpha
[extension]: https://github.com/open-telemetry/opentelemetry-lambda/collector
[extension]: https://github.com/open-telemetry/opentelemetry-lambda/tree/main/collector
2 changes: 1 addition & 1 deletion collector/processor/decoupleprocessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ processors:
```

[alpha]: https://github.com/open-telemetry/opentelemetry-collector#development
[extension]: https://github.com/open-telemetry/opentelemetry-lambda/collector
[extension]: https://github.com/open-telemetry/opentelemetry-lambda/tree/main/collector
[lifecycle]: https://docs.aws.amazon.com/lambda/latest/dg/runtimes-extensions-api.html#runtimes-extensions-api-lifecycle
2 changes: 1 addition & 1 deletion collector/receiver/telemetryapireceiver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ receivers:
```

[alpha]: https://github.com/open-telemetry/opentelemetry-collector#alpha
[extension]: https://github.com/open-telemetry/opentelemetry-lambda/collector
[extension]: https://github.com/open-telemetry/opentelemetry-lambda/tree/main/collector
8 changes: 4 additions & 4 deletions nodejs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ To use, add the layer to your function configuration and then set `AWS_LAMBDA_EX

## Configuring auto instrumentation

[AWS SDK v3 instrumentation](https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-aws-sdk)
[AWS SDK v3 instrumentation](https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/packages/instrumentation-aws-sdk)
is included and loaded automatically by default.
A subset of instrumentations from the [OTEL auto-instrumentations-node metapackage](https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/metapackages/auto-instrumentations-node)
A subset of instrumentations from the [OTEL auto-instrumentations-node metapackage](https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/packages/auto-instrumentations-node)
are also included.

Following instrumentations from the metapackage are included:
Expand Down Expand Up @@ -49,7 +49,7 @@ Instrumentations annotated with "*- default*" are loaded by default.
To only load specific instrumentations, specify the `OTEL_NODE_ENABLED_INSTRUMENTATIONS` environment variable in the lambda configuration.
This disables all the defaults, and only enables the ones you specify. Selectively disabling instrumentations from the defaults is also possible with the `OTEL_NODE_DISABLED_INSTRUMENTATIONS` environment variable.

The environment variables should be set to a comma-separated list of the instrumentation package names without the
The environment variables should be set to a comma-separated list of the instrumentation package names without the
`@opentelemetry/instrumentation-` prefix.

For example, to enable only `@opentelemetry/instrumentation-http` and `@opentelemetry/instrumentation-undici`:
Expand Down Expand Up @@ -84,4 +84,4 @@ You'll find the generated layer zip file at `./packages/layer/build/layer.zip`.
Sample applications are provided to show usage of the above layer.

- Application using AWS SDK - shows using the wrapper with an application using AWS SDK without code change.
- [WIP] [Using OTel Public Layer](./sample-apps/aws-sdk)
- [WIP] [Using OTel Public Layer](./sample-apps/aws-sdk)
Loading