OptionalallowlistList of URLs/paths that should be instrumented.
Note that when used for an http client the entry represents a full
outbound URL (https://example.org/api/foo) but when used as a
server the entry represents an inbound path (/api/foo).
OptionalblocklistList of URLs/paths that should not be instrumented. Takes precedence over allowlist if a URL matches an entry in both.
Note that when used for an http client the entry represents a full
outbound URL (https://example.org/api/foo) but when used as a
server the entry represents an inbound path (/api/foo).
OptionalclientConfiguration for HTTP clients.
OptionalenabledWhether to enable the plugin.
OptionalenableEnable injection of tracing headers into requests signed with AWS IAM headers. Disable this if you get AWS signature errors (HTTP 403).
OptionalheadersAn array of headers to include in the span metadata.
OptionalhooksHooks to run before spans are finished.
Optionalrequest?: (Hook to execute just before the request span finishes.
OptionalmeasuredWhether to measure the span. Can also be set to a key-value pair with span names as keys and booleans as values for more granular control.
OptionalmiddlewareWhether to enable instrumentation of
OptionalpropagationList of urls to which propagation headers should not be injected
OptionalserverConfiguration for HTTP servers.
OptionalserviceThe service name to be used for this plugin.
OptionalsplitUse the remote endpoint host as the service name instead of the default.
OptionalvalidateCallback function to determine if there was an error. It should take a
status code as its only parameter and return true for success or false
for errors.
This plugin automatically instruments the http module.
By default any option set at the root will apply to both clients and servers. To configure only one or the other, use the
clientandserveroptions.