You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PubSub layer could be used when the lambda is triggered by some event, i.e. when it's subscribed to Kinesis Data Streams or DynamoDB Streams.
138
138
@@ -146,7 +146,7 @@ let pubsub_telemetry_layer = OtelLambdaLayer::pubsub(
146
146
);
147
147
```
148
148
149
-
SQS and SNS layers could be created using their own factory functions for convenience:
149
+
[SQS](https://opentelemetry.io/docs/specs/semconv/faas/aws-lambda/#sqs) and SNS layers could be created using their own factory functions for convenience:
150
150
151
151
```rust
152
152
letsqs_telemetry_layer=OtelLambdaLayer::sqs(
@@ -159,7 +159,7 @@ let sns_telemetry_layer = OtelLambdaLayer::sns(
Tracing for API Gateway events is not fully supported since that would require extracting tracking metadata from the event payload, but parsing event body is not supported by the `OtelLambdaLayer` implementation.
196
+
Tracing for [API Gateway](https://opentelemetry.io/docs/specs/semconv/faas/aws-lambda/#api-gateway) events is not fully supported since that would require extracting tracking metadata from the event payload, but parsing event body is not supported by the `OtelLambdaLayer` implementation.
197
197
198
198
Though it's still possible to create a simple HTTP layer to report the correct trigger type:
0 commit comments