OpentelemetryAbsinthe (opentelemetry_absinthe v2.0.0)
OpentelemetryAbsinthe
An opentelemetry instrumentation library for Absinthe
usage
Usage
To start collecting traces just put OpentelemetryAbsinthe.setup()
in your application start function.
configuration
Configuration
OpentelemetryAbsinthe can be configured with the application environment
config :opentelemetry_absinthe,
trace_request_query: false,
trace_response_error: true
configuration can also be passed directly to the setup function
OpentelemetryAbsinthe.setup(
trace_request_query: false,
trace_response_error: true
)
configuration-options
Configuration options
span_name
(default: dynamic):Either
:dynamic
: sets the span name dynamically, based on the operation name and type, as recommended by opentelemetry. This will become the only supported option in the future.String.t()
: deprecated the name of the span
trace_request_query
(default: true): attaches the graphql query as an attributeImportant Note: This is usually safe, since graphql queries are expected to be static. All dynamic data should be passed via graphql variables. However some libraries(for example dillonkearns/elm-graphql store the variables inline as a part of the query. If you expect clients to send dynamic data as a part of the graphql query you should disable this.
trace_request_name
(default: true): attaches the graphql operation name when using batched queries as an attributetrace_request_type
(default: true): attaches the graphql query type(query, mutation or subscription) as an attributetrace_request_variables
(default: false): attaches the graphql variables as an attributetrace_request_selections
(default: true): attaches the root fields queried as an attributeFor example given a query like:
query($isbn: String!) { book(isbn: $isbn) { title author { name age } } reader { name } }
will result in a graphql.request.selections attribute with the value
["book", "reader"]
being attached. Note that aliased fields will use their unaliased name.trace_response_result
(default: false): attaches the result returned by the server as an attributetrace_response_errors
(default: false): attaches the errors returned by the server as an attribute