Tesla.StatsD

Tesla.StatsD is an instrumenting middleware for tesla HTTP client that submits metrics to StatsD (includes support for Datadog tags).

Documentation can be found at https://hexdocs.pm/tesla_statsd.

Description

This middleware sends histogram or gauge stats to Datadog for every HTTP request. The sent value is response time in milliseconds.

Metric name is configurable and defaults to "http.request". The middleware also sends tags:

Tags have "http" in their names to avoid collisions with default tags sent by Datadog StatsD agent.

Installation

The package can be installed by adding tesla_statsd to your list of dependencies in mix.exs:

Tesla 1.x

def deps do
  [
    {:tesla_statsd, "~> 0.3.0"}
  ]
end

Tesla 0.9

def deps do
  [
    {:tesla_statsd, "~> 0.1.0"}
  ]
end

Configuration

Usage with Tesla

defmodule AccountsClient do
  use Tesla

  plug Tesla.StatsD, metric: "external.request", tags: ["service:accounts"]
end

License

MIT License, Copyright (c) 2017 SaleMove