NFIBrokerage / beeline_honeycomb

a Honeycomb.io exporter for Beeline telemetry

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Beeline.Honeycomb

Actions CI

a Honeycomb.io exporter for Beeline telemetry

Installation

def deps do
  [
    {:beeline_honeycomb, "~> 0.1"}
  ]
end

Check out the docs here: https://hexdocs.pm/beeline_honeycomb

Usage

Add the Beeline.Honeycomb task to your application's supervision tree

# lib/my_app/application.ex
defmodule MyApp.Application do
  # ..

  def start(_type, _args) do
    children = [
      # ..
      Beeline.Honeycomb,
      # ..
    ]

    opts = [strategy: :one_for_one, name: MyApp.Supervisor]
    Supervisor.start_link(children, opts)
  end
end

About

a Honeycomb.io exporter for Beeline telemetry

License:Apache License 2.0


Languages

Language:Elixir 100.0%