opentelemetry-erlang-contrib/instrumentation/opentelemetry_cowboy
Bryan Naegele 90d282fe39
Update publishing settings (#285)
2024-02-13 18:09:42 -07:00
..
src Update publishing settings (#285) 2024-02-13 18:09:42 -07:00
test Update cowboy to opentelemetry_api 1.2 (#230) 2024-01-17 11:11:09 -07:00
.gitignore Cowboy instrumentation (#18) 2021-10-06 13:36:22 -06:00
CHANGELOG.md Update publishing settings (#285) 2024-02-13 18:09:42 -07:00
LICENSE Cowboy instrumentation (#18) 2021-10-06 13:36:22 -06:00
README.md Update publishing settings (#285) 2024-02-13 18:09:42 -07:00
rebar.config Update publishing settings (#285) 2024-02-13 18:09:42 -07:00
rebar.lock Update publishing settings (#285) 2024-02-13 18:09:42 -07:00

README.md

opentelemetry_cowboy

EEF Observability WG project Hex.pm Build Status

Telemetry handler that creates Opentelemetry spans from cowboy events.

After installing, setup the handler in your application behaviour before your top-level supervisor starts.

opentelemetry_cowboy:setup()

See cowboy_telemetry for prerequisite setup.

There is no additional prerequisite setup for plug_cowboy users.

Installation

{deps, [
  {opentelemetry_cowboy, "~> 0.3"}
]}
def deps do
  [
    {:opentelemetry_cowboy, "~> 0.3"}
  ]
end