ConduitAppsignal
A plug to add Appsignal instrumentation to your conduit pipelines.
Installation
If available in Hex, the package can be installed
by adding conduit_appsignal
to your list of dependencies in mix.exs
:
def deps do
[{:conduit_appsignal, "~> 0.1.0"}]
end
Usage
In your broker, early in the pipeline, include the ConduitAppsignal.Plug.Transaction
. In
# broker.ex
pipeline :in_tracking do
plug ConduitAppsignal.Plug.Transaction
end
pipeline :out_tracking do
plug ConduitAppsignal.Plug.Event,
name: "message.publish",
title: "Sending message"
end
incoming MyApp do
pipe_through [:in_tracking, :error_handling, :deserialize] # Include tracking early
# subscribes ..
end
outgoing do
pipe_through [:out_tracking, :serialize] # Include tracking early
# publishes
end
Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/conduit_appsignal.