Telemetry for Elixir applications built with Commanded
Learn how to produce and report on telemetry metrics for your Elixir application.
Elixir Commanded
Telemetry is a relatively new library designed to dynamically dispatch metrics and instrumentation. It is lightweight, small and can be used to instrument any Erlang or Elixir project. You can watch Arkadiusz Gil’s recent talk on Telemetry …and metrics for all from ElixirConf EU 2019.
The Elixir example from the library’s documentation demonstrates how easy it is to add telemetry to existing code, in this case logging an incoming HTTP request to a controller:
For applications implementing command query responsibility segregation and event sourcing (CQRS/ES) we have two common locations to produce useful metrics: commands being dispatched and recorded domain events. As these are named using domain specific terminology, we gain useful insights into what our application is doing at runtime when instrumented using telemetry.
Command telemetry
Commanded provides command dispatch middleware as an extension point to include concerns, such as telemetry, to every command dispatch. The example middleware shown below instruments each dispatched command along with its outcome – as success or failure – and execution duration.
Usage
To use the telemetry middleware module above it must be registered as a middleware in your app’s router:
Once registered, telemetry events will be produced for all dispatched commands.
Event telemetry
For event telemetry we can use a Commanded event handler. An event handler is a GenServer
module with a handle/2
callback function which gets executed for every recorded domain event, perfect for producing event metrics.
Usage
The event handler is a GenServer
process so must be included somewhere in your application’s supervision tree:
Once started the handler will receive each recorded event in real-time, producing telemetry events.
Reporting metrics
So far we’ve only been producing telemetry events, now we need to report those measurements to our preferred monitoring service. The telemetry library allows you to attach a callback function to one or more events. This function gets called each time a metric is executed.
The example reporter module below shows how to attach a module callback function (Reporter.handle_event/4
) to the four events we produce. It’s just logging the metrics using the built-in Elixir Logger
, but in a real application you’d push these metrics to a monitoring service, such as AWS CloudWatch, Datadog, or any other local or hosted service.
It’s worth noting that executing the callback function happens in the context of the process calling Telemetry.execute
. You might want to delegate any reporting work to some other process so as to not block or affect the calling process.
Collecting periodic metrics
The telemetry_poller
library allows you to periodically collect measurements and dispatch them as Telemetry events. This can be used to record measurements such as VM stats (memory usage, queue length) and application-specific concerns (registered user count, online users, etc.).
Wrap up
How can you use this information once you’ve added telemetry to your app?
We’re using AWS CloudWatch to monitor and visualise the metrics produced by the in-app telemetry in one Elixir application I’m working with. Using telemetry metrics we observe application behaviour such as the commands being dispatch, recorded events, Erlang VM stats, and background job queue size. We monitor command dispatch duration and failures to create alerts which notify us before they breach SLAs. This helps us to anticipate potential issues before they affect end users.
The graph below is one example where the 95th percentile command dispatch duration is monitored to ensure it stays within acceptable bounds.
If you’ve built an Elixir application using Commanded you can include these command dispatch middleware and event handler modules to start producing useful metrics today.