https://github.com/nfibrokerage/beeline_honeycomb
a Honeycomb.io exporter for Beeline telemetry
https://github.com/nfibrokerage/beeline_honeycomb
eventsourcing honeycomb telemetry
Last synced: 6 months ago
JSON representation
a Honeycomb.io exporter for Beeline telemetry
- Host: GitHub
- URL: https://github.com/nfibrokerage/beeline_honeycomb
- Owner: NFIBrokerage
- License: apache-2.0
- Created: 2021-06-11T20:39:34.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-15T21:09:59.000Z (about 1 year ago)
- Last Synced: 2024-11-19T21:20:44.593Z (6 months ago)
- Topics: eventsourcing, honeycomb, telemetry
- Language: Elixir
- Size: 40 KB
- Stars: 2
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Beeline.Honeycomb

a Honeycomb.io exporter for Beeline telemetry
## Installation
```elixir
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
```elixir
# 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
```