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
{{ message }}
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
// contextCarrier is now extended with "X-B3-*" fields, which should be extracted on the receiving end
311
311
// no fields will be added unless there's an active span at the time when inject() is called
312
+
313
+
// inject contextCarrier such that it can be accessed as `event.headers` from within the invoked lambda.
312
314
});
313
315
```
314
316
317
+
`contextCarrier` must be injected into the headers or payload of your outgoing request. Context propagation will work correctly as long as the context you injected can be accessed as `event.headers` from within the invoked Lambda.
318
+
315
319
### Asynchronous Metrics and Events Delivery
316
320
317
321
Although the following `signalFxLambda.helper.send*` methods all return promises that resolve when send operation completes it is recommended to ignore those promises as the wrapper is going to wait for their completion internally.
0 commit comments